﻿
:root {
    --primary-color: #0092DB;
    --primary-color-light: #E6F8FF;
    --primary-color-dark: #0074A6;
}

html, body {
    padding: 0;
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background-color: #f8f8f8;
    font-size: 100%;
    letter-spacing: 0pt;
    height: 100%;
}

table {
    border-collapse: collapse;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1, h2, h3, h4, strong {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
}

img {
    display: block;
}

hr {
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, .1);
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    color: #0092DB;
}

.a-s {
    text-align: center;
}

input, select, textarea {
    border: 1px solid #efefef;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'APP', Helvetica, Arial, sans-serif;
    background-color: #fafbfc;
    width: 100%;
    box-shadow: inset 0 1px 2px rgba(126, 128, 129, 0.075);

}

.user-name-input {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="30"><text x="14" y="22" style="font: bold 16px Arial;">@</text></svg>') no-repeat #fafbfc;
    padding-left: 34px;
}


input.short, select.short {
    width: 120px;
}

input[type="radio"], input[type="checkbox"] {
    display: inline-block;
    width: auto;
}

input[type="search"] {
    background-color: #fff;
    box-shadow: none;
}

input[type="search"]:focus {
    background-color: #fafbfc;
    border-color: #ccc;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(27, 31, 35, .075);
}

select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='gray'%3E%E2%96%BE%3C/text%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: right center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select::after {
    font-family: "Font Awesome 5 Free";
    content: "\f362";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin: 0 6px;
    opacity: 0.8;
    font-size: 12px;
    font-weight: 900;
    position: absolute;
    right: 0;
    z-index: 1;
}

input:focus, select:focus, textarea:focus {
    border-color: #2188ff;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(27, 31, 35, .075), 0 0 0 0.2em rgba(3, 102, 214, .3);
}

.custom-checkbox, .custom-radio {
    display: flex;
    align-items: flex-start;
    outline: none;
}

.custom-checkbox input:focus, .custom-radio input:focus {

    outline: none;
    box-shadow: none;
}

.custom-checkbox label, .custom-radio label {
    margin: 0 !important;
    padding-top: 2px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 6px;
    display: inline-block;
}

.form-items-row {
    display: flex;

}

.form-items-row > * {
    margin-right: 6px;
}

.form-group .flag-container {
    max-height: 42px;
}

.form-group .flag-container .selected-flag {
    background-color: transparent !important;
}

.form-group .label-info {
    display: block;
    color: #666;
}


.user-edit-section {
    padding: 22px;
    margin-bottom: 16px;
}

.user-edit-section:first-of-type {
    border-radius: 0 0 4px 4px;
    border-top: none;
}

.user-edit-section h3:hover {
    color: #0092DB;
}

.user-edit-section h3 {
    margin: 0;
    cursor: pointer;
}

.user-edit-section h3:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: 6px;
    opacity: 0.6;
}

.user-edit-section.selected h3:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f068";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin-right: 6px;
    opacity: 0.6;
}


.user-edit-section.selected h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1e85da;
}

.user-edit-section .content {
    display: none;
}

.user-edit-section.selected .content {
    display: block;
}

.saved-adress {
    background-color: #fafbfc;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 6px;
}

.saved-adress-options a {
    font-size: 12px;
    margin: 0 8px;
}

.basket-section .saved-adress-options {
    display: none;
}

.user-edit-section .adress-radios input {
    display: none !important;
}

.user-edit-section .adress-radios input[type=radio]:checked + .radio {
    background-color: #fafbfc;
}


ul {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

.green-bg {
    background-color: #C2F2C2
}

.red-text {
    color: red !important
}

.green-text {
    color: green !important
}

.displayBlock {
    display: block;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #bbb;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbb;
}

::placeholder {
    color: #bbb;
}

.cs {
    overflow: auto;
    height: 100%;
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

.cs:hover {

    scrollbar-color: rgb(90, 90, 90) transparent;
}

.cs:hover::-webkit-scrollbar-thumb {
    overflow-y: auto;
    background-color: rgb(90, 90, 90);;
}

.cs::-webkit-scrollbar {
    width: 4px;
    scrollbar-width: 4px
}

.cs::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.cs::-webkit-scrollbar-corner {
    background-color: transparent;
}

.cs::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 2px;
}


.hcs {
    overflow: auto;
    width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgb(189, 189, 189) #e4e4e4;
}

.hcs::-webkit-scrollbar {
    height: 6px;
    background-color: #e4e4e4;

}

.hcs::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

.hcs::-webkit-scrollbar-corner {
    background-color: transparent;
}

.hcs::-webkit-scrollbar-thumb {
    overflow-x: auto;
    background-color: rgb(189, 189, 189);
    border-radius: 2px;
    cursor: pointer;
}


input, textarea, select, div {
    outline: none;
}

.input-group {
    display: flex;
    align-items: center;
}

.bid-input-container {
    position: relative;
}

.bid-input-container input {
    border-radius: 4px 0 0 4px;
    border-right: none;
    width: 100px;
}

.bid-input-container input:focus {
    outline: none;
    box-shadow: none;
    border-color: #efefef;
}

.follow-btn {
    border-radius: 4px !important;
    white-space: nowrap;
}

.follow-btn:hover {
    box-shadow: none;
    background-color: #909090;
    color: white;
    border-color: #909090 !important;
}

.blue-btn {
    border-radius: 4px !important;
    white-space: nowrap;
    background-color: #0092DB !important;
    color: #fff;
    border-color: #0092DB !important;
}

.blue-btn:hover {
    box-shadow: none;
    background-color: #006394 !important;
    border-color: #0092DB !important;
}

.bid-input-container i {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    cursor: pointer;
}

.bid-input-container i:hover {
    opacity: 1;
}

button {
    outline: none;
}

.btn {
    padding: 8px 16px;
    font-size: 1rem;
    border: 1px solid #efefef;
    border-radius: 6px;
    cursor: pointer;
    background-color: #fff;
}

.btn:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #ffffff;
}

.btn.dismiss {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.blue {
    background-color: rgb(30, 133, 218);
    color: white;
}

.red {
    background-color: #B30000;
    color: white;
}

.green {
    background-color: green;
    color: white;
}

.green-text {
    color: green !important;
}

.grey {
    background-color: #f3f3f3;
}


.full-a {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5;
    text-indent: 200%;
    opacity: 0;
}

/*--pop up----*/


.pop-up-container {
    display: none;
    position: fixed;
    padding: 40px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
}

.pop-up-container.popup-video .pop-up {
    max-width: 100%;
}

.pop-up-container.popup-video .pop-up-content {
    overflow: hidden;
    max-height: 100%;
    max-width: 100%;
    width: 700px;
    height: 400px;
}

.pop-up-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.pop-up {
    background-color: white;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
    padding: 16px;
    padding-top: 36px;
    min-width: 240px;
    position: relative;
}

.pop-up-btn-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 24px;
}

.no-btn .pop-up {
    padding-bottom: 36px;
}

.no-btn .pop-up-btn-container {
    display: none;
}

.pop-up-container .close {
    position: absolute;
    right: 0;
    top: 0;
    padding: 8px;
    opacity: 0.5;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    z-index: 2;
}

.pop-up-container .close:hover {
    opacity: 1;
}

.pop-up-inner > .pop-up-image > a {
    display: flex;
    justify-content: center;
}

.pop-up-inner > .pop-up-image > a > img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: inline !important;
}

.pop-up-image {
    position: static;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.pop-up-image .close {
    background-color: white;
    font-size: 27px;
    opacity: 1;
    border-radius: 99px;
    line-height: 27px;
    z-index: 2;
    right: 0;
}

.pop-up-inner .close i {
    margin: 0;
    width: 27px;
    height: 27px;
}

.pop-up-content {
    overflow: auto;
    max-height: 500px;
}

.pop-up-content .agreement {
    background-color: #f1f1f1;
    padding: 6px 10px;
}

.popup-l-a-a .pop-up-content {
    max-height: 400px;
}


/*--end pop up------*/

.s-w {
    padding-top: 70px;
    min-height: 100%;
}

.s-w:before, .s-c:before, .s-c-r:before {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    content: '';
    opacity: 0;
    z-index: 11;
    background: rgba(0, 0, 0, 0.4);
    -webkit-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
    -moz-transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
    transition: opacity 0.3s, width 0.1s 0.3s, height 0.1s 0.3s;
}

.header {
    position: fixed;
    height: 70px;
    background-color: #fff;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
    z-index: 10;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid #D7D7D7;
}

.menu-b {
    padding-right: 20px;
    font-size: 26px;
}

.menu-b a {
    color: #ccc;
}

.menu-b a:hover {
    color: #0092DB;
}

.logo-m {
    display: none;
}

.logo-m {
    width: 30px;
    flex-shrink: 0;
}

.logo-c {
    width: 206px;
    flex-shrink: 0;
}

.logo-c a, .logo-m a {
    width: 100%;
}

.logo-c a img, .logo-m a img {
    width: 100%;
    height: auto;
    display: block;
}

.search-c {
    flex-grow: 1;
}

.search-c button {

}

.search-c input {
    width: 100% !important;
    font-size: 1rem;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.search-c .btn {
    color: #ccc;
    border: 1px solid #ccc;
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.search-c .btn:hover {
    color: #fff;
    background-color: #0092DB;
    border-color: #0092DB;
}

.s-i-c {
    padding: 0 40px;
    width: 100%;
    max-width: 600px;
}

.s-i-c form {
    display: flex;
}

.login-c {
}

.h-l-o {
}

.select-lang {
    border: 1px solid #efefef;
    border-radius: 9999px;
    padding: 8px;

}

.menu-bts {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.menu-bts a {
    color: #A0A0A0;
    margin-right: 20px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    font-size: 20px;
}

.menu-bts a i {
    position: relative;
}

.menu-bts a.sale-now {
    color: #0092DB;
}

.menu-bts-number {
    background-color: #0092DB;
    color: white;
    border-radius: 99px;
    padding: 0px 4px;
    position: absolute;
    display: block;
    top: -3px;
    right: -8px;
    font-size: 11px;
    line-height: 14px;
    border: 1px solid #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.menu-bts p {
    font-size: 14px;
    margin: 0;
}

.menu-bts a:last-child {
    margin-right: 0;
}

.menu-bts a:hover {
    color: #0092DB !important;
}

.bellring {
    color: #0092DB;
    -webkit-animation: ring 4s .7s ease-in-out infinite;
    -webkit-transform-origin: 50% 4px;
    -moz-animation: ring 4s .7s ease-in-out infinite;
    -moz-transform-origin: 50% 4px;
    animation: ring 4s .7s ease-in-out infinite;
    transform-origin: 50% 4px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotateZ(0);
    }
    1% {
        -webkit-transform: rotateZ(30deg);
    }
    3% {
        -webkit-transform: rotateZ(-28deg);
    }
    5% {
        -webkit-transform: rotateZ(34deg);
    }
    7% {
        -webkit-transform: rotateZ(-32deg);
    }
    9% {
        -webkit-transform: rotateZ(30deg);
    }
    11% {
        -webkit-transform: rotateZ(-28deg);
    }
    13% {
        -webkit-transform: rotateZ(26deg);
    }
    15% {
        -webkit-transform: rotateZ(-24deg);
    }
    17% {
        -webkit-transform: rotateZ(22deg);
    }
    19% {
        -webkit-transform: rotateZ(-20deg);
    }
    21% {
        -webkit-transform: rotateZ(18deg);
    }
    23% {
        -webkit-transform: rotateZ(-16deg);
    }
    25% {
        -webkit-transform: rotateZ(14deg);
    }
    27% {
        -webkit-transform: rotateZ(-12deg);
    }
    29% {
        -webkit-transform: rotateZ(10deg);
    }
    31% {
        -webkit-transform: rotateZ(-8deg);
    }
    33% {
        -webkit-transform: rotateZ(6deg);
    }
    35% {
        -webkit-transform: rotateZ(-4deg);
    }
    37% {
        -webkit-transform: rotateZ(2deg);
    }
    39% {
        -webkit-transform: rotateZ(-1deg);
    }
    41% {
        -webkit-transform: rotateZ(1deg);
    }
    43% {
        -webkit-transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(0);
    }
}

@-moz-keyframes ring {
    0% {
        -moz-transform: rotate(0);
    }
    1% {
        -moz-transform: rotate(30deg);
    }
    3% {
        -moz-transform: rotate(-28deg);
    }
    5% {
        -moz-transform: rotate(34deg);
    }
    7% {
        -moz-transform: rotate(-32deg);
    }
    9% {
        -moz-transform: rotate(30deg);
    }
    11% {
        -moz-transform: rotate(-28deg);
    }
    13% {
        -moz-transform: rotate(26deg);
    }
    15% {
        -moz-transform: rotate(-24deg);
    }
    17% {
        -moz-transform: rotate(22deg);
    }
    19% {
        -moz-transform: rotate(-20deg);
    }
    21% {
        -moz-transform: rotate(18deg);
    }
    23% {
        -moz-transform: rotate(-16deg);
    }
    25% {
        -moz-transform: rotate(14deg);
    }
    27% {
        -moz-transform: rotate(-12deg);
    }
    29% {
        -moz-transform: rotate(10deg);
    }
    31% {
        -moz-transform: rotate(-8deg);
    }
    33% {
        -moz-transform: rotate(6deg);
    }
    35% {
        -moz-transform: rotate(-4deg);
    }
    37% {
        -moz-transform: rotate(2deg);
    }
    39% {
        -moz-transform: rotate(-1deg);
    }
    41% {
        -moz-transform: rotate(1deg);
    }
    43% {
        -moz-transform: rotate(0);
    }
    100% {
        -moz-transform: rotate(0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }
    1% {
        transform: rotate(30deg);
    }
    3% {
        transform: rotate(-28deg);
    }
    5% {
        transform: rotate(34deg);
    }
    7% {
        transform: rotate(-32deg);
    }
    9% {
        transform: rotate(30deg);
    }
    11% {
        transform: rotate(-28deg);
    }
    13% {
        transform: rotate(26deg);
    }
    15% {
        transform: rotate(-24deg);
    }
    17% {
        transform: rotate(22deg);
    }
    19% {
        transform: rotate(-20deg);
    }
    21% {
        transform: rotate(18deg);
    }
    23% {
        transform: rotate(-16deg);
    }
    25% {
        transform: rotate(14deg);
    }
    27% {
        transform: rotate(-12deg);
    }
    29% {
        transform: rotate(10deg);
    }
    31% {
        transform: rotate(-8deg);
    }
    33% {
        transform: rotate(6deg);
    }
    35% {
        transform: rotate(-4deg);
    }
    37% {
        transform: rotate(2deg);
    }
    39% {
        transform: rotate(-1deg);
    }
    41% {
        transform: rotate(1deg);
    }
    43% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

/*-------------------*/

.s-c {
    display: grid;
    grid-template-columns: min-content auto min-content;
    min-height: 100vh;
    grid-template-areas: "s-c-l s-c-r events-container";
}

.s-c-l {
    grid-area: s-c-l;
    display: block;
    width: 286px;
    color: #444;
    background-color: #f4f4f4;
}

.s-c-l i {
    font-size: 1.3rem;
}

.s-c-r {
    grid-area: s-c-r;
    padding: 20px 20px 120px 20px;
    min-width: 100%;
}

.events-container {
    grid-area: events-container;
    background-color: #fff;

    border-left: 1px solid #dfe0e4;
    display: none;
    width: 350px;
}

.events-show-btn {
    cursor: pointer;
    display: none;
    position: fixed;
    z-index: 11;
    background-color: #0092DB;
    color: white;
    font-size: 20px;
    padding: 16px;
    border-radius: 100px;
    bottom: 50px;
    right: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    width: 56px;
    height: 56px;
    text-align: center;
    display: block;
}

.events-open .events-show-btn {
    display: none;
}


.events-open .events-container {
    display: block;
}

/*--------------------Events begin--------------------*/

.events-header {
    padding: 20px 10px;
    background-color: #f8f8f8;
}

.events-title {
    display: flex;
    flex-direction: row;
    margin-bottom: 8px;
    align-items: center;
}

.events-title .content {
    display: flex;
    flex-direction: row;
}

.events-title strong {
    color: #666;
    padding-left: 10px;
}

.events-title .events-tag, .events .item .events-tag {
    margin: 0 0 0 16px;
    color: #0092DB;
    font-weight: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 170px;
    overflow: hidden;
}

.events .item .events-tag {
    margin: 0 4px 0 0;
}

.events .item .events-tag:hover {
    text-decoration: underline;
}

.events-hide-btn {
    cursor: pointer;
    opacity: 0.6;
    color: #333;
    margin-left: auto;
    padding: 0 6px;
    display: none;
}

.events-hide-btn:hover {
    opacity: 1;
}

.event-entry {
    padding: 8px;
    background-color: #FFF;
    border: 1px solid #C6C6C6;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3) inset;
    transition: all 0.2s ease-in-out;
}

.event-entry:hover {
    border: 1px solid #0092DB;
}

.event-buts {
    display: none;
    flex-direction: row-reverse;
    margin-top: 10px;
}

.event-buts button {
    background-color: #fff;
    border: 1px solid #ccc
}

.event-buts button:hover {
    background-color: #0092DB;
    color: #fff;
    border: 1px solid #0092DB
}

.expanded .event-entry {
    height: 110px;
    border: 1px solid #0092DB;
}

.expanded .entry-txt {
    color: #333;
    overflow-y: auto;
}

.expanded .event-buts {
    display: flex;
}

.event-entry > img {
}

.event-thumb {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin: 0 10px 0 0;
    overflow: hidden;
    border-radius: 50%;
}

.event-thumb img {
    width: 100%;
    height: auto;
}

.entry-txt {
    font-size: 16px;
    width: 100%;
    padding-top: 7px;
    color: #999;
}

.events {
    height: 100%;
}

.events > .item {
    border-bottom: 1px solid #efefef;
    padding: 20px;
}

.events .item .item-header {
    display: flex;
    flex-direction: row;
}

.events .item .item-user-info {
    display: flex;
    flex-direction: row;
}

.events .item .item-user-info a {
    font-size: 14px;
    color: #0092DB;
    text-decoration: none;
    margin: 0;
    padding: 0;
    display: block;
}

.events .item .item-user-info span {
    font-size: 11px;
    color: #ccc;
    display: block;
}

.events .item .item-header .item-setting {
    margin-left: auto;
    padding: 0 10px;
    color: #CCCCCC;
    cursor: pointer;
    opacity: 0;
    position: relative;
}

.events .item:hover .item-header .item-setting {
    opacity: 1;
}

.events .item .item-header .item-setting:hover {
    color: #0092DB;
}

.events .item .item-header .item-setting:hover .settings {
    display: block;
}

.events .item .item-header .item-setting .settings {
    display: none;
    min-width: 130px;
    min-height: 20px;
    border: 1px solid #ccc;
    background-color: #FFF;
    position: absolute;
    z-index: 3;
    top: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    right: -5px;
    border-radius: 4px;
    overflow: hidden;
}

.events .item .item-header .item-setting .settings ul {
    list-style: none outside none;
    padding: 0;
    margin: 0;
}

.events .item .item-header .item-setting .settings ul li {
    padding: 8px 10px;
    font-size: 14px;
    cursor: pointer;
    color: #666;
}

.events .item .item-header .item-setting .settings ul li:hover {
    background-color: #efefef;
}

.events .item .item-header .item-setting .settings ul li + li {
    border-top: 1px solid #ccc;
}

.events .item .item-content {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 0;
    color: #666;
}

.events .item .item-footer ul {
    list-style: none outside none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
}

.events .item .item-footer ul li {
    font-size: 14px;
    margin-right: 12px;
    color: #CCCCCC;
    cursor: pointer;
}

.events .item .item-footer ul li.selected {
    color: #0092DB;
}

.events .item .item-footer ul li i {
    margin-right: 4px;
}

.events .item .item-footer ul li:hover {
    color: #0092DB;
}

.events .item .item-comments {
    padding: 0 0 0 16px;
}

.events .item .item-comments .item {
    padding-top: 16px;
    position: relative;
}

.events .item .item-comments .item .event-thumb {
    width: 26px;
    height: 26px;
}

.events .item .item-comments .item .item-user-info .comment a {
    display: inline;
    margin-right: 4px;
}

.events .item .item-comments .item .item-user-info span {
    padding-left: 10px;
}

.events .item .item-comments .item .item-user-info .comment {
    font-size: 14px;
    line-height: 1rem;
    color: #666;
    border-radius: 4px;
    background-color: #f7f7f7;
    padding: 5px 10px;
    max-width: 400px;
}

.events .item .item-comments .item.replay {
    display: none;
}

.events .item .item-comments .item form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.events .item .item-comments .item form i {
    position: absolute;
    right: 0;
    top: 12px;
    cursor: pointer;
    color: #ccc;
    padding: 10px;
}

.events .item .item-comments .item form i:hover {
    color: #000;
}

.events .item .item-comments .item form textarea {
    width: 100%;
    font-size: 14px;
    color: #333;
}

.events .item .item-comments .item form button {
    border: 1px solid #ccc;
    background-color: #fff;
    color: #333;
    margin-left: auto;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 4px;
}

.events .item .item-comments .item form button:hover {
    background-color: #0092DB;
    color: #fff;
    border-color: #0074A6;
}

/*--------------------Events end--------------------*/

/*--------------------List begin--------------------*/

.list-header {
    display: flex;
    flex-direction: row;
    padding: 8px 16px;
    align-items: center;
}

.list-header .list-options {
    margin-left: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.list-header button {
    color: rgb(168, 168, 168);
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.list-header button:hover {
    color: #666;
}

.filters-c {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.filters-c .item {
    padding: 6px 6px 6px 12px;
    border-radius: 99px;
    background-color: #666;
    color: #fff;
    justify-content: center;
    display: flex;
    margin-bottom: 20px;
    margin-right: 20px;
    font-size: 14px;
    line-height: 14px;
    cursor: pointer;
}

.filters-c .item span {
    max-width: 170px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.filters-c .item:hover i {
    color: #FF5C26;
}

.filters-c .item i {
    margin-left: 10px;
    line-height: unset;
}


.hs-arrows {
    margin-left: auto;
}

.hs-arrow {
    color: #666;
    cursor: pointer;
    padding: 0 8px;
}

.hs-arrow.disabled {
    cursor: default;
    color: #e4e4e4;
}

.h-s-items {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 20px;
    width: 100%;
    white-space: nowrap;
    will-change: transform;
    user-select: none;
    padding-bottom: 20px;
    overflow-x: scroll;

}

.hs-shadow-left {
    pointer-events: none;
    opacity: 1;
    z-index: 1;
    position: absolute;
    width: 40px;
    left: 0;
    top: 50px;
    bottom: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, rgba(248, 248, 248, 1) 0%, rgba(248, 248, 248, 0) 100%);

}

.hs-shadow-right {
    pointer-events: none;
    opacity: 1;
    z-index: 1;
    position: absolute;
    width: 40px;
    right: 0;
    top: 50px;
    bottom: 20px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 1) 100%);
}

.hs-shadow-left.disabled, .hs-shadow-right.disabled {
    opacity: 0;
}

.h-s-items .item {
    overflow: hidden;
    width: 200px;
}

.h-s-items .item .image {
    height: 140px;
    background-color: #f2f3f5;
    border-bottom: 1px solid #efefef;
}

.h-s-items .item .image img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: initial;
}

.h-s-items .item .item-content {
    padding: 20px;
}

.h-s-items .item .item-content a strong {
    text-overflow: ellipsis;
    font-size: 14px;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    color: #333;
}

.h-s-items .item .item-content a:hover strong {
    color: #0092DB;
}

.h-s-items .item .item-content .item-prize {
    font-size: 1.5rem;
    display: block;
    margin: 6px 0;
}

.h-s-items .item .item-content .item-prize small {
    margin-left: 5px;
    font-size: 14px;
    color: #666;
}


.h-s-items .item .item-content .item-time-left {
    font-size: 14px;
    color: #b6b6b6;
}

.h-s-items .item .item-content .item-time-left b {
    margin-right: 5px
}

.h-s-items .item .item-content .btn {
    display: block;
}

.h-s-items .item .item-content .section-two a {
    color: black;
    display: inline-block;
}

/*-------- Lot cart */

.s-item-c {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    grid-gap: 20px;
    padding: 20px 0;
}

.s-item-c .item {
    position: relative;
}

.s-item-c .item .lot-images {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    padding: 0 16px;
}

.s-item-c .item .lot-images .item {
    display: flex;
    align-items: center;
    overflow: hidden;
}

.s-item-c .item .lot-images img {
    aspect-ratio: 1 / 1;
    width: 100%;
    object-fit: contain;
}

.item-specs {
    display: flex;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    padding: 16px;
    justify-content: space-around;
}

.item-specs > div {
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 1.3;
    font-size: 0.8rem;
    opacity: 0.6;
}

.s-item-c .item .item-content {
}

.s-item-c .section-one {
    padding: 24px 16px;
    text-align: center;
    border-bottom: 1px solid #efefef;
    background-color: #fafafa;
}

.s-item-c .section-one strong {
    font-size: 18px;
    margin-bottom: 12px;
}

.s-item-c .item .item-content .section-two {
    padding: 24px 16px;
    display: flex;
    text-align: center;
    justify-content: space-around;
}

.s-item-c .item .item-content .section-two .current-bid {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 16px;
    gap: 6px;
}

.s-item-c .item .item-content .section-two .current-bid .current-price-text {
    font-size: 2rem;
}

.s-item-c .item .item-content .section-two .bts {
    display: flex;
    gap: 16px;
}

/*-------- end lot Cart*/


.s-item-c .item .item-content a {
    display: block;
    padding: 8px 0;
}

.s-item-c .item .item-content a strong {
    font-size: 18px;
}

.s-item-c .item .item-content a strong, .s-item-c .item .item-content a p {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    color: #333;
}

.s-item-c .item .item-content a p {
    margin: 0;
}


.s-item-c.list-view {

    display: flex;
    flex-direction: column;
    min-width: 100%;
    margin: 0 auto;
}


.s-item-c .lot-by {
    display: inline-block;
}

.s-item-c .item .item-content .lot-by a {
    color: #666;
    margin: 0;
    padding: 0 !important;
    display: inline-block;

}

.s-item-c .item .item-content .lot-by a:hover {
    color: #0092DB;
}

.s-item-c .lot-by a:hover {
    color: #0092DB;
}

.s-item-c .lot-info {
    margin-top: 12px;
    color: #666;
}

.s-item-c .lot-info small {
    margin-right: 12px;
}

.s-item-c .lot-info .estimated-price {
    display: block;
    margin-top: 12px;
}

.s-item-c .lot-info small i,
.s-item-c .lot-info small strong {
    margin-right: 3px;
    font-style: normal;

}

.s-item-c .lot-info .link {
    cursor: pointer;
}

.s-item-c .lot-info .link:hover {
    color: #000;
}

.s-item-c .lot-info .link.selected i {
    color: #0092DB;
}

.list-view .item {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    margin-bottom: 10px;
    max-width: 750px;
    width: 100%;
}


.list-view .item .item-content {
    width: 100%;
    border-left: 1px solid #efefef;
    display: flex;
}

.list-view .item .item-content a strong, .list-view .item .item-content a p {
    white-space: normal;
    max-width: 100%;
}

.list-view .item .image {
    width: 200px;
    height: 200px !important;
    flex-shrink: 0;
    background-color: transparent;
    border: none;
}

.list-view .item .item-content .input-group {
    margin: 8px 0;
    justify-content: center;
}

.list-view .section-one {
    border-bottom: none;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-view .item .item-content .section-two {
    text-align: center;
    margin-left: auto;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.list-view .item .item-content .section-two .bts {
    display: flex;
    flex-direction: column-reverse;
}

.list-view .item .lot-images {
    max-width: 300px;
}

.list-view .lot-info {
    grid-column: 1 / 2;
    grid-row: 2/-1;
    margin: 0;
}

.list-view .item .item-content .item-prize .pey-stat {
    margin: 0;
    display: table;
}

.list-view .item .item-specs {
    display: none;
}

.pagination.mod-1 {
    display: inline-block;
}

.pagination.mod-2 {
    display: none;
}

.pagination {
    display: flex;
    background: #fff;
    position: sticky;
    bottom: 0;
    margin-top: 70px;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    border: 1px solid #dfe0e4;
    border-radius: 4px;
    z-index: 2;

}

.pagination-inner {
    width: fit-content;

    margin: 0 auto;
}

.pagination a {
    display: block;
    text-decoration: none;
    padding: 8px 16px;
    color: #fff;
}

.pagination select {
    font-size: 16px;
    width: auto;
    padding: 6px 22px 6px 16px;
}

.pagination a, .pagination span {
    border-color: #ddd;
    color: #666;
    background: #fff;
}

.pagination a:hover {
    color: #0092DB;
}

.page-select {
    background-color: #fff;
}

/*--------------------List end--------------------*/

.fix-rady {
    position: fixed;
    width: inherit;
    height: calc(100vh - 70px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.fix-rady:hover {
    overflow-y: auto;
}

.white-box {
    background-color: #fff;
    border: 1px solid;
    border-color: #efefef #dfe0e4 #dfe0e4 #efefef;
    border-radius: 4px;
    content: '';
}

.s-c-l .white-box .item {
    cursor: pointer;
    padding: 20px;
    border-bottom: 1px solid #cdcdcd;
}

.s-c-l .white-box .item.select {
    background-color: #0092DB;
    color: #fff !important;
}

.s-c-l .white-box .item:hover {
    color: #0092DB;
}

.s-c-l .l-m-h {
    width: inherit;
    background-color: #f4f4f4;
    font-weight: bold;
    z-index: 2;
}

.s-c-l .l-m-h a {
    color: #666;
    padding: 20px 10px 16px 20px;
    display: flex;
}

.s-c-l .l-m-h a:hover {
    color: #000;
}

.s-c-l .l-m-h a i {
    margin-right: 13px;
}

.s-c-l .left-menu-spacer {
    content: "";
    height: 62px;
}

.s-c-l .home-menu a {
    font-size: 1.2rem;
}

.s-c-l .left-menu-section a {
    display: block;
    padding: 10px 20px 10px 20px;
    color: #666
}

.s-c-l .left-menu-section p {
    padding: 10px 20px 10px 20px;
    color: #666
}

.s-c-l .left-menu-section.hide-ready {
    padding: 0;
}

.s-c-l .left-menu-section .about-menu a {
    padding: 4px 0 4px 20px;
    opacity: 0.8;
}

.s-c-l .left-menu-section {
    border-top: 1px solid #e8e8e8;
    padding: 8px 0;
}

.s-c-l .left-menu-section:first-of-type .about-menu {
    padding: 8px 0;
}

.s-c-l .left-menu-section:first-of-type small {
    font-size: 16px;
}

.s-c-l .left-menu-section:first-of-type a {
    padding: 10px 20px 10px 20px !important;
}

.s-c-l .left-menu-section.scroll{ 
    overflow-y: scroll;
    max-height: 30vh;
}
.s-c-l .left-menu-section .search {
    position: sticky;
    top: 0;
    margin: 0 1rem;
    display: flex;
}
.s-c-l .left-menu-section .search-c input{
    border-right: none;
} 
.s-c-l .left-menu-section .search:has(.btn.hide) input[type="search"] {
  
    border-right: 1px solid #ccc;
    border-radius: 6px;
}
.hide{
    display: none !important;
}
.s-c-l .left-menu-section .search-c i {
    margin-right: 0;
}
.hrp {
    margin: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.hrp:hover:before, .hide-ready.open .hrp:hover:before {
    opacity: 1;
}

.hrp:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f067";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    margin-right: 6px;
    opacity: 0.6;
}

.hide-ready.open .hrp:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f068";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-size: 12px;
    margin-right: 6px;
    opacity: 0.6;
}

.s-c-l .left-menu-section .custom-radio, .s-c-l .left-menu-section .custom-checkbox {
    font-size: 14px;
    margin-bottom: 6px;
}

.s-c-l .left-menu-section.hide-ready .options {
    padding: 0px 20px 10px 32px;
    display: none;
}

.s-c-l .left-menu-section.hide-ready.open .options {
    display: block;
}

.s-c-l .left-menu-section i {
    margin-right: 17px;
    font-size: 1rem;
}

.s-c-l .left-menu-section a:hover {
    color: #000;
    background-color: #ececec;
}

.s-c-l .filter .item span {
    margin-left: 10px;
    font-size: 14px;
}


.s-c-l-i {
    margin: 0 6px 0 6px;
}


.n-menu-c, .b-menu-c, .s-menu-c, .u-menu-c, .messages-c {
    transition: all 0.3s cubic-bezier(.39, .59, .56, .97);
    height: 100%;
    background-color: #fff;
    width: 350px;
    max-width: 80%;
    position: fixed;
    right: -350px;
    top: 0;
    z-index: 12;
    display: flex;
    flex-direction: column;
}

.u-m-open, .n-m-open, .b-m-open, .messages-open {
    overflow: hidden;
    padding-right: 12px;
}

.u-m-open .s-w:before, .n-m-open .s-w:before, .b-m-open .s-w:before, .map-open .s-w:before, .loader .s-w:before, .messages-open .s-w:before {
    width: 100%;
    height: 100%;
    opacity: 1;
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.messages-c {
    overflow: hidden;
}

.messages-open .messages-c {
    right: 0;
    overflow: hidden;
}

.u-m-open .u-menu-c {
    right: 0;
}

.n-m-open .n-menu-c {
    right: 0;
}

.b-m-open .b-menu-c {
    right: 0;
}


.loader .loader-animation .l-a-c {
    width: 100px;
    margin: 0 auto;
}

.s-m-open .s-menu-c {
    left: 0;
}

.map-open .map-c {
    display: block;
}

.map-c {
    display: none;
    width: 600px;
    top: 100px;
    bottom: 100px;
    position: fixed;
    z-index: 12;
    left: 50%;
    transform: translate(-50%, 0);
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.map-c-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.g-map-container {
    background-color: #000;
    flex: 1 1 0;
}

.map-footer {
    padding: 20px 40px;
}

.map-footer form {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.map-footer button {
    margin-left: auto;
}

#ex1Slider .slider-selection {
    background: #BABABA;
}

#ex1Slider:hover .tooltip {
    opacity: 1;
}

.tooltip-inner::selection {
    background: #000;
    color: #fff;
}

.tooltip-inner::-moz-selection {
    background: #000;
    color: #fff;
}

.u-full-name-c {
    padding: 20px;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
}

.u-full-name-c:hover strong {
    color: #0092DB;
}

.u-full-name-c .u-image {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin: 0 10px 0 0;
    flex-shrink: 0;
}

.u-full-name-c p {
    font-size: 14px;
    margin: 0;
}

.u-image-name-c {
    background-color: #0092DB;
    padding: 20px;
    text-align: center;
    align-content: center;
}

.u-image-name-c strong {
    padding: 6px 0 0 0;
    color: #fff;
    display: block;
    font-size: 20px;
}

.u-image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #fff;
    position: relative;
}

.u-image:hover .u-i-dg {
    display: flex;
    text-align: center;
}

.u-menu-c .u-i-dg {
    display: none !important;
}

.u-i-dg {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 2;
}

.u-i-dg input {
    margin: 0 auto;
    padding: 0;
    width: auto;
    height: auto;
}

.u-i-dg p {
    background-color: #000;
    color: #fff;
    font-size: 0.7rem;
    border-radius: 4px;
    padding: 4px 8px;
    margin: 0;
}

.u-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.u-menu-content {
    padding: 40px;
}

.u-menu-content ul {
    padding: 0;
    margin: 0;
    list-style: none outside none;
}

.u-menu-content ul li a {
    color: #333;
    padding: 8px 0;
    display: block;
}

.u-menu-content ul li a i {
    margin-right: 10px;
    color: #a7a7a7;
}

.u-menu-content ul li a:hover, .u-menu-content ul li a:hover i {
    color: #0092DB;
}

.n-menu-header {
    padding: 20px 40px;
    background-color: #0092DB;
    color: #fff;
    text-align: center;
}

.n-menu-header strong {
    display: block;
}

.n-menu-header i {
    font-size: 1.6rem;
}

.basket-c {
}

.basket-del-btn {
    margin-left: auto;
    padding: 12px;
    cursor: pointer;
    color: #ccc;
}

.basket-del-btn:hover {
    color: #0092DB;
}

.basket-c .basket-item-price {
    font-weight: bold;

}

.basket-c .item {
    display: flex;
    border-bottom: 1px solid #efefef;
}

.basket-c .item a {

    padding: 10px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    color: #333;
}

.basket-c .item:hover {
    background-color: #E6F8FF;
}

.basket-c .item .u-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin: 0 10px 0 0;
    border-radius: 6px;
}

.basket-c .item .item-content {
    font-size: 14px;
    line-height: 1rem;
}

.basket-c .item .item-content p {
    margin-bottom: 4px;
    margin-top: 0;
}

.basket-c .item .item-content small {
    color: #A0A0A0;
    display: block;
}

.go-basket-btn {
    background-color: #fff;
    padding: 12px 0;
    text-align: center;
    position: sticky;
    bottom: 0;
    border-top: 1px solid #ccc;

}

.go-basket-btn p {
    margin-top: 0;
    margin-bottom: 6px;
}

.go-basket-btn a {
    color: #fff;
    display: inline-block;
}

.go-basket-btn a:hover {
    color: #fff;
}

.message-container {
    position: relative;
    display: flex;
    height: 100%;
}

.detail .message-container {
    left: -100%;
}

.detail .n-menu-header {
    display: none;
}

.message-container .left {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.message-container .left .item {
    border-bottom: 1px solid #efefef;
    padding: 10px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    color: #333;
}

.message-container .left .item.new {
    background-color: #ebf8ff;
}

.message-container .left .item:hover {
    background-color: #E6F8FF;
}

.message-container .left .item .u-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin: 0 10px 0 0;
}

.message-container .left .item .item-content {
    font-size: 14px;
    line-height: 1rem;
    max-width: 100%;
    overflow: hidden;
}

.message-container .left .item .item-content p {
    margin-bottom: 4px;
    margin-top: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.message-container .left .item .item-content small {
    color: #A0A0A0;
    display: block;
}

.message-container .right {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.message-container .right .rh {
    background-color: #efefef;
    display: flex;
    padding: 8px 0;
    align-items: center;

}

.message-container .right .rh i {
    padding: 16px;
    font-size: 20px;
    cursor: pointer;

}

.message-container .right .rh i:hover {
    color: #0074A6;
}

.message-container .right .rh .u-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin: 0 10px 0 0;
}

.message-container .right .mrln {
    padding: 16px;
}

.message-container .right .mrln ul li {
    padding: 4px 8px;
    border-radius: 6px;
    background-color: #efefef;
    width: fit-content;
    max-width: 80%;
    margin: 8px 0;
}

.message-container .right .mrln .my-message {
    margin-left: auto;
    background-color: #d7f2ff;
}

.message-container .right .right-mic {
    position: sticky;
    bottom: 0;
    border-top: 1px solid #ccc;
    background-color: #efefef;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message-container .right .right-mic .send-message {
    position: absolute;
    right: 16px;
    padding: 16px;
    cursor: pointer;
    color: #0092DB;
    opacity: 0.6;
    font-size: 24px;
}

.message-container .right .right-mic .send-message:hover {
    opacity: 1;
}

.message-container .right .right-mic textarea {
    width: 100%;
    background-color: #fff;
    padding-right: 30px;
}

.notification-c {
    position: relative;
}

.notification-c .item a {
    border-bottom: 1px solid #efefef;
    padding: 10px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
    color: #333;
}

.notification-c .item:hover {
    background-color: #E6F8FF;
}

.notification-c .item .u-image {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin: 0 10px 0 0;
}

.notification-c .item .item-content {
    font-size: 14px;
    line-height: 1rem;
}

.notification-c .item .item-content p {
    margin-bottom: 4px;
    margin-top: 0;
}

.notification-c .item .item-content small {
    color: #A0A0A0;
    display: block;
}

.s-menu-content {
    padding: 40px 0;
    background-image: url(m-top-bg.png);
    background-repeat: repeat-x;
}

.s-menu-content ul {
    padding: 0;
    margin: 0;
    list-style: none outside none;
}

.s-menu-content ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.s-menu-content ul li a {
    color: #666;
    padding: 8px 20px 8px 40px;
    display: block;
    font-weight: bold;
}

.s-menu-content ul li a:hover {
    background-color: #f8f8f8;
}

.sub-contents {
    margin: 0 auto;
    max-width: 750px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
}

.sub-contents .u-f-header {
    background-color: #f4f4f4;
    color: #333;
}

.sub-contents .u-f-form {
    max-width: 450px;
}

.sub-contents .inner {
    padding: 40px;
}

.rating-container {
    margin: 16px 0;
}

.rating {
    display: flex;
}

.rating i {
    margin-right: 10px;
    font-style: normal;
}

.u-r-f-s {
    max-width: 350px;
}

.u-r-f-s-icons::before {
    font-family: "Font Awesome 5 Free";
    content: "\f004";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin: 0 6px;
    opacity: 0.8;
    font-size: 12px;
    font-weight: 400;
    display: block;
    cursor: pointer;
    font-size: 32px;
    color: #0092DB;
}

.u-r-f-s-icons.selected::before {
    content: "\f004";
    font-weight: 900;
}

.user-forms {
    margin: 0 auto;
    max-width: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.user-forms a {
    color: #0092DB;
}

.user-forms a:hover {
    text-decoration: underline;
}

.u-f-header {
    background-color: #0092DB;
    text-align: center;
    padding: 40px;
    color: #fff;
}

.u-f-header a {
    color: #fff;
    text-decoration: underline;
}

.u-f-header .u-image {
    width: 140px;
    height: 140px;
    cursor: pointer;
}

.u-f-header .u-image input {
    display: none;
}

.u-f-header i {
    font-size: 24px;
    padding-bottom: 8px;
}

.u-f-header p {
    margin: 0 0 0 0;
    font-size: 20px;
    font-weight: bold;
}

.u-f-form {
    padding: 40px;
}

.u-f-form .text-muted {
    font-size: 14px;
    margin-left: 10px;
}

.u-f-form .checkbox {
    text-align: center;
}

.u-f-form .n-m-a {
    margin: 40px 0 0 0;
    display: block;
    text-align: center;
}

.form-signin input {
    margin-bottom: 16px;
}

.accept-c {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

.custom-checkbox label {
    font-size: 14px;
}

.mail-check svg {
    color: green;
    margin-right: 10px;
    font-size: 1.4rem;
}

.mail-check, .mail-exclamation {
    margin-bottom: 20px;
}

.mail-exclamation svg {
    color: red;
    margin-right: 10px;
    font-size: 1.4rem;
}

.mail-exclamation span {
    font-size: 14px;
    color: #666;
    display: inline-block;
    margin-left: 30px;
}

.b-content-c {
    margin: 0 auto;
    width: 100%;
    max-width: 650px;
    margin-bottom: 40px;
}

.b-content-c .u-f-header {
    padding: 16px;
    position: sticky;
    position: -webkit-sticky;
    top: 70px;
    z-index: 1;
}

.s-content {
    padding: 40px;
}

.add-category-container {
    display: flex;
    flex-direction: row;
    overflow-y: auto;
    padding: 6px 6px 20px 6px;
}

.add-category-container .item {
    width: 200px;
    margin-right: 20px;
    flex-shrink: 0
}

.add-category-container .item select {
    width: 100%;
    outline: 0;
}

.add-category-container .item select option {
    font-size: 12px;
    outline: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.has-error input {
    border-color: red !important;
}

.has-error label {
    color: red !important;
}

.has-error input, .has-error select, .has-error textarea {
    border-color: red;
}

/*sortable start*/

.selected-images {

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

}

.selected-images .add-photo {
    padding: 0 6px;
    color: #ccc;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.u-f-form .selected-images .add-photo {
    width: 120px;
    height: 120px;
    text-align: center;
    background-color: #f2f3f5;
    border-radius: 4px;
    font-size: 22px;
}

.selected-images .add-photo:hover {
    color: #0092DB;
}

.sortable-drag {
    opacity: 0 !important;
}

.selected-images .item {
    cursor: pointer;
    border-radius: 2px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 1px solid transparent;
    margin: 0 2px 2px 0;
}

.u-f-form .selected-images .item {
    width: 120px;
    height: 120px;
    background-color: #f2f3f5;
    position: relative;
}

.selected-images .item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.selected-images .item:hover {
    border: 1px solid rgba(0, 146, 219, 0.315) !important;
}

.selected-images .item:hover .js-remove {
    display: block;
}

.drag-start .js-remove {
    display: none;
}

.drag-start.item {
    border: 1px solid rgba(0, 146, 219, 0.315) !important;
}

.js-remove {
    position: absolute;
    z-index: 4;
    top: -12px;
    right: -12px;
    display: none;
    cursor: pointer;

    font-size: 20px;
    border-radius: 999px;
    background-color: #fff;
    color: rgba(0, 164, 232, 0.4);
}

.js-remove i {
    margin: 0;
    padding: 0;
}

.js-remove:hover {
    color: red;
}

/*sortable end*/

.s-content form section {
    margin-bottom: 40px;
}

.s-content form section strong {
    margin-bottom: 1rem;
    display: block;
}

.s-content #multi {
    padding-left: 4px
}

.s-content .add-photo-container {
    display: flex;
    flex-direction: row;
}

.s-content .add-photo-but {
    width: 94px;
    height: 94px;
    top: 0;
    left: 0;
    background-color: #0092DB;
    border: 5px solid #fff;
    color: #fff;
    cursor: pointer;
    text-align: center;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.s-content .add-photo-but:hover {
    background-color: #0074A6;
}

.s-content .add-photo-but i {
    font-size: 2rem;
}

.s-c-r.sub {
    margin: 0;
}

.sub-header {
    background-color: #0092DB;
    color: #fff;
    padding: 70px;
    text-align: center;
}

.sub-header .others-view p {
    margin: 0;
}

.sub-header .others-view h1 {
    font-size: 1.7rem;
    margin-top: 10px;
    margin-bottom: 0;
    display: block;
}

.s-c-r.sub .s-item-c {
    padding: 20px 20px 70px 20px;
}

.u-f-header .u-image-name-c {
    padding: 0;
}

.u-f-header .u-image-name-c .u-image .u-i-dg p {
    font-size: 14px;
}

.u-f-header .u-image-name-c strong {
    font-size: 22px;
}


.share {
    margin-left: 20px;
}

.share span {
    background-color: #fff;
    color: #333;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 6px;
    font-size: 0.7em;
}

.share a {
    text-decoration: none;
    font-size: 0.7em;
    padding: 5px;
    color: #666;
}

.share a:hover {
    color: #0092DB
}

.share a i {
    font-size: 1.2em !important;
    margin-right: 5px;
}

.share .arrow_box {
    background: #fff;
    border: 1px solid #dfe0e4;
}

.share .arrow_box:after, .arrow_box:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.share .arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-left-color: #fff;
    border-width: 6px;
    margin-top: -6px;
}

.share .arrow_box:before {
    border-color: rgba(223, 224, 228, 0);
    border-left-color: #dfe0e4;
    border-width: 7px;
    margin-top: -7px;
}

.h-section {
    margin-bottom: 40px;
}

.h-section-title {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.h-section-title > p:first-of-type {
    font-weight: bold;
    color: #666
}


.breadcrumbs {
    list-style: outside none none;
    margin-bottom: 0;
    padding: 7px 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.breadcrumbs li {
    flex-shrink: 0;
    font-size: 14px;
    max-width: 140px;
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    overflow: hidden;
}

.breadcrumbs li a {
    color: #999;
    text-decoration: none;
}

.breadcrumbs li a:hover {
    color: #666;
}

.breadcrumbs li + li:before {
    content: "›";
    padding: 2px 5px 0 5px;
    color: #cccccc;
}

/*---------------------basket----------------------*/

.basket-section + .basket-section {
    border-top: 3px solid #efefef
}

.basket-lots-container {
    display: flex;
    flex-direction: column;
}

.basket-lots-container .item {
    display: flex;
    flex-direction: row;
    /*border-bottom: 1px solid #efefef;*/
}

.basket-lots-container .item + .item {
    border-top: 1px solid #efefef;
    padding-top: 14px;
    margin-top: 14px;
}

.basket-lots-container .img-container {
    width: 80px;
    height: 80px;
    background-color: #efefef;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.basket-lots-container .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: initial;
}

.basket-lots-container .item .info {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.basket-lots-container .item .info .p-name {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 4px;
}

.basket-lots-container .item .info .p-name:hover {
    color: #000;
}

.basket-lots-container .item .info .saller-name {
    font-size: 14px;
}

.basket-lots-container .item .info small {
    margin-top: 6px;
}

.basket-lots-container .item .info a span {
    color: #666;
    margin-right: 6px;
}

.basket-lots-container .item .item-options {
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
    padding-left: 30px;
}

.basket-lots-container .item .item-options p {
    margin: 0;
    font-weight: bold;
}

.small-a-but {
    font-size: 14px;
    padding: 2px 6px;
    background-color: #efefef;
    color: #666;
    border-radius: 4px;
    margin-left: auto;
    margin-top: 6px;
    cursor: pointer;
}

.small-a-but:hover {
    background-color: #666;
    color: #fff;
}

.basket-section h3 {
    margin-top: 0;
}

.basket-section form {
    margin-top: 20px;
}


.basket-section .saved-adress {
    padding: 16px 16px 16px 24px;
}

.adress-radios .item {
    margin-bottom: 16px;
}

.adress-radios .radio {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
    outline: none;
}

.adress-radios .radio:focus {
    outline: none !important;
    box-shadow: none;
    outline-color: transparent;
}

.adress-radios input[type=radio] {
    display: block;
    position: absolute;
}

.adress-radios input[type=radio]:checked + .radio {
    background-color: #ceefff;
}

.add-adress-btn {
    margin-bottom: 16px;
}

.adress-section.new-adress .add-adress-btn {
    display: none;
}

.new-adress-container {
    display: none;
}

.adress-section.new-adress .new-adress-container {
    display: block;
}

.basket-section input, .basket-section select, .basket-section textarea {
    display: block;
    max-width: 400px;
}

.basket-section .last-date {
    display: flex;
}

.basket-section .last-date input {
    margin-right: 16px;
    max-width: 80px;
}

.cancel-adress {
    border-color: transparent;
    background-color: transparent;
    color: #ccc;
}

.adress-btns {
    display: flex;
    flex-direction: row;
    margin-bottom: 16px;
}

.adress-btns .btn {
    margin-right: 16px;
}

.icon-cc {
    display: none;
}

.icon-cc i {
    font-size: 28px;
    color: #666;
}

.icon-cc.active {
    display: block;
}

.card-number-input {
    position: relative;
    max-width: 400px;
}

.card-icons {
    position: absolute;
    right: 8px;
    top: 4px;
}

.ccv-info {
    color: #666;
    margin-left: 6px;
}

.row-input input {
    display: inline-block;
    width: auto;
}

/* multi-product */

.multi-product-s-c {
}

.multi-product-container {
    display: flex;
    flex-direction: column;
}

.mp-options {
    padding: 12px 10px 10px 10px;
    display: flex;
    flex-direction: row;
    position: sticky;
    background-color: #f8f8f8;
    z-index: 2;
    top: 70px;
    height: 50px;
}

.mp-options .item {
    opacity: 0.2;
}

.mp-options.active .item {
    opacity: 1 !important;
}

.mp-options .item {
    cursor: pointer;
    border-radius: 6px;
    padding: 4px 10px;
    margin-right: 16px;
    color: #999;
}

.mp-options .item:hover {
    background-color: #ececec;
    color: #333
}

.mp-options .item i {
    margin-right: 8px;
}

.mp-header-items {
    display: flex;
    flex-direction: row;
    background-color: #0092DB;
    border-bottom: 1px solid #77c7ef;
    color: #fff;
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 9px -2px rgba(0, 0, 0, 0.0)
}

.mp-shadow {
    box-shadow: 0px 8px 9px -2px rgba(0, 0, 0, 0.2)
}

.mp-table {
    width: 100%;
    table-layout: fixed;
}

.mp-table tr {
    border-bottom: 1px solid #ddd;
}

.mp-table tr:nth-child(even) {
    background-color: #f1f1f1;
}

.mp-header {

}

.mp-table thead {
    border-radius: 8px 8px 0 0;
    transition: all 0.3s ease;
    box-shadow: 0px 8px 9px -2px rgba(0, 0, 0, 0.0);
    border: 1px solid transparent;
    border-top: none;
}

.mp-table thead th {
    white-space: nowrap;
    position: sticky;
    top: 120px;
    z-index: 1;
    color: #fff;
    background-color: #0092DB;
    vertical-align: middle;
}


.mp-header-table {
    width: 100%;
    table-layout: fixed;
}


.mp-header-table .c-item:first-of-type {
    border: solid transparent;
    border-width: 0px 0px 0px 1px;
}

.c-item {
    padding: 10px 0 10px 10px;
    vertical-align: top;
    border: solid #ddd;
    border-width: 0px 1px 0px 1px;
}

.c-item.r1 {
    width: 34px;
    text-align: center;
}

.c-item.r2 {
    width: 200px;
}

.c-item.r3 {
    width: 200px;
}

.c-item.r4 {
    width: 100px;
}

.c-item.r5 {
    width: 100px;
}

.c-item.r6 {
    width: 150px;
}

.c-item.r7 {
    width: 150px;
}

.white-bg {
    background-color: white;
}

.mp-table tbody .selected {
    background-color: #f0faff !important;
}

.mp-table textarea {
    border: 0 none white;
    overflow: hidden;
    padding: 0;
    outline: none;
    background-color: transparent;
    resize: none;
    display: block;
    width: 100%;
    box-shadow: none;
    outline: none;
}

.mp-table textarea:focus {
    outline: none;
}

.mp-table tr .c-item {

}

.mp-table tr .c-item > div {
    max-height: 170px;
    overflow-y: auto;
    overflow-x: hidden;
}

.mp-table tr .c-item .lot-detail {
    font-weight: 300;
}

.mp-table tr .c-item .lot-name a {
    color: #333;
}

.mp-table tr .c-item .lot-name a:hover {
    cursor: pointer;
}

.mp-table tr .c-item .lot-name a:hover:before {
    content: "Güncelle: ";
    display: block;
    font-size: 14px;
    color: #0074A6;
}

.mp-table tr .c-item > div small {
    display: block;
    color: #666;
}

.mp-table tr .c-item:first-of-type {
    cursor: pointer;
}

.mp-table tr .c-item:first-of-type input {
    pointer-events: none;
}

.mp-header-table .deselect-all {
    display: none;
    cursor: pointer;
}

.mp-header-table .selected {
    display: none;
    cursor: pointer;
}

.mp-header-table .select-box {
    display: block;
    cursor: pointer;
}

.categorys-container {
    display: none;
    position: absolute;
    background-color: #fff;
    border-radius: 6px;
    width: 100%;
    max-width: 300px;
    flex-direction: column;
    z-index: 99;

    transform: translate(-50%, 0);
    box-shadow: 0 0 24px rgba(0, 0, 0, .2);
    overflow: hidden;
}

.categorys-container .categorys {
    height: 100%;
    overflow: hidden;
}

.categorys-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 16px;
    border-top: 1px solid #efefef;
    background-color: #fff;
    z-index: 2;
}


/* end multi-product- */


/* owl theme */
.owl-theme .owl-nav {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    /* display: inline-block; */
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}


.owl-carousel button {
    outline: 0 none !important;
}

.owl-carousel .owl-nav {
    position: static;
    height: 0;
    bottom: 0;
    margin: 0;
}

.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    width: 100%;
    font-size: 30px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-nav button {
    transition: all 0.3s ease;
    opacity: 0.6;
}

.owl-nav button:hover {
    opacity: 1;
}

.owl-nav i {
    font-size: 26px;
    color: white;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);
}

.lot-carousel,
.lot-carousel .owl-stage,
.lot-carousel .owl-stage-outer,
.lot-carousel .item,
.lot-carousel .owl-item {
    width: 100%;
    height: 100%;
}

.lot-carousel .owl-dots {
    position: absolute;
    bottom: 0;
    width: 100%;
}


.list-items-container .s-item-c .owl-dots span {
    width: 6px !important;
    height: 6px !important;
    margin: 2px 2px !important;
}

.list-items-container .s-item-c .item .image:hover .owl-dots span {
    width: 10px !important;
    height: 10px !important;
    margin: 6px 6px !important;
}

.fixed-owl {
    background-color: black;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    z-index: 99 !important;
}

/* end owl theme */


.home-slider-container {
    width: 100%;
}

.home-carousel {
    margin-bottom: 40px;
    width: 100%;
}

.home-carousel .owl-dots {
    display: none;
}

.home-carousel .owl-stage-outer {
    border-radius: 6px !important;

}

.mobil-search-icon {
    display: none;
}

.user-profile-c {
    max-width: 920px;
    margin: 0 auto;

}

.profile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile-header .image {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 99px;
    margin-right: 26px;
    flex-shrink: 0;
    border: 1px solid #ccc
}

.profile-header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header h1 {
    margin: 0;
}

.profile-header .user-name {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.profile-header .user-name button, .profile-header .user-name a {
    margin-left: 16px;
    color: #333;
}

.profile-header .user-name small {
    color: #0092DB;
}

.profile-header .user-info {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.profile-header .user-info > div {
    margin-right: 30px;
}

.profile-header .user-info i {
    color: #666;
}

.profile-header .user-info strong {
    margin: 0 6px;
}

.profile-header .user-info span {
    color: #999;
}

.profile-header .short-info {
    max-width: 450px;
}

.user-activities {
    padding-top: 40px;
}

.activities-header {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.activities-header > a {
    margin-bottom: -2px;
    padding: 8px 16px;
    cursor: pointer;
    color: #ccc;
    white-space: nowrap;
}

.activities-header > a:hover {
    color: #000;
    border-bottom: 3px solid #ccc;
}

.activities-header .selected {
    border-bottom: 3px solid #0092DB !important;
    color: #000;
}

.activities-content .events {
    background-color: white;
}

.activities-content .followers {
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 20px;
}

.activities-content .followers .item {
    padding: 8px;
    background-color: white;
    border: 1px solid #efefef;
    display: flex;
    align-items: center;
    border-radius: 6px;
}

.activities-content .followers .item .image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 99px;
    margin-right: 16px;
    flex-shrink: 0;
    border: 1px solid #ccc;
}

.activities-content .followers .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activities-content .followers .item a {
    margin: 0 0 4px 0;
    color: #333;
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
}

.activities-content .followers .item small {
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    color: #999;
    display: block;
}

.activities-content .followers .item a:hover {
    color: #0092DB;
}

.activities-content .followers .item .btn {
    font-size: 12px;
    padding: 4px 8px;
    margin-left: auto;

}

.activities-content .followers .item .btn.remove-follow {
    background-color: #efefef;
}

.activities-content .followers .item .btn.add-follow {
    background-color: #0092DB;
    color: white;
}

#uploadimageModal {
    display: none;
}

#upload_image {
    display: none;
}

.image-crop-buttons {
    display: flex;
    justify-content: space-evenly;
}

.image-crop-buttons .dismiss {
    color: white;
    opacity: 0.5;
}

.image-crop-buttons .dismiss:hover {
    opacity: 1;
}

.image-crop-buttons .btn-success:hover {
    background-color: #0092DB;
    color: white;
}

.convert::before {
    font-family: "Font Awesome 5 Free";
    content: "\f362";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    margin: 0 6px;
    opacity: 0.8;
    font-size: 12px;
    font-weight: 900;
}


.open-price {
    margin-top: 0;
    margin-bottom: 6px;
}

.open-price.ops {
    font-size: 12px;
    margin: 0;
    white-space: nowrap;
}

.buy-now-price {
    white-space: nowrap;
    color: #666666;
    cursor: pointer;
    border-radius: 4px;
    display: inline-block;
    padding: 4px 8px;
    margin: 4px 0;
    border: 1px solid #e8e8e8;
}

.buy-now-price strong {
    display: block;
}

.buy-now-price:hover {
    background-color: #0092DB;
    color: #fff;
    border-color: #0092DB;
}

.user-bid {
    margin: 0;
    display: none;
}

.red-item .user-bid, .green-item .user-bid {
    display: block !important;
    margin-bottom: 4px;
    opacity: 0.8;
}

.red-item .losing-text, .green-item .winning-text {
    display: block !important;
    margin-top: 4px;
    opacity: 0.8;
}

.winning-user {
    display: block !important;
}

.winning-user a {
    color: #666;
    text-decoration: none;
    padding: 0 !important;
}

.winning-user a:hover {
    text-decoration: underline;
}

.red-item .winning-user a, .green-item .winning-user a {
    margin-top: 4px;
    color: white;
    opacity: 0.8;
}


.lot-detail-c {
    max-width: 920px;
    margin: 0 auto;
}

.lot-detail-c .s-item-c {
    display: block;
    grid-template-columns: unset;
    grid-gap: unset;
    padding: 0;
}

.lot-detail-c .s-item-c .item .image {
    height: 400px;
}


.lot-detail-c .s-item-c .item .item-content .section-one a p {
    text-overflow: unset;
    white-space: normal;
    display: block;
    overflow: hidden;
    color: #333;
}

.lot-detail-c .s-item-c .item .item-content .section-one a strong {
    display: none;
}


.lot-detail-c .section-two {
    margin-bottom: 20px;
}

.lot-detail-c .s-item-c .lot-info small {
    margin-right: 12px;
    font-size: 16px;
}

.lot-detail-c .s-item-c .item .item-content .item-time-left {
    font-size: 16px;
}

.lot-detail-c .s-item-c .item .image:hover .owl-nav {
    display: block;
}

.lot-detail-c .s-item-c .item .item-content {
    padding-bottom: 40px;
}

.lot-detail-c .s-item-c .lot-info {
    margin-top: 40px;
}

.lot-detail-c .s-item-c .lot-by {
    display: none;
}

.lot-detail-c .breadcrumbs {
    padding-top: 0;
}

.lot-detail-c .buy-now-price {
    padding: 8px 16px;
    margin-top: 6px;
}

.lot-detail-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0 20px 0;
}

.lot-detail-header .image {
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 99px;
    margin-right: 26px;
    flex-shrink: 0;
    border: 1px solid #ccc;
}

.lot-detail-header .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lot-detail-header h1 {
    margin: 0;
}

.lot-detail-header-content a {
    color: #0092DB;
}

.lot-detail-header-content a:hover {
    text-decoration: underline;
}


.social-icons-shere a {
    font-size: 36px;
    margin: 16px;
}

.social-icons-shere a i {
    margin: 0;
}

a.facebook {
    color: #1877f2;
}

a.instagram {
    color: #c32aa3;
}

a.twitter {
    color: #1da1f2;
}

a.whatsapp {
    color: #25d366;
}

.whatsapp.m {
    display: none;
}

.whatsapp.d {
    display: inline-block;
}

.sell-completed-c a {
    color: #333;
}

.sell-completed-c a:hover {
    text-decoration: underline;
}

.sell-completed-c .item,
.sell-completed-c .sell-items-filter {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.sell-completed-c .sell-items-filter {
    display: flex;
}

.sell-completed-c .sell-items-filter .form-group {
    margin-bottom: 0;
}

.sell-completed-c .user-filter {
    max-width: 240px;
}

.sell-completed-c .user-filter-options {
    display: flex;
    margin-top: 6px;
}

.sell-completed-c .user-filter-options .a-r {
    margin-left: auto;
}

.sell-completed-c .user-filter-options .btn {
    font-size: 14px;
    padding: 4px 8px;
}

.sell-completed-c .user-filter-options i {
    margin-right: 2px;
    color: #666666;
}

.sell-completed-c .sell-options {
    max-width: 200px;
    margin-left: auto;
}

.sell-completed-c .user-filter .form-group {
    display: flex;
}

.sell-completed-c .item .date {
    padding-left: 8px;
    color: #666;
    text-shadow: 1px 1px 0px #ffffffec, 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.sell-completed-c .item .product {
    display: flex;
}

.sell-completed-c .item .product .image {
    width: 140px;
    flex-shrink: 0;
    border-right: 1px solid #efefef;
    margin-right: 16px;
}

.sell-completed-c .item .product .image > div {
    width: 140px;
    height: 140px;
}

.sell-completed-c .item .product .image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sell-completed-c .item .product .extras .form-group {
    margin-bottom: 8px;
}

.sell-completed-c .item .product .extras {
    width: 300px;
    flex-shrink: 0;
    margin-left: auto;
    padding: 16px;
    padding-top: 0;
    background-color: #f9f9f9;
}

.sell-completed-c .item .product p strong {
    margin-right: 4px;
}

.sell-completed-c .item .product .extras .k-t-b {
    display: flex;
}

.k-t-b input {
    border-radius: 4px 0 0 4px;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(27, 31, 35, .075);
}

.k-t-b button {
    border-radius: 0 4px 4px 0;
    border-left: none;
}

.sell-completed-c .item .product .extras a {
    color: #0074A6;
}


/*

.banknote-detail
 */
.banknote-detail {
display: grid;
    grid-template-areas: "variation-images info-list";
    grid-template-columns: auto;
    grid-template-rows: 85vh;
    gap: 1rem;
}

.banknote-head-details { 
    gap: .5rem;
    display: flex;
    flex-direction: column;
}

.banknote-head-details > div {
    justify-content: space-between;
    display: flex;
    gap: 1rem;
    padding: .5rem;
    background-color: #f4f4f4;
}
.banknote-info-list{
    grid-area: info-list; 
    overflow-y: scroll;
    padding-bottom: 5rem;
}
.banknote-variations {
     grid-area: variation-images;
    overflow-y: scroll;
    padding-bottom: 5rem;
}
.banknote-variations img{
    width: 100%;
}
.banknote-variations .item{
    margin-bottom: 1rem;
}
.banknote-variations .variation {
    background-color: #f4f4f4;
    padding: .5rem;
    gap: .5rem;
}

.banknote-variations .variation .desc img {
    max-height: 100px;
}

@media screen and (max-width: 1600px) {
    .events-hide-btn {
        display: block;
    }
}

@media screen and (max-width: 1200px) {

    .events-container {
        position: fixed;
        z-index: 2;
        right: 0;
    }

    .events-container .fix-rady {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
        right: 0;
    }

    .events {
        background-color: #fff;
    }

}


@media screen and (max-width: 750px) {

    .mobil-search-icon {
        display: block;
    }

    .s-m-open .s-c-r:before, .search-open .s-c-r:before {
        width: 100%;
        height: 100%;
        opacity: 1;
        z-index: 2;
        -webkit-transition: opacity 0.3s;
        -moz-transition: opacity 0.3s;
        transition: opacity 0.3s;
    }

    .s-c-l {

        position: fixed;
        z-index: 3;
        height: calc(100% - 50px);
        transition: all 0.3s ease;
        left: -300px;
    }

    .s-m-open .s-c-l {
        left: 0;
    }

    .fix-rady {
        height: calc(100% - 50px);
    }

    .events-container {
        width: 100%;
    }

    .cs {
        overflow: auto;
    }

    .login-c {
        margin-left: auto;
    }

    .search-c {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 50px;
        width: 100%;
        z-index: 2;
        background-color: white;
        padding-top: 8px;
    }

    .search-open .search-c {
        display: block;
    }

    .s-i-c {
        padding: 0 16px;
    }

    .home-auctions-container .items {
        display: flex;
        flex-direction: column;
    }

    .home-auctions-container .items .item {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .home-auctions-container .items .item .item-l img {
        margin: 0 auto;
    }

    .home-auctions-container .items .item .item-m {
        padding: 16px;
    }

    .menu-bts p {
        display: none;
    }

    .logo-c {
        display: none;
    }

    .logo-m {
        display: block;
    }

    .header {
        height: 50px;
        padding: 0;
    }

    .s-w {
        padding-top: 50px;
    }


    .u-image-name-c {
        padding: 16px;
    }

    .u-image {
        width: 70px;
        height: 70px;
    }

    .n-menu-header {
        padding: 16px 40px;
    }

    .menu-b {
        padding: 0 16px;
    }

    .menu-bts a:last-child {
        margin: 0;
        padding-right: 16px;
    }

    .s-c-r {
        padding: 16px 16px 120px 16px;
    }

    .events-header {
        padding: 10px 16px;
    }

    .events .item .item-header .item-setting {

        opacity: 1;
    }

    .breadcrumbs li {
        max-width: 70px;
        font-size: 12px;
    }

    .list-header .list-options {
        display: none;
    }


    .filters-c .item span {
        max-width: 100px;
    }

    .s-item-c .item .image {
        height: 160px;
    }

    .s-item-c .item .image:hover .lot-carousel {
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: unset;
        background-color: #f2f3f5;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.0);
        z-index: 1;
    }

    .u-f-header, .u-f-form {
        padding: 20px;
    }

    .profile-header, .profile-header .user-name {
        flex-direction: column;
        align-items: center;
    }

    .profile-header {
        text-align: center;
    }

    .profile-header .image {
        width: 70px;
        height: 70px;
        margin: 0;
    }

    .profile-header .user-name button, .profile-header .user-name a {
        margin: 16px 0;
    }

    .profile-header .user-info {
        justify-content: space-around;
    }

    .profile-header .user-info > div {
        margin: 0;
    }

    .profile-header .user-info i {
        display: block;
        margin-bottom: 6px;
    }

    .user-edit-section {
        padding: 16px;
        margin-bottom: 16px;
    }

    .lot-detail-c .s-item-c .item .image {
        height: 300px;
    }

    .lot-detail-header {
        flex-direction: column;
    }

    .lot-detail-header .image {
        margin: 0 0 8px 0;
    }

    #sell-b {
        display: none;
    }

    .activities-header {
        overflow-x: auto;
        overflow-y: hidden;
    }

    .menu-bts a.sale-now {
        order: 6;
        margin-right: 6px;
    }

    .menu-bts a.sale-now p {
        display: block;
        font-size: 10px;
    }

    .menu-bts.first p {
        font-size: 10px;
        display: block;
    }

    .pop-up-container {
        padding: 16px;
    }

    .pop-up-container.popup-video .pop-up-content {
        height: 200px;
    }

    .whatsapp.m {
        display: inline-block;
    }

    .whatsapp.d {
        display: none;
    }

    .banknote-detail{
        grid-template-columns: 1fr;
        grid-template-areas:
"variation-images" 
"info-list       ";
        grid-template-rows: unset;
    }
    .banknote-variations{
        display: flex;
        padding-bottom:unset;
        gap: 1rem;
    }
    .banknote-variations .item img{
        width: unset;
    }
    .banknote-info-list{
        width: initial;
    }
}