:root {
    --color_default: rgba(204, 10, 10, 0.8);
    --color_default__darken: rgb(204, 10, 10);
    --color_default__opacity20: rgba(204, 10, 10, 0.2);
    --color_default__opacity25: rgba(204, 10, 10, 0.25);
    --color_default__opacity30: rgba(204, 10, 10, 0.3);
    --color_default__opacity50: rgba(204, 10, 10, 0.5);
    --color_default__opacity60: rgba(204, 10, 10, 0.6);
    --color_default__opacity70: rgba(204, 10, 10, 0.7);
    --border_radius: 0.75rem;
}

* {
    font-family: 'Open Sans', sans-serif;
    /*user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;*/
    border-color: #f5f5f5;
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .container {
        min-width: 90vw !important;
    }
}

a {
    color: #1a1a1a;
}

a:hover {
    text-decoration: none;
    color: #1a1a1a;
}

a.disabled {
    color: #333 !important;
    text-decoration: none;
}

.min-height-for-footer {
    min-height: -webkit-calc(100vh - 64px - 1.5rem);
    min-height: -moz-calc(100vh - 64px - 1.5rem);
    min-height: calc(100vh - 64px - 1.5rem);
}

.overflow-x-scroll {
    overflow-x: auto;
}

/* Дополнительные инструменты */

.loading {
    position: absolute;
    left: -webkit-calc(50% - 20px);
    left: -moz-calc(50% - 20px);
    left: calc(50% - 20px);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 1;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background: white;
    top: -webkit-calc(2.5rem + 50px);
    top: -moz-calc(2.5rem + 50px);
    top: calc(2.5rem + 50px);
}

.loading-img {
    width: 40px;
}

.scroll-down {
    position: absolute;
    text-align: center;
    height: 40px;
    width: 40px;
    background: white;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    line-height: 43px;
    font-size: 30px;
    color: rgb(52, 58, 64) !important;
    opacity: 0.8;
    z-index: 1;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    right: 28px;
    -webkit-box-shadow: 0 0 10px 0 #343a40;
       -moz-box-shadow: 0 0 10px 0 #343a40;
            box-shadow: 0 0 10px 0 #343a40;
    bottom: 20px;
}

.scroll-down:hover {
    opacity: 1;
}

.scroll-down .badge {
    font-size: 12px;
    position: absolute;
    top: -8px;
    right: -4px;
    opacity: 1 !important;
}

.input-group-text {
    border-width: 0;
    color: white;
    background: var(--color_default);
}

.btn-group {
    z-index: 0;
}

.rounded-3 {
    -webkit-border-radius: 0.75rem !important;
       -moz-border-radius: 0.75rem !important;
            border-radius: 0.75rem !important;
    /*box-shadow: rgba(139, 147, 165, 0.2) 0 4px 12px;*/
}

.anticol-100 {
    width: -webkit-calc(100% + 30px);
    width: -moz-calc(100% + 30px);
    width: calc(100% + 30px);
    margin-left: -15px;
}

.toast .toast-body,
.toast .toast-header {
    color: white !important;
}

.toast {
    -webkit-filter: opacity(90%);
    filter: opacity(90%);
}

.bg-gray {
    background-color: #f5f5f5;
}

.bg-dark {
    background-color: #1a1a1a !important;
}

.minh-100 {
    min-height: 100vh !important;
}

.table-hover tbody tr:hover {
    background-color: rgba(232, 230, 230) !important;
}

.page-link {
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    -moz-transition: .2s ease;
    transition: .2s ease;
}

.custom-control-label {
    cursor: pointer;
}

/* Меню */

.wrapper-nav {
    height: 64px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1002;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Burger Menu Button */
.burger-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 16px;
    z-index: 1001;
    position: relative;
    transition: all 0.3s ease;
}

.burger-menu-btn:focus {
    outline: none;
}

.burger-line {
    width: 24px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.burger-menu-btn.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-btn.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.burger-menu-btn.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-menu.active {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    -webkit-transition-delay: 250ms;
    transition-delay: 250ms;
    -webkit-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    backdrop-filter: blur(2px);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
}

.sidebar-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
}

.sidebar-logo-link:hover {
    text-decoration: none;
    color: #1a1a1a;
}

.sidebar-logo {
    height: 28px;
    width: 28px;
    margin-right: 10px;
}

.sidebar-brand {
    font-size: 20px;
    color: #1a1a1a;
}

.sidebar-close {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #1a1a1a;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.sidebar-close:focus {
    outline: none;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    width: 100%;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: #f8f8f8;
    color: #1a1a1a;
    text-decoration: none;
    border-left-color: var(--color_default);
    padding-left: 24px;
}

.sidebar-link.active {
    background: rgba(204, 10, 10, 0.1);
    color: var(--color_default__darken);
    border-left-color: var(--color_default__darken);
    font-weight: 600;
}

.sidebar-link i {
    width: 24px;
    margin-right: 12px;
    font-size: 18px;
    text-align: center;
    color: #666;
    transition: all 0.2s ease;
}

.sidebar-link:hover i,
.sidebar-link.active i {
    color: var(--color_default__darken);
}

.sidebar-link span {
    flex: 1;
}

.sidebar-footer {
    padding: 10px 0;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}

.wrapper-nav-logo-link {
    margin-left: 0;
}

.wrapper-nav-logo-link:hover {
    text-decoration: none !important;
}

.wrapper-nav-logo {
    height: 24px;
    width: 24px;
    margin-right: 8px;
}

.wrapper-nav-brand {
    font-size: 20px;
    color: #1a1a1a !important;
}

.default-dropdown button {
    background: transparent;
    border: 0;
}

.default-dropdown button:focus {
    outline: 0;
}

.default-dropdown button:after {
    display: none;
}

.default-dropdown .dropdown-item {
    line-height: 32px;
    font-weight: bold;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .wrapper-nav {
        height: 60px;
        padding: 0 16px;
    }
    
    .sidebar-menu {
        width: 280px;
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    
    .sidebar-menu.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .content-wrapper {
        margin-top: 60px !important;
    }
    
    .min-height-for-footer {
        min-height: -webkit-calc(100vh - 60px - 1.5rem);
        min-height: -moz-calc(100vh - 60px - 1.5rem);
        min-height: calc(100vh - 60px - 1.5rem);
    }
}

@media (max-height: 700px) {
    .sidebar-link {
        padding: 12px 20px;
        font-size: 15px;
    }
}

.wrapper-right-container-item {
    height: 36px;
    line-height: 36px;
    font-size: 24px;
    width: 36px;
    text-align: center;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    cursor: pointer;
    position: relative;
    color: #1a1a1a;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 1;
}

.wrapper-right-container-item .badge {
    font-size: 10px;
    position: absolute;
    right: -4px;
    top: -2px;
    border: 2px solid white !important;
}

.notification {
    width: 300px;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

.notification a {
    text-decoration: none !important;
    color: rgba(0, 0, 0, 0.9);
}

.notification a:hover {
    color: #1a1a1a;
}

.notification-dropdown {
    max-height: 300px;
    overflow-y: scroll !important;
}

/* Категории */

#home-cards .card {
    min-height: 250px;
    height: auto;
    overflow: visible;
    border: 0;
    display: flex;
    flex-direction: column;
}

#home-cards .card-header {
    background: white;
    border: 0;
    flex-shrink: 0;
}

#home-cards .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

a.underlined * {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
}

a.underlined *:before  {
    content: '';
    position: absolute;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -moz-transition: transform .5s ease, -moz-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease, -o-transform .5s ease;
}

a.underlined  {
    text-decoration: none;
}

a.underlined *:not(img) {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #1a1a1a;
    overflow: visible;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

a.underlined *:not(img):before {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #1a1a1a;
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
}

a.underlined  *:not(img):before {
    background: #1a1a1a;
}

a.underlined *:not(img):hover:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
}

#home-cards img {
    height: 2rem;
    width: 2rem;
}

.breadcrumb-item a:hover {
    text-decoration: none;
}

.badge-c {
    color: white;
}

.name {
    font-size: 1rem;
    margin: 0;
}

.list-group {
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
}

.list-group a {
    text-decoration: none;
    color: #1a1a1a;
    position: relative;
    -webkit-transition: all 0.6s;
    -o-transition: all 0.6s;
    -moz-transition: all 0.6s;
    transition: all 0.6s;
}

.list-group a:before {
    content: "";
    width: 0;
    height: .25rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

.list-group a:hover:before {
    width: 100%;
    left: 0;
}

.list-group a:hover {
    -webkit-transition-delay: 0.3s;
       -moz-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    color: white;
}

.list-group a:hover > .badge {
    -webkit-transition-delay: 0.3s;
       -moz-transition-delay: 0.3s;
         -o-transition-delay: 0.3s;
            transition-delay: 0.3s;
    background: white;
}

.form-inline {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

#home-cards .card-body {
    padding: 0.75rem 1.25rem;
    overflow: visible;
}

#home-cards .card-title {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
}

#home-cards .card-text {
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    line-height: 1.4;
}


/* Список объявлений */

.table td {
    padding: 0 .25rem;
    border-right: 1px solid #f5f5f5;
    vertical-align: middle!important;
}

.table td:last-child {
    border-right: 0;
}

.table thead th {
    border: 0;
}

.table tbody tr {
    background-color: white;
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    border-bottom: 1px solid #f5f5f5;
    vertical-align: middle!important;
}

.table tbody tr:last-child {
    border-bottom: 0;
}

.table tbody tr td img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 200px;
    height: 200px;
}

.table-hover tbody tr:hover {
    cursor: pointer;
}


/* Конкретное объявление */

.carousel.fade {
    opacity: 1;
}

.carousel.fade .carousel-item {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 0;
    -webkit-transition: opacity 1s;
    -o-transition: opacity 1s;
    -moz-transition: opacity 1s;
    transition: opacity 1s;
}

.carousel.fade .carousel-item.active {
    position: relative;
    opacity: 1;
    height: 100% !important;
}

#slider {
    max-height: 600px;
    max-width: 800px;
    margin: 50px auto;
}

#slider .circles li {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 7px;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    border: 1px solid white;
    background-color: transparent;
    opacity: 1;
}

#slider .circles li.active {
    background-color: white;
}

#slider .carousel-control-prev,
#slider .carousel-control-next {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

#slider .carousel-control-prev:hover {
    background: -webkit-gradient(linear, right top, left top, from(transparent), to(rgba(0, 0, 0, 0.5)));
    background: -webkit-linear-gradient(right, transparent, rgba(0, 0, 0, 0.5));
    background: -moz-linear-gradient(right, transparent, rgba(0, 0, 0, 0.5));
    background: -o-linear-gradient(right, transparent, rgba(0, 0, 0, 0.5));
    background: linear-gradient(-90deg, transparent, rgba(0, 0, 0, 0.5));
}

#slider .carousel-control-next:hover {
    background: -webkit-gradient(linear, left top, right top, from(transparent), to(rgba(0, 0, 0, 0.5)));
    background: -webkit-linear-gradient(left, transparent, rgba(0, 0, 0, 0.5));
    background: -moz-linear-gradient(left, transparent, rgba(0, 0, 0, 0.5));
    background: -o-linear-gradient(left, transparent, rgba(0, 0, 0, 0.5));
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.5));
}

#slider .fa-angle-right,
#slider .fa-angle-left {
    font-size: 30px;
    color: #1a1a1a;
    height: 40px;
    width: 40px;
    background: white;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}

#slider .fas {
    line-height: 40px !important;
}

@media (max-width: 767px) {
    #slider .fa-angle-right,
    #slider .fa-angle-left {
        font-size: 6vw;
        color: #1a1a1a;
        height: 10vw;
        width: 10vw;
        background: white;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
    }

    #slider .fas {
        line-height: 10vw !important;
    }
}

.lg-backdrop {
    background-color: rgba(0, 0, 0, 0.8) !important;
}

.sub_text {
    font-size: 14px;
}

.sub_text i {
    font-size: 12px;
}

#thumb-slider .slick-track div:not(.slick-current) {
    -webkit-filter: brightness(0.6);
            filter: brightness(0.6);
}

.p-list {
    padding: .75rem 1.25rem;
}

.slider-nav {
    position: absolute;
    height: 100%;
    bottom: 0;
    top: 0;
    width: 10%;
    min-width: 80px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.6)), to(rgba(255,255,255,1)));
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(255,255,255,1) 100%);
    background: -moz-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(255,255,255,1) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(255,255,255,1) 100%);
    z-index: 10000;
    cursor: pointer;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 0;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    font-size: 40px;
    color: white;
}

.slider-nav:hover {
    opacity: 1;
}

.slider-nav.left {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,0.6)), to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -moz-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(left, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
}

.slider-nav.right {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, from(rgba(0,0,0,0.6)), to(rgba(255,255,255,0)));
    background: -webkit-linear-gradient(right, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -moz-linear-gradient(right, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: -o-linear-gradient(right, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
    background: linear-gradient(-90deg, rgba(0,0,0,0.6) 0%, rgba(255,255,255,0) 100%);
}

.slider-nav i {
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background: white;
    color: #1a1a1a;
}

#main-slider .fa-search-plus {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 3rem;
    width: 3rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.4);
    -webkit-border-radius: 3rem;
       -moz-border-radius: 3rem;
            border-radius: 3rem;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    z-index: 20000;
}

#main-slider .fa-search-plus:hover {
    color: white;
    background: #1a1a1a;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    cursor: pointer;
}

#main-slider .fa-search-plus:before {
    line-height: 3rem;
    margin-left: .75rem;
}

.sidebar-indicator {
    border-left-width: 2px;
    border-left-style: solid;
    padding-left: 10px;
    margin-bottom: .75rem !important;
}

.list-group-item:first-child {
    border-top-width: 0;
}

.card.card-hover img {
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.card.card-hover img:hover {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
         transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.price {
    position: absolute;
    right: 0;
    top: 20px;
    padding: 5px 20px;
    line-height: 20px;
    font-weight: bold;
    color: white;
    z-index: 1;
    -webkit-border-radius: 5px 0 0 5px;
       -moz-border-radius: 5px 0 0 5px;
            border-radius: 5px 0 0 5px;
}

.price div {
    font-size: 20px;
}

.price .fas {
    font-size: 18px;
}

.price.price-sm {
    padding: 5px 15px;
    top: 15px;
    line-height: 15px;
}

.price.price-sm div {
    font-size: 15px;
}

.price.price-sm .fas {
    font-size: 13px;
}

.price.reversed {
    right: auto;
    left: 0;
    -webkit-border-radius: 0 5px 5px 0;
       -moz-border-radius: 0 5px 5px 0;
            border-radius: 0 5px 5px 0;
}

.ad-settings {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 1;
}

.ad-description-text {
    word-break: break-all;
}

.dropdown-item {
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    cursor: pointer;
}




/* Профиль */

.nav-tabs .nav-link:not(.active) {
    color: #6c757d;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.nav-tabs .nav-link:not(.active):hover {
    color: #1a1a1a;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.nav-tabs .nav-link:not(.active) .badge {
    opacity: 0.6;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.nav-tabs .nav-link:not(.active):hover .badge {
    opacity: 1;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.card-img-top {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
}

#user_ads.tab-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

#user_ads.tab-content > .tab-pane {
    display: block !important;
    height: 0;
}

#user_ads.tab-content > .active {
    display: block !important;
    height: auto;
}

@media (min-width: 567px) {
    .w-sm-75 {
        width: 75% !important;
    }
}

@media (min-width: 768px) {
    .w-md-50 {
        width: 50% !important;
    }
}

@media (min-width: 1200px) {
    .w-xl-100 {
        width: 100% !important;
    }
}

#user_ads .card > img:hover {
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

#user_ads .card > img:hover {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -moz-transform: scale3d(1.1, 1.1, 1.1);
         transform: scale3d(1.1, 1.1, 1.1);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.profile-img {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    cursor: pointer;
    max-width: 200px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.profile-img img {
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    max-width: 200px;
}

.profile-img .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.profile-img:hover .overlay {
    opacity: 1;
}

.profile-img .text {
    color: white;
    font-size: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
      -o-transform: translate(-50%, -50%);
         transform: translate(-50%, -50%);
    text-align: center;
}

#sidebar-profile img {
    width: 100%;
    max-width: 200px;
}


/* Настройки */

.upload-image {
    text-align: center;
    border: 3px dashed transparent;
    color: #1a1a1a;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.upload-image span {
    font-size: 3rem;
    line-height: 147px;
}

.upload-image:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: #1a1a1a !important;
    color: #1a1a1a;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    cursor: pointer;
}

.uploaded-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.uploaded-img img {
    -o-object-fit: contain;
       object-fit: contain;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
    margin: auto;
}

.remove-image {
    position: absolute;
    font-size: 20px;
    right: 15px;
    top: 0;
    text-align: center;
    line-height: 30px;
    height: 30px;
    width: 30px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.remove-image:hover {
    background: rgba(255, 255, 255, 1);
    cursor: pointer;
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.image-number {
    position: absolute;
    font-size: 1.5rem;
    left: 15px;
    top: 0;
    text-align: center;
    line-height: 30px;
    height: 30px;
    width: 30px;
    color: #1a1a1a;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.8);
}

#all-images div:first-child .uploaded-img img {
    -webkit-box-shadow: 0 0 5px 5px;
       -moz-box-shadow: 0 0 5px 5px;
            box-shadow: 0 0 5px 5px;
}

.image-upload-progress {
    position: absolute;
    width: 60%;
    left: 20%;
    height: 20px;
    margin: auto;
    bottom: 20px;
}

.backdrop-card.restoring {
    background: rgba(255, 255, 255, 0.6) !important;
    position: absolute !important;
    height: 100% !important;
    width: 100% !important;
    z-index: 1 !important;
}

.backdrop-card {
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 2;
}


#main-slider .slick-slide {
    height: 70vh !important;
}

#thumb-slider .slick-slide {
 /*   height: 100px !important;*/
}

#main-slider
{
    display: table !important;
    table-layout: fixed;
    width: 100% !important;
}

.cursor-pointer {
    cursor: pointer;
}

.no-after::after {
    display: none;
}

.dialog-selector-container {
    width: 300px;
}

.dialog-selectors {
    overflow-y: scroll;
}

.dialog-selector {
    padding: .5rem 1rem;
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.dialog-selector.unread {
    background: #f3f3f3;
}

.dialog-avatar-image {
    height: 45px;
    width: 45px;
    display: inline-block;
    margin-right: .75rem;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
}

.dialog-container {
    overflow-y: scroll;
    overflow-x: hidden;
}

.dialog-top {
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    top: inherit;
    border-bottom: 1px solid;
}

.dialog-top > div {
    display: inline-block;
}

.dialog-top-user {
    text-decoration: none !important;
    color: #1a1a1a !important;
}

.dialog-top-tools > a {
    height: 30px;
    width: 30px;
    font-size: 22px;
    line-height: 30px;
    color: #1a1a1a;
}

.dialog-bottom {
    bottom: 0;
    border-top: 1px solid;
    padding: .25rem 1rem .25rem 1rem !important;
}

.dialog-part {
    position: absolute;
    width: 100%;
    box-shadow: 8px 0 10px 2px rgba(220, 220, 220, 0.8);
    border-color: #f5f5f5;
    background: white;
    padding: .5rem 1rem;
    z-index: 1;
}

.dialog-container {
    height: -webkit-calc(100% - 85px - 1.5rem);
    height: -moz-calc(100% - 85px - 1.5rem);
    height: calc(100% - 85px - 1.5rem);
    margin-top: -webkit-calc(1rem + 45px);
    margin-top: -moz-calc(1rem + 45px);
    margin-top: calc(1rem + 45px);
}

.dialog-container * {
    word-break: break-word;
}

.dialog-content {
    padding: 3rem 1rem !important;
}

.message {
    color: #1a1a1a;
    overflow: hidden;
    resize: none;
    width: -webkit-calc(100% - 50px);
    width: -moz-calc(100% - 50px);
    width: calc(100% - 50px);
    margin-right: 10px;
    min-height: 34px;
    padding: 0;
    line-height: 34px;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.message-text {
    white-space: break-spaces;
    word-break: break-all;
}

.message:placeholder-shown {
    background: rgba(0, 0, 0, 0.1);
}

.control-btn {
    height: 40px;
    width: 40px;
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
    font-size: 22px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    color: #1a1a1a;
}

.send-btn:hover {
    color: black;
}

.pin-btn, .pin-photo-btn {
    background: transparent !important;
    color: #666;
}

.pin-btn:hover, .pin-photo-btn:hover {
    color: #1a1a1a;
}

.send-btn.disabled {
    color: #888888 !important;
    cursor: default !important;
}

.file-loaded {
    z-index: 0;
    display: inline-block;
    margin: 0 1rem 1rem 0;
    height: 40px;
    position: relative;
    width: 150px;
    background: white;
    border: 1px solid #ced4da;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    text-decoration: none !important;
}

.file-loaded .remove-file,
.photo-loaded .remove-photo {
    z-index: 1;
    display: block;
    position: absolute;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.file-loaded .remove-file {
    right: 10px;
    top: 2px;
}

.file-loaded .file-name {
    line-height: 40px;
    text-align: left;
    color: #444;
    font-size: 14px;
    margin-left: 10px;
    font-weight: bold;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.file-loaded.sent .file-name {
    color: white;
    font-weight: bold;
    display: inline-block;
    font-size: 16px;
}

.file-loaded .file-name:hover {
    color: #1a1a1a;
}

.file-loaded:not(.sent):last-of-type,
.photo-loaded:not(.sent):last-of-type {
    margin-right: 0;
}

.file-loaded.sent {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background: transparent;
    border-color: transparent !important;
    margin: .5rem 0;
    display: block;
}

.file-loaded.sent i {
    display: inline-block;
    width: 40px;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background: white;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #444 !important;
}

.file-loaded.sent .file-name {
    color: white !important;
}

.message-block.opponent .file-loaded.sent i {
    background: #444;
    color: white !important;
}

.message-block.opponent .file-loaded.sent .file-name {
    color: #444 !important;
}

.photos-container.sent {
    width: -webkit-calc(100% + 1.5rem + 10px);
    width: -moz-calc(100% + 1.5rem + 10px);
    width: calc(100% + 1.5rem + 10px);
    margin-left: -webkit-calc(-.75rem - 5px);
    margin-left: -moz-calc(-.75rem - 5px);
    margin-left: calc(-.75rem - 5px);
    margin-top: -webkit-calc(-.25rem - 5px);
    margin-top: -moz-calc(-.25rem - 5px);
    margin-top: calc(-.25rem - 5px);
}

.photo-loaded {
    height: 100px;
    width: 150px;
    -webkit-border-radius: .5rem;
       -moz-border-radius: .5rem;
            border-radius: .5rem;
    z-index: 0;
    background: rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: inline-block;
    margin: 0 1rem 1rem 0;
    position: relative;
}

.photo-loaded img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
}

.photo-loaded.sent {
    width: 100%;
    cursor: pointer;
    height: 30vh;
    margin: 0 0 .25rem;
}

.photo-loaded.sent img {
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.photo-loaded.sent:hover img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}

.photo-loaded .remove-photo {
    right: 10px;
    top: 0;
}

.message-block {
    overflow: hidden;
    margin-bottom: .1rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: .25rem 1.25rem;
    font-size: 18px;
    max-width: 60%;
    margin-left: auto;
    position: relative;
    color: white;
    border-width: 3px;
    border-style: solid;
    -webkit-border-radius: 2rem 2rem 0 2rem;
       -moz-border-radius: 2rem 2rem 0 2rem;
            border-radius: 2rem 2rem 0 2rem;
    background: var(--color_default__darken);
    border-color: var(--color_default__darken) !important;
}

.message-block.opponent {
    background: rgba(52, 58, 64, .15);
    border-color: transparent !important;
    color: #1a1a1a;
    margin-left: initial;
    margin-right: auto !important;
    -webkit-border-bottom-right-radius: 2rem;
       -moz-border-radius-bottomright: 2rem;
            border-bottom-right-radius: 2rem;
    -webkit-border-bottom-left-radius: 0;
       -moz-border-radius-bottomleft: 0;
            border-bottom-left-radius: 0;
}

.message-data {
    margin-bottom: 1rem;
    text-align: right;
    margin-left: auto;
    font-size: 14px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 60%;
    color: #6c757d;
}

.message-data.opponent {
    text-align: left !important;
    margin-left: initial !important;
    margin-right: auto !important;
}

.attachments-photo {
    float: left;
    margin: 1.5% 1.5%;
    width: 30%;
    padding-top: 30%;
    -webkit-background-size: cover;
       -moz-background-size: cover;
            background-size: cover;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.show-photo {
    margin: 10px;
    width: 75px;
    height: 75px;
    display: inline-block;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    cursor: pointer;
}

.attachments-photo img {
    display: none;
}

.attachments-photo:hover,
.show-photo:hover {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
}

.modal-dialog {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}

#ShowAttachmentsModal .modal-content {
    min-height: 92.73vh;
}

#ShowAttachmentsModal .nav-pills {
    margin: 1rem 0;
}

#ShowAttachmentsModal .modal-body {
    padding: 0 0 1rem 0;
}

#ShowAttachmentsModal #pills-photos {
    margin-left: 1%;
}

#ShowAttachmentsModal .nav-item {
    width: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#ShowAttachmentsModal .nav-link {
    font-weight: bold;
    background: transparent !important;
    color: #444;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
}

#ShowAttachmentsModal .nav-link:hover,
#ShowAttachmentsModal .nav-link.active {
    color: #1a1a1a;
}

#ShowAttachmentsModal .nav-link.active {
    border-bottom: 2px solid #1a1a1a;
}

.attachments-file {
    display: block;
    padding: .75rem;
    position: relative;
    line-height: 35px;
    text-decoration: none !important;
}

.attachments-file i {
    font-size: 18px;
    color: #1a1a1a !important;
    -webkit-border-radius: 100%;
       -moz-border-radius: 100%;
            border-radius: 100%;
    background: white;
    width: 35px;
    line-height: 35px;
    text-align: center;
    height: 35px;
    margin-right: 10px;
}

.attachments-file-name {
    color: white;
    font-weight: bold;
}

.attachments-file-date {
    color: white;
    font-size: 14px;
    text-align: right;
    float: right;
}

.lg-backdrop {
    z-index: 1050;
}

.dialog-back {
    color: #444;
    font-weight: bold;
    text-decoration: none !important;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.dialog-back:hover {
    color: #1a1a1a;
}

.list-group-item {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .125);
}

.card {
    overflow: hidden;
    border: 0;
}

.shadowed .breadcrumb,
.shadowed .rounded-3,
.shadowed .dropdown-menu {
    box-shadow: 0 0 10px 2px rgba(220, 220, 220, 0.8);
}

.shadowed .wrapper-nav {
    box-shadow: 0 0 10px 2px rgba(220, 220, 220, 0.8);
}

.shadowed .dropdown-menu {
    border: 0;
}

.select2-selection {
    box-shadow: none !important;
}

.always-no-shadows {
    box-shadow: none !important;
}

.card-header,
.card-footer {
    background: white;
}

.ad-data-container {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: flex !important;
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
       -moz-box-pack: justify !important;
            justify-content: space-between !important;
}

.ad-data-container-left {
    width: -webkit-calc(100% - 300px - 4rem);
    width: -moz-calc(100% - 300px - 4rem);
    width: calc(100% - 300px - 4rem);
    margin-right: 1rem;
    display: inline-block !important;
}

.ad-data-container-right {
    width: -webkit-calc(300px + 2rem);
    width: -moz-calc(300px + 2rem);
    width: calc(300px + 2rem);
    margin-left: 1rem;
    display: inline-block !important;
}

@media (max-width: 991px) {
    .ad-data-container {
        max-width: 100%;
        display: block !important;
        -ms-flex-pack: initial !important;
        -webkit-box-pack: initial !important;
        -webkit-justify-content: initial !important;
           -moz-box-pack: initial !important;
                justify-content: initial !important;
    }

    .ad-data-container-left {
        max-width: inherit;
        width: 100%;
    }

    .ad-data-container-right {
        max-width: inherit;
        width: 100%;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

:focus {
    outline: var(--color_default) auto 1px;
}

.list-group a:hover {
    color: white;
    background: var(--color_default);
}

.list-group a:hover > .badge {
    background: white;
    color: var(--color_default);
}

.btn-group .btn {
    color: white;
    background-color: var(--color_default);
    border-color: var(--color_default) !important;
}

.btn-group .btn:hover {
    background-color: var(--color_default__darken);
    border-color: var(--color_default__darken) !important;
}

.btn-group .btn:not(:disabled):not(.disabled).active,
.btn-group .btn:not(:disabled):not(.disabled):active,
.btn-group .show > .btn.dropdown-toggle {
    color: #fff;
    background-color: var(--color_default__darken);
    border-color: var(--color_default__darken) !important;
}

.btn-group .btn.focus,
.btn-group .btn:focus,
.custom-control-input:focus ~ .custom-control-label::before,
.form-control:focus,
.custom-select:focus {
    -webkit-box-shadow: 0 0 0 0.2rem var(--color_default__opacity50);
       -moz-box-shadow: 0 0 0 0.2rem var(--color_default__opacity50);
            box-shadow: 0 0 0 0.2rem var(--color_default__opacity50);
}

.custom-range:focus::-webkit-slider-thumb,
.custom-control-input:focus ~ .custom-control-label.customized::before,
.page-link:focus {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem var(--color_default__darken__opacity25);
            box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem var(--color_default__darken__opacity25);
}

.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
    -moz-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem var(--color_default__darken__opacity25);
         box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem var(--color_default__darken__opacity25);
}

.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px var(--color_default__darken__opacity60);
    -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px var(--color_default__darken__opacity60);
         box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px var(--color_default__darken__opacity60);
    border-color: var(--color_default) !important;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before,
.custom-control-input:checked ~ .custom-control-label::before,
.custom-control-input:checked ~ .custom-control-label.customized::before {
    color: #fff;
    background-color: var(--color_default);
    border-color: var(--color_default) !important;
}

#all-images div:first-child .uploaded-img img {
    -webkit-box-shadow: 0px 0px 5px 5px var(--color_default);
       -moz-box-shadow: 0px 0px 5px 5px var(--color_default);
            box-shadow: 0px 0px 5px 5px var(--color_default);
}

button:focus {
    outline: 5px auto var(--color_default);
}

.cus,
.page-link,
.card a:not(.btnVerifyPhone):hover,
.pure-toggle-label:hover,
.nav-tabs .nav-link.active,
.pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'], .pure-toggle:focus ~ .pure-toggle-label,
.list-group a:hover > .badge {
    color: var(--color_default);
}

.cus-h,
.breadcrumb-item a {
    color: var(--color_default);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.cus-h:hover,
.page-link:hover,
.breadcrumb-item a:hover,
.pure-drawer-link:hover,
.profile-dropdown .dropdown-item:hover,
.wrapper-right-container-item:hover {
    color: var(--color_default__darken);
}

.cus-bg,
.pace .pace-progress,
.table thead,
.progress-bar,
.toast-body,
.toast-header,
.table,
.price,
.badge-c,
.page-item.active .page-link,
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected],
.custom-range::-webkit-slider-thumb,
.btn-group .dropdown-item.active,
.btn-group .dropdown-item:active,
.list-group a:hover:before,
.list-group a:before,
.pure-toggle-label:hover .pure-toggle-icon, .pure-toggle-label:hover .pure-toggle-icon:before, .pure-toggle-label:hover .pure-toggle-icon:after,
.pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label .pure-toggle-icon:before, .pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label .pure-toggle-icon:after,
.list-group a:hover,
.list-group a:before,
.list-group a:hover:before{
    background: var(--color_default);
}

.custom-range::-moz-range-thumb {
    background: var(--color_default);
}

.cus-bg-h {
    background: var(--color_default);
    -webkit-transition: .5s ease;
    -o-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.cus-bg-h:hover,
.custom-range::-webkit-slider-thumb:active {
    background: var(--color_default__darken);
}

::-webkit-scrollbar-thumb {
    background: var(--color_default__opacity30);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color_default__opacity50);
}

::-webkit-scrollbar-thumb:active {
     background: var(--color_default__opacity70);
}

.sidebar-indicator,
.select2-container--bootstrap .select2-dropdown,
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before,
.form-control:focus,
.custom-select:focus,
.pure-toggle-label:hover,
.page-item.active .page-link,
.pure-toggle[data-toggle='right']:checked ~ .pure-toggle-label[data-toggle-label='right'], .pure-toggle:focus ~ .pure-toggle-label {
    border-color: var(--color_default) !important;
}

.pure-drawer-link:hover,
.profile-dropdown .dropdown-item:hover {
    background: var(--color_default__opacity20);
}

.cus-border, .pace {
    border-color: var(--color_default) !important;
}

.cus-bg-light {
    background: var(--color_default__opacity20);
}.example {
    display: -ms-grid;
    display: grid;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: -webkit-gradient(linear, left top, left bottom, from(white), to(#1a1a1a));
    background: -webkit-linear-gradient(top, white, #1a1a1a);
    background: -moz-linear-gradient(top, white, #1a1a1a);
    background: -o-linear-gradient(top, white, #1a1a1a);
    background: linear-gradient(to bottom, white, #1a1a1a);
}

.btn-group .btn-outline {
    color: var(--color_default);
    border-color: var(--color_default) !important;
    background: transparent;
}

.btn-group .btn-outline:hover {
    color: #fff;
    background-color: var(--color_default__darken);
    border-color: var(--color_default__darken) !important;
}

.btn-group .btn-outline:not(:disabled):not(.disabled).active, .btn-group .btn-outline:not(:disabled):not(.disabled):active, .btn-group .show > .btn-outline.dropdown-toggle {
    color: #fff;
    background-color: var(--color_default);
    border-color: var(--color_default) !important;
}

.btn-group .btn-outline.focus,
.btn-group .btn-outline:focus {
    -webkit-box-shadow: 0 0 0 0.2rem var(--color_default__opacity50);
       -moz-box-shadow: 0 0 0 0.2rem var(--color_default__opacity50);
            box-shadow: 0 0 0 0.2rem var(--color_default__opacity50);
}

.sp-container {
    z-index: 0;
}

.select2-selection[aria-expanded="true"] {
    -webkit-border-bottom-right-radius: 0 !important;
       -moz-border-radius-bottomright: 0 !important;
            border-bottom-right-radius: 0 !important;
    -webkit-border-bottom-left-radius: 0 !important;
       -moz-border-radius-bottomleft: 0 !important;
            border-bottom-left-radius: 0 !important;
}

.btn.search-btn {
    opacity: .7;
    background: #f5f5f5 !important;
    color: #1a1a1a !important;
    border-color: #f5f5f5 !important;
    width: 60px;
    text-align: center;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.btn-group .btn-outline.search-btn:hover,
.btn-group .btn-outline.search-btn:not(:disabled):not(.disabled):active {
    opacity: 1;
    border-color: #f5f5f5 !important;
}

.btn-group .btn-outline.search-btn:focus {
    opacity: 1;
}

.btn-group .btn-outline.search-btn.search-btn-page {
    background: white !important;
    opacity: 1;
}

.dropdown-item:hover {
    background: var(--color_default__darken);
}

.dropdown-menu {
    overflow: hidden;
    padding: 0;
}

.wrapper-nav .dropdown-toggle {
    line-height: 1;
    padding: 0 .5rem;
    height: 30px;
    font-size: 16px;
    background: transparent !important;
    color: #1a1a1a !important;
    border: 0;
    font-weight: bold;
    outline: none !important;
}

/* Improved dropdown styles for country and language */
.country-select-wrapper .dropdown-toggle,
.language-select-wrapper .dropdown-toggle {
    min-width: 120px;
    padding: 6px 12px;
    border-radius: var(--border_radius);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.country-select-wrapper .dropdown-toggle:hover,
.language-select-wrapper .dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

.country-select-wrapper .dropdown-toggle i,
.language-select-wrapper .dropdown-toggle i {
    font-size: 14px;
    opacity: 0.7;
}

.dropdown-menu.country-change,
.dropdown-menu.language-change {
    min-width: 280px;
    max-width: 320px;
    max-height: 400px;
    padding: 0;
    border-radius: var(--border_radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e5e5;
    margin-top: 8px;
}

.dropdown-search-wrapper {
    position: relative;
    padding: 12px;
    border-bottom: 1px solid #e5e5e5;
    background: #fafafa;
}

.dropdown-search {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border_radius);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.dropdown-search:focus {
    border-color: var(--color_default);
    box-shadow: 0 0 0 3px var(--color_default__opacity20);
}

.dropdown-search-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
    pointer-events: none;
}

.dropdown-items-wrapper {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}

.dropdown-item.country-item,
.dropdown-item.language-item {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item.country-item:hover,
.dropdown-item.language-item:hover {
    background: #f8f8f8;
    border-left-color: var(--color_default);
    padding-left: 20px;
}


.dropdown-item.country-item.active,
.dropdown-item.language-item.active {
    background: rgba(204, 10, 10, 0.1);
    color: var(--color_default__darken);
    border-left-color: var(--color_default__darken);
    font-weight: 600;
}

.country-name {
    flex: 1;
    font-size: 14px;
}

.country-code-badge {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 18px;
    background: transparent !important;
    padding: 0;
    border-radius: 0;
}

.country-code-badge .fi {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    width: 1.333333em;
    height: 1em;
    background-size: contain !important;
    background-position: 50% !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

.country-select-btn .country-code .fi {
    font-size: 20px !important;
    line-height: 1;
    display: inline-block;
    margin-right: 5px;
}

.country-code .fi {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
}

.language-name-full {
    font-size: 14px;
}

.dropdown-item.hidden {
    display: none;
}

/* Scrollbar styling */
.dropdown-items-wrapper::-webkit-scrollbar {
    width: 6px;
}

.dropdown-items-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-items-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.dropdown-items-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* mobile language dropdown optimization */
.pure-drawer-contain-languages {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.pure-drawer-contain-languages .pure-drawer-link {
    padding: .75rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: var(--color_default);
}

#add-contact-form {
    padding-top: -webkit-calc(.5rem + 5px)!important;
    padding-top: -moz-calc(.5rem + 5px)!important;
    padding-top: calc(.5rem + 5px)!important;
    height: -webkit-calc(45px + 1rem);
    height: -moz-calc(45px + 1rem);
    height: calc(45px + 1rem);
    box-shadow: -8px 0 10px 2px rgba(220, 220, 220, 0.8);
}

.unblock {
    height: -webkit-calc(40px + 2rem);
    height: -moz-calc(40px + 2rem);
    height: calc(40px + 2rem);
    width: 100%;
    background: var(--color_default);
    color: white !important;
    text-align: center;
    line-height: -webkit-calc(40px + 2rem);
    line-height: -moz-calc(40px + 2rem);
    line-height: calc(40px + 2rem);
    font-weight: bold;
    font-size: 1.3rem;
    display: none;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.unblock:hover {
    background: var(--color_default__darken);
}

.you-are-blocked {
    height: -webkit-calc(40px + 2rem);
    height: -moz-calc(40px + 2rem);
    height: calc(40px + 2rem);
    width: 100%;
    background: var(--color_default);
    color: white !important;
    text-align: center;
    line-height: -webkit-calc(40px + 2rem);
    line-height: -moz-calc(40px + 2rem);
    line-height: calc(40px + 2rem);
    font-weight: bold;
    font-size: 1.3rem;
    display: none;
    cursor: default;
}
.unblock.disabled, .you-are-blocked.disabled {
    color: white !important;
}

.dialog-bottom.blocked-by-you .unblock {
    display: block !important;
}

.dialog-bottom.blocked-by-you,
.dialog-bottom.blocked-by-opponent {
    padding: 0;
}

.dialog-bottom.blocked-by-you .you-are-blocked,
.dialog-bottom.blocked-by-you #message-form {
    display: none !important;
}

.dialog-bottom.blocked-by-opponent .you-are-blocked {
    display: block;
}

.dialog-bottom.blocked-by-opponent #message-form {
    display: none;
}

.dialog-top.blocked-by-opponent .start-videocall {
    display: none;
}

.dialog-top.blocked-by-you .start-videocall,
.dialog-top.blocked-by-you .block-contact {
    display: none;
}

.dialog-top-tools.dialog-top-tools-sm a {
    font-size: 16px;
    padding: 1rem;
    display: block;
    height: auto;
    width: auto;
    color: #1a1a1a;
    line-height: initial;
}

.dialog-top-tools.dialog-top-tools-sm .left-part {
    width: 30px !important;
    text-align: left;
    display: block;
}

.dialog-top-tools.dialog-top-tools-sm .right-part {
    width: -webkit-calc(180px - 2rem - 30px) !important;
    width: -moz-calc(180px - 2rem - 30px) !important;
    width: calc(180px - 2rem - 30px) !important;
}

.dialog-top-tools.dialog-top-tools-sm {
    width: 180px !important;
}

.ad-images {
    width: 200px;
}

.ad-images .slick-list {
    width: 200px;
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    -webkit-border-top-right-radius: 0 !important;
       -moz-border-radius-topright: 0 !important;
            border-top-right-radius: 0 !important;
    -webkit-border-bottom-right-radius: 0 !important;
       -moz-border-radius-bottomright: 0 !important;
            border-bottom-right-radius: 0 !important;
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {
    -webkit-border-top-left-radius: 0 !important;
       -moz-border-radius-topleft: 0 !important;
            border-top-left-radius: 0 !important;
    -webkit-border-bottom-left-radius: 0 !important;
       -moz-border-radius-bottomleft: 0 !important;
            border-bottom-left-radius: 0 !important;
}

.input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
    -webkit-border-top-right-radius: 0 !important;
       -moz-border-radius-topright: 0 !important;
            border-top-right-radius: 0 !important;
    -webkit-border-bottom-right-radius: 0 !important;
       -moz-border-radius-bottomright: 0 !important;
            border-bottom-right-radius: 0 !important;
}

.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
    -webkit-border-top-left-radius: 0 !important;
       -moz-border-radius-topleft: 0 !important;
            border-top-left-radius: 0 !important;
    -webkit-border-bottom-left-radius: 0 !important;
       -moz-border-radius-bottomleft: 0 !important;
            border-bottom-left-radius: 0 !important;
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    -webkit-border-top-left-radius: 0 !important;
       -moz-border-radius-topleft: 0 !important;
            border-top-left-radius: 0 !important;
    -webkit-border-bottom-left-radius: 0 !important;
       -moz-border-radius-bottomleft: 0 !important;
            border-bottom-left-radius: 0 !important;
}

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {
    -webkit-border-top-right-radius: 0 !important;
       -moz-border-radius-topright: 0 !important;
            border-top-right-radius: 0 !important;
    -webkit-border-bottom-right-radius: 0 !important;
       -moz-border-radius-bottomright: 0 !important;
            border-bottom-right-radius: 0 !important;
}

.grata-points-icon {
    width: 25px;
    height: 25px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 21px;
    color: #f44336 !important;
    border: solid 2px #f44336 !important;
}

.grata-points-icon.grata-points-icon-lg {
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 33px;
    border-width: 3px !important;
}

.grata-points-icon.success {
    color: #28a745 !important;
    border-color: #28a745 !important;
}

.grata-points-count {
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #1a1a1a;
}

.grata-points-count.grata-points-count-lg {
    font-size: 30px;
    line-height: 1.5;
}

.wallet-info {
    width: 250px;
    padding: .75rem;
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
       -moz-transform: translateX(-50%) !important;
        -ms-transform: translateX(-50%) !important;
         -o-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    top: 100% !important;
    overflow: visible;
    border-width: 1px 1px 2px;
    border-style: solid;
    border-color: rgba(0,0,0,.125);
    z-index: 0;
}

.dropdown:hover > .wallet-info {
    display: block;
}

.wallet-info:hover {
    display: block;
}

.wallet-info::after {
    content: '';
    position: absolute;
    left: -webkit-calc(50% - 10px);
    left: -moz-calc(50% - 10px);
    left: calc(50% - 10px);
    top: -20px;
    border: 10px solid transparent;
    border-bottom-color: rgba(0,0,0,.125);
}

.alert {
    border: 0;
}

.list-group-item {
    border-color: white;
}

.card-bordered {
    border: 1px solid #f5f5f5;
}

#info-page .title-container {
    min-height: 110px;
    height: 100%;
    /*text-align: center;*/
    justify-content: center;
    display: flex;
    overflow: hidden;
    position: relative;
}

#info-page .title-content {
    z-index: 2;
    color: black;
}

#info-page .title-content:first-letter
{
    text-transform: uppercase;
}

#info-page .title-image {
    /*position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
}

#info-page .title-backdrop {
    /*background: #1a1a1a;
    position: absolute;*/
    height: 100%;
    width: 100%;
    z-index: 1;
}

#info-page .article {
    word-break: break-word;
    overflow: hidden;
    display: block;
    position: relative;
}

#info-page .article img {
    height: 100% !important;
    width: 80% !important;
    margin-left: 10% !important;
    margin-top: .75rem !important;
    margin-bottom: .75rem !important;
}

#info-page .article a {
    text-decoration: none;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--color_default__darken);
    overflow: hidden;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    position: relative;
}

#info-page .article a:before {
    content: '';
    position: absolute;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    -o-transition: -o-transform .5s ease;
    -moz-transition: transform .5s ease, -moz-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease, -moz-transform .5s ease, -o-transform .5s ease;
    left: -100%;
    bottom: 0;
    width: 200%;
    height: 2px;
    background: var(--color_default__darken);
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
}

#info-page .article a:hover:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
}

#info-page .article table,
#info-page .article table tr,
#info-page .article table td,
#info-page .article table th {
    width: -webkit-fit-content !important;
    width: -moz-fit-content !important;
    width: fit-content !important;
}

#info-page .article table td,
#info-page .article table th {
    padding: .5rem;
}

#info-page .article table th {
    background: var(--color_default__darken);
    color: white;
    border: 0;
}

#info-page .article table {
    border: 0;
    text-align: center;
    margin: auto;
    -webkit-border-radius: var(--border_radius);
       -moz-border-radius: var(--border_radius);
            border-radius: var(--border_radius);
    overflow: hidden;
}

#info-page .article table td {
    border-top: 0;
    border-left: 0;
}

#info-page .article table td:last-child {
    border-right: 0;
}

#info-page .article table tr:last-child td {
    border-bottom: 0;
}

#info-page .article table th {
    padding-right: 35px !important;
}

#info-page table.dataTable thead .sorting:before, #info-page table.dataTable thead .sorting:after, #info-page table.dataTable thead .sorting_asc:before, #info-page table.dataTable thead .sorting_asc:after, #info-page table.dataTable thead .sorting_desc:before, #info-page table.dataTable thead .sorting_desc:after, #info-page table.dataTable thead .sorting_asc_disabled:before, #info-page table.dataTable thead .sorting_asc_disabled:after, #info-page table.dataTable thead .sorting_desc_disabled:before, #info-page table.dataTable thead .sorting_desc_disabled:after{
    top: .4rem !important;
}

a.bonus:hover:before {
    display: none;
}

a.bonus:hover {
    background: #f8f9fa;
    color: #1a1a1a;
    -webkit-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

.bonus {
    border-top: 5px solid white;
}

.bonus.given {
    background-color: #f5f5f5 !important;
}

.bonus.given * {
    color: #444 !important;
    border-color: #444 !important;
}

.bonus.given::after {
    content: " ";
    border-bottom: 4px solid #28a745;
    position: absolute;
    width: -webkit-calc(100% - 2.5rem);
    width: -moz-calc(100% - 2.5rem);
    width: calc(100% - 2.5rem);
    top: -webkit-calc(50% - 2px);
    top: -moz-calc(50% - 2px);
    top: calc(50% - 2px);
    display: block;
}

.give-bonus-container {
    display: block;
    position: fixed;
    z-index: 100000;
    width: 100%;
    height: 200px;
    top: -220px;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.give-bonus-container.animate-give-bonus {
    -webkit-transform: translateY(130px);
       -moz-transform: translateY(130px);
        -ms-transform: translateY(130px);
         -o-transform: translateY(130px);
            transform: translateY(130px);
}

.give-bonus {
    width: 60%;
    min-width: 300px;
    position: absolute;
    overflow: hidden;
    height: 50px;
    padding: 10px 20px;
    bottom: 0;
    background: white;
    -webkit-box-shadow: 0 0 10px 0 #d3d3d3;
       -moz-box-shadow: 0 0 10px 0 #d3d3d3;
            box-shadow: 0 0 10px 0 #d3d3d3;
}

.give-bonus-task {
    font-size: 16px;
}

.give-bonus-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 10s ease-in-out !Important;
    -o-transition: all 10s ease-in-out !Important;
    -moz-transition: all 10s ease-in-out !Important;
    transition: all 10s ease-in-out !Important;
}

.give-bonus-content:before {
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
         -o-transform: scaleX(0);
            transform: scaleX(0);
        -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: -o-transform 1s ease;
    -moz-transition: transform 1s ease, -moz-transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease, -moz-transform 1s ease, -o-transform 1s ease;
    content: " ";
    position: absolute;
    left: -100%;
    top: -webkit-calc(50% - 3px);
    top: -moz-calc(50% - 3px);
    top: calc(50% - 3px);
    width: 200%;
    height: 6px;
    background: #28a745;
}

.give-bonus-content.animate-give-bonus:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
}

.days-strike {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.days-strike li {
    -webkit-box-flex: 2;
    -webkit-flex: 2;
       -moz-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    position: relative;
    padding: 0 0 18px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #28a745;
    font-weight: 600;
    white-space: nowrap;
    overflow: visible;
    min-width: 0;
    text-align: center;
    border-bottom: 5px solid rgba(0, 0, 0, .125);
}

.days-strike li:first-child,
.days-strike li:last-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.days-strike li:first-child {
    text-align: left;
}

.days-strike li:last-child {
    text-align: right;
}

.days-strike li:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-color: #aaa;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    border: 2px solid white;
    position: absolute;
    left: -webkit-calc(50% - 6px);
    left: -moz-calc(50% - 6px);
    left: calc(50% - 6px);
    bottom: -10px;
    z-index: 3;
}

.days-strike li:first-child:before {
    left: 0;
}

.days-strike li:last-child:before {
    right: 0;
    left: auto;
}

.days-strike .days-strike-top {
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

.days-strike li:not(.is-active) .days-strike-top {
    opacity: 0;
}

.days-strike .is-complete:not(:first-child):after,
.days-strike .is-active:not(:first-child):after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: -5px;
    left: -webkit-calc(-50% + 4px);
    left: -moz-calc(-50% + 4px);
    left: calc(-50% + 4px);
    z-index: 2;
    border-bottom: 5px solid #28a745;
}

.days-strike li:last-child .days-strike-top {
    width: 200%;
    display: inline-block;
    position: absolute;
    left: -100%;
}

.days-strike .is-complete:last-child:after,
.days-strike .is-active:last-child:after {
    width: 200%;
    left: -100%;
}

.adTitle {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    padding: 8px !important;
    vertical-align: middle !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #333 !important;
    min-width: 120px !important;
    display: table-cell !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
}

.dataTable td.adTitle,
table.dataTable td.adTitle,
.dataTable th.adTitle,
table.dataTable th.adTitle {
    display: table-cell !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.dtr-hidden.adTitle,
td.dtr-hidden.adTitle,
th.dtr-hidden.adTitle {
    display: table-cell !important;
}

.adTitle .ad-title-link {
    display: block;
    color: inherit !important;
    text-decoration: none;
    position: relative;
    z-index: 3;
}

.adTitle .ad-title-link:hover {
    text-decoration: underline;
}

.ad-images {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.days-strike .is-complete:before {
    background-color: #28a745;
}

.days-strike .is-active:before,
.days-strike li:hover:before,
.days-strike .is-hovered:before {
    background-color: white;
    border-color: #28a745;
}
.days-strike li:hover:before,
.days-strike .is-hovered:before {
    -webkit-transform: scale(1.33);
       -moz-transform: scale(1.33);
        -ms-transform: scale(1.33);
         -o-transform: scale(1.33);
            transform: scale(1.33);
}

.days-strike li:hover .days-strike-top,
.days-strike li.is-hovered .days-strike-top {
    opacity: 1;
}

.days-strike:hover li:not(:hover) .days-strike-top {
    opacity: 0;
}

.days-strike .days-strike-bottom {
    width: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -36px;
}

.days-strike .days-strike-bottom {
    color: #aaa;
}

.days-strike .is-complete .days-strike-bottom,
.days-strike .is-active .days-strike-bottom,
.days-strike li:hover .days-strike-bottom {
    color: #28a745;
}

.days-strike li:last-child .days-strike-bottom {
    left: 22%;
}

.days-strike li:last-child .days-strike-top {
    left: -100%;
    position: absolute;
}

.days-strike li:first-child .days-strike-bottom {
    left: auto;
    right: 22%;
}

.days-strike li:first-child .days-strike-top {
    left: -50%;
    position: absolute;
}

.days-strike .grata-points-icon {
    display: inline-block;
}

.days-strike .grata-points-count {
    display: inline-block;
    line-height: 1.2;
    top: 0;
    position: absolute;
}

@media (max-width: 500px) {
    .days-strike li:first-child .days-strike-bottom {
        left: -50%;
        right: auto;
    }
}

#send .input-group-prepend:first-of-type,
#send .btn-group {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}

#steps .position-sticky .progress-bar {
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}

.tool {
    webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -webkit-border-radius: 1rem;
            border-radius: 1rem;
    color: black !important;
    font-size: 1rem;
    padding: .25rem 1rem;
    font-weight: bold;
    -webkit-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.tool:hover {
    background: var(--color_default__opacity70);
    color: white !important;
}


.tool:focus, .tool.selected {
    background: var(--color_default__darken);
    color: white !important;
}

.notification-dropdown,
.dropdown-menu.language-change {
    left: 50% !important;
    -webkit-transform: translateX(-50%) !important;
    -moz-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    -o-transform: translateX(-50%) !important;
    transform: translateX(-50%) !important;
    top: 100% !important;
}

.dropdown-menu.language-change {
    width: 200px !important;
    min-width: 200px !important;
    max-height: 400px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.dropdown-menu.language-change .dropdown-item {
    width: 100% !important;
    min-width: 200px !important;
    max-width: 200px !important;
    font-weight: normal;
    white-space: nowrap;
    padding: .4rem 1rem !important;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    line-height: 1.4;
}

.filters input {
    border-top: 0;
}

.filters .input-group-text {
    color: #1a1a1a;
    background: white;
}

.ad-subject-text
{
    word-break: break-all;
}

.add_goBackToList
{
    float: right;
}



.addTitleText
{
    height: 130px;
    line-height: inherit !important;
}

.addListContainer
{
    overflow-x: scroll !important;
}

.removeScroller
{
    overflow-x: visible !important;
}

#accordionExample .card-header
{
    background: var(--color_default);
}

#accordionExample .card-header .btn-link
{
    color: white !important;
}

.dateFrom, .dateTo
{
    width: 120px;
}

#tblTransactionsReport, #tblTransactionsReport > thead, .tblMyRecs > thead
{
    background: white !important;
}

#tblTransactionsReport, .tblMyRecs
{
        text-align: center;
}

#tblTransactionsReport caption {
    caption-side: top !important;
}

.emptyData
{
    color: red;
    font-size: x-large;
}

/*
#main-slider
{
    margin: 30px auto;
    max-width: 80% !important;
}
*/

.fName
{
    font-size: .875rem;
}

/*** CALL BUTTON ***/
.callUser {
  display: inline-block;
  padding: 5px 10px;
  background: #aaa;
  color: white;
  font-family: Arial;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
}
.call {
  text-align: center;
}
.show-large {
  display: none;
}
@media only screen and (min-width: 767px) {
  .show-large {
    display: block;
  }
  .show-mobile, .lblNotVerified, .lblVerified {
    display: none;
  }
}

.card-header > img
{
    margin: auto;
    width: inherit;
}

.albumImage
{
    height: 300px !important;
    object-fit: cover;
}

.mapAddTitle
{
    word-break: break-word;
}

.addImage > img
{
    height: 300px !important;
    width: 100%;
    object-fit: cover;
}


.leaflet-popup-content
{
    width: 400px !important;
}

.imageContainer
{
    width: 400px !important;
    margin: 0;
    padding: 0;
}

@media only screen and (min-width : 320px) {
    .addImage
    {
        width: 200px !important;
    }

    .imageContainer
    {
        width: 200px !important;
        margin: 0;
        padding: 0;
    }

    .leaflet-popup-content
    {
        width: 200px !important;
    }
}

@media only screen and (min-width:480px){
    .imageContainer
    {
        width: 300px !important;
        margin: 0;
        padding: 0;
    }

    .addImage
    {
        width: 300px !important;
    }

    .leaflet-popup-content
    {
        width: 300px !important;
    }
}

.cardAlbum, .addImage
{
    width: 400px;
    padding: 0;
    margin: 0;
}

.cardAlbum .slick-list
{
    width: 400px;
}

.mobileCardBody
{
    padding: 0.5rem;
}

.error
{
    color: red;
}

.categoryBanner
{
 #   height: 100% !important;
 #   width: 100% !important;
 #   object-fit: fill;
}

#profile-card img
{
    width: 50%;
}

.thumbPicture
{
    height: 75px !important;
}

#home-cards .card-header
{
    border-bottom: 0 !important;
}

.fill {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.smallFooter, .smallFooter > div > h6, .smallFooter .h6
{
    font-size: small;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
}

.toggle-password
{
    float: right;
    top: -25px;
    right: 10px;
    position: relative;
    cursor: pointer;
}

.footerurl
{
    line-height: 1.7;
}

.inputBorder
{
    border: 1px solid #a6a6a6;
}

.leaflet-custom-marker-wrapper {
    background: transparent !important;
    border: none !important;
    width: auto !important;
    height: auto !important;
}

.leaflet-marker-container {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 90px;
    text-align: center;
}

.leaflet-marker-icon-custom {
    width: 25px !important;
    height: 41px !important;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    margin: 0 !important;
}

.leaflet-price-label {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(204, 10, 10) !important;
    color: white !important;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    pointer-events: none;
    min-width: 40px;
    text-align: center;
    line-height: 1.2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.leaflet-price-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgb(204, 10, 10);
}

/* FIREFOX FIX FOR DATATABLES */
@-moz-document url-prefix() {
    td.adTitle,
    th.adTitle,
    .adTitle {
        display: table-cell !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        max-width: none !important;
        overflow: visible !important;
        position: relative !important;
    }
}
