* {
    font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
}

html{
    background-color: #666666;
}

body{
    overflow-x: hidden;
}

figure {
    all: initial;
}

.body_img{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    margin: 0px;
    padding: 0px;
    object-fit: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    pointer-events: none;
}

.body_page{
    /* filter: drop-shadow(0px 0px 5px black); */
    position: relative;
    transform: translateX(0px);
    transition: transform 0.5s cubic-bezier(0.5, 0.6, 0.2, 1);
    background-color: #fff;
    min-height: 100vh;
    z-index:1;
}

.body_img{
    transition: left 0.5s cubic-bezier(0.5, 0.6, 0.2, 1);
    z-index:1;
}

.massage_alert_inner{
    display: inline-block;
    height:30px;
}

.massage_alert_inner marquee{
    height:100%;
}

*:focus {
    outline: none !important;
}

nav * {
    z-index: 10 !important;
}

.i_element_menu {
    display: inline-block;
    text-align: center;
    width: 40px;
}

.header_main{
    position: relative;
    top:0px;
    width: 100%;
    /* padding:5px; */
    background-color:#eee;
    border-bottom: solid 1px #444;
    z-index:1001;
}

.header_main td:nth-child(1){
    width:100%;
}

.header_main table{
    border-collapse: collapse;
}


/* SVG filter */
.sharpen {
    -webkit-filter: url(#SharpenFilter);
    filter: url(#SharpenFilter);  
}

.chat_bulle{
    position: fixed;
    right: 65px;
    bottom: 5px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-color: #00000054;
    border: solid 2px #000;
    z-index: 100;
    text-align: center;
    box-shadow: 0px 0px 15px #fff;
    cursor: pointer;
}

.chat_bulle i{
    font-size: 32px;
    color:white;    
    line-height: 42px;
}

#cat_box label{
    position: relative;
    top: 40px;
    width: 100%;
    text-align: center;
    background-color: #eee;
    padding: 10px;
}

.left_menu{
    position: fixed;
    left: 0px;
    width: 460px;
    height: 100vh;
    background-color: #666;
    display:none;
    z-index: 1;
}

.right_menu{
    position: fixed;
    right: 0px;
    width: 460px;
    height: 100vh;
    background-color: #666;
    display:none;
    z-index: 1;
}

.bkg_general{
    /* position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; */
}

.message_to_screen{
    position: fixed;
    display: inline-block;
    left:50%;
    top:-100px;
    transform: translateX(-50%);
    box-shadow: 0px 0px 15px #0004;
    background:#fff;
    border:solid 1px rgb(87, 87, 87);
    border-radius: 15px;
    padding:10px;
    animation: message_appear 4s forwards ease-in-out;
    z-index: 10000;
}

@keyframes message_appear {
    0%{
        top:-100px;
    }
    8%, 92%{
        top:2px;
    }
    100%{
        top:-100px;
    }
}

.massage_alert {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 30px;
    min-height: 20px;
    z-index: 1000000;
    width: 100%;
    background-color: #cd1111;
    color: #fff;
    white-space: nowrap;
    line-height: 0px;
    overflow: hidden;
}

p {
    margin-top: revert !important;
}

.flexnews {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content: center;
}

.flexnews_inner{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}

@media screen and (max-width: 993px) {
    .flexnews_inner {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

.title_news{
    margin-bottom: 40px;
    letter-spacing: 5px;
    font-size: 24px;
    margin-left:20px;
}

.title_news_inner, .date_news_inner, .content_news_inner{
    display: inline-block;
    vertical-align: top;
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
}

.title_news_inner{
    margin-left:20px;
    margin-right:20px;
    margin-bottom:10px;
    padding-top:5px;
    padding-bottom:5px;
    padding-left:10px;
    padding-right:10px;
    color: #fff;
    background-color: rgb(255, 0, 0) !important;
    white-space: nowrap;
}

.content_news_inner a{
    color: rgb(6, 142, 89);
    text-decoration: underline;
}

.date_news_inner{
    margin-right:20px;
    font-weight: 700;
    white-space: nowrap;
}

.content_news_inner p {
    display: block;
    padding: 0px;
    text-align: justify;
    margin-top: 0px !important;
    margin-bottom: 1em;
}

@media screen and (max-width:840px) {
    .flexnews {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        align-content: center;
    }

    .content_news_inner {
        max-height: 260px;
        overflow-y: auto;
    }
}

.content_general{
    background-color:#fff;
    max-width: 1500px;
    margin: auto;
    /* box-shadow: 0px 0px 1000px #0009; */
}

.contentPage {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 91px - 90px); */
    /* max-height: calc(100vh - 91px); */
    transition: filter 0.5s;
    overflow-x: hidden;
    background-color:#fff;
}

.contentPage_option {
    /* width: calc(100% - 250px);
    left: 250px; */
    transform: translateX(250px);
    width: calc(100% + 250px);
}

.all-items {
    display: flex;
    flex-wrap: wrap;
    min-height: 200px;
    transition: filter 0.5s;
    background-color: #fff;
}

.item-box {
    position: relative;
    width: calc((100% / 5) - 10px);
    height: 17vw;
    /* background-color: #eee; */
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
}

.item-box_option {
    width: calc(((100% - 250px) / 5) - 15px);
}

.listmode1{
    height:calc(11vw + 120px);
    background-color: #fff;
}
.listmode1 .item_picture{
    /* height:12vw; */
    object-fit: contain;
}

.mini_picture_inner {
    position: absolute;
    bottom: 0px;
}

.item_title_1{
    font-weight: 700;
    font-size: 15px;
}
.item_description_1{
    font-size: 13px;
    color:#888;
}
.item_price_1{
    color:darkblue;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    z-index:1;
}

.auction_1{
    display: inline-block;
    margin-right: 4px;
    margin-left: 4px;
    z-index:1;
}

.form_bill{
    position: relative;
    z-index: 2 !important;
    background-color: #fff;
    padding: 5px;
    box-shadow: 0px 0px 10px #0002;
}

.btns_perso {
    /* float: right; */
    text-align: right;
    z-index: 2;
    position: relative;
}

/* .option_filter {
    position: fixed;
    left: 0px;
    bottom: 0px;
    height: calc(100% - 170px);
    width: 250px;
    border-right: solid 1px #000;
    box-shadow:1px 0px 50px #0004;
    background-color: #fff;
    z-index: 10;
    overflow-x: none;
    overflow-y: auto;
    padding-left: 10px;
    padding-right: 10px;
} */

.table_option_menu{
    width: 100%;
}

.option_filter {
    position: fixed;
    z-index: 10000 !important;
    top: 0px;
    left: 0px;
    bottom: 0px;
    height: initial;
    width: 460px;
    border-right: solid 1px #000;
    box-shadow: 1px 0px 50px #0004;
    background-color: #fff;
    z-index: 10;
    overflow-x: hidden;
    overflow-y: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: none;
}

.item_price {
    position: absolute;
    right: 0px;
    padding: 10px;
    background-color: #0006;
    color: #fff;
    top: -80px;
    transition: top 0.5s;
    font-weight: 700;
    text-align: center;
    z-index:1;
}

.item-box:hover .item_price {
    top: 0px;
}

.item_title {
    position: absolute;
    left: 0px;
    width: 100%;
    padding: 10px;
    background-color: #0006;
    color: #fff;
    bottom: -50px;
    transition: bottom 0.5s;
    font-weight: 600;
}

.item-box:hover .item_title {
    bottom: 0px;
}

.sold:after {
    content: "SOLD";
    position: absolute;
    top: 50%;
    left: 0px;
    width: 100%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: #6009;
    color: #fff;
    text-align: center;
    font-weight: 900;
}

.sale {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 70px;
    height: 70px;
    background-color: #fe0;
    border-radius: 50%;
    padding: 10px;
    line-height: 25px;
    font-size: 20px;
    text-align: center;
}

.all-items-result {
    position: relative;
    padding: 5px;
    padding-left: 10px;
    font-size: 18px;
}

.next-page {
    position: relative;
    width: 100%;
    text-align: center;
    padding-bottom: 5px;
}

/* Quick view */

.preview_box {
    position: fixed;
    display:none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    height: 90%;
    max-width: 1000px;
    max-height: 600px;
    box-shadow: 0px 0px 50px #000A;
    z-index: 1001;
    /* transition: top 0.3s ease-in-out; */
}

.close_quickview {
    /* position: absolute;
    right: 5px;
    top: 5px;
    font-size: 26px;
    font-family: sans-serif;
    width: 30px;
    height: 30px;
    border: solid 1px #000;
    border-radius: 50%;
    text-align: center;
    line-height: 25px;
    cursor: pointer; */

    position: absolute;
    right: 0px;
    top: 0px;
    font-size: 40px;
    font-family: sans-serif;
    width: 40px;
    height: 40px;
    border: solid 1px #000;
    /* border-radius: 50%; */
    text-align: center;
    line-height: 31px;
    cursor: pointer;
    background-color: #fff;
}

.close_quickview:hover {
    background-color: #ddd;
}

.title_quickview {
    position: absolute;
    width: calc(100% - 40px);
    height: 40px;
    background-color: #3e3e3e;
    color: #fff;
    line-height: 40px;
    padding-left: 10px;
    border-bottom: solid 1px #ddd;
}

.button_quick_group{
    position:absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
}

.button_quick i {
    vertical-align: top !important;
}


.button_quick{
    /* width: 40px;
    height: 40px;
    padding: 10px;
    border: solid 1px gray;
    border-radius: 50%; */
    /* margin: 5px; */
    /* display: inline-block;
    cursor: pointer;
    vertical-align: text-bottom; */

    min-width: 40px;
    height: 40px;
    padding: 10px;
    border: solid 1px gray;
    border-radius: 15px;
    margin: 5px;
    display: inline-block;
    cursor: pointer;
    vertical-align: text-bottom;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.button_quick:nth-child(1):hover{
    color:lightgreen;
}
.button_quick:nth-child(2):hover{
    color:red;
}
.button_quick:nth-child(3):hover{
    color:blue;
}

.box_pictures_quickview {
    position: absolute;
    top: 40px;
    height: calc(100% - 40px);
    width: 35%;
    max-width: 350px;
    background-color: #ccc;
    display: flex;
    flex-wrap: wrap;
}

.quick_description{
    position: relative;
    display: block;
    border: solid 1px #eee;
    margin-top: 10px;
    padding: 5px;
    height: calc(100% - 215px - 100px);
    min-height:50px;
    overflow-y: auto;
    overflow-x: hidden;
}

.main_pix {
    position: relative;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: 260px;
    background-color: #fff;
}

.main_pix img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #fff;
}

.list_pix {
    /* position: absolute;
    top:10px;
    left:10px;
    width: calc(100% - 20px);
    height: 260px;
    background-color:#fff; */
    position: relative;
    top: 5px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 290px);
    background-color: #eee;
    overflow-x: hidden;
    overflow-y: auto;
    /* display:flex;
    flex-wrap: wrap; */
}

.img_temp {
    object-fit: cover;
    width: calc(50% - 10px);
    height: 40%;
    min-height: 5vw;
    position: relative;
    margin: 5px;
    cursor: pointer;
    border: solid 1px #dedede;
    background-color: #ddd;
}

.box_info_quickview {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: calc(100% - 35%);
    height: calc(100% - 40px);
    padding: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.info_tanako {
    font-size: 14px;
    color: #aaa
}

.info_title {
    font-size: 20px;
    margin-top: -5px;
    color: #000;
}

.info_tag {
    display: inline-block;
}

.info_tag a,
.info_tag a:hover,
.info_tag a:visited {
    /* text-decoration: none;
    /* color:rgb(48, 106, 255); */
    /* color: gray;
    padding-left: 10px;
    padding-right: 10px;
    border: solid 1px gray;
    border-radius: 50px;
    margin: 2px;
    line-height: 25px;
    font-size: 14px;  */
    text-decoration: none;
    color: gray;
    padding-left: 10px;
    padding-right: 10px;
    margin: 2px;
    line-height: 25px;
    font-size: 14px;
}

.info_tag a:hover {
    background-color: #eee;
    cursor: pointer;
}

.quickview_tableprice {
    margin-top: 5px;
}

.realprice {
    font-size: 30px;
    font-weight: 700;
    color: #000;
}

.item_title_design_0{
    font-size: 14px;
}

.realprice_bargain {
    font-size: 30px;
    font-weight: 700;
    color: #aaa;
    text-decoration: line-through;
}

.becomebargain {
    margin-left: 10px;
    font-weight: 900;
    font-size: 20px;
}

.bargainprice {
    font-size: 30px;
    font-weight: 700;
    color: #04368c;
}

.textbargain {
    margin-top: 5px;
    font-weight: 700;
    font-size: 12px;
    font-style: italic;
    color: grey;
    font-size:12px;
}

.textbargain font:nth-child(1){
    color: #fff;
    background-color:#f00;
    font-size:14px;
    width:max-content;
    padding-left:5px;
    padding-right:5px;
}

.convert_money, .convert_money2{
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 14px;
    color: #666;
}

.convert_money3{
    display: block;
    font-size: 12px;
    color: #fff;
}


/* btn up */
.go_up {
    position: absolute;
    bottom: 6px;
    right: 5px;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    color: #fff;
    line-height: 45px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
    mix-blend-mode: hard-light;
    box-shadow: 0px 0px 15px #fff;
    z-index:100;
}

.go_up_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background-color: #444;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    color: #fff;
    line-height: 42px;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer;
}

.search_bar {
    position: relative;
    width: 100%;
    height: 47px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ddd;
}

/* category */
.category_btn {
    position: relative;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 5px;
    /* border-radius: 50px; */
    border:none;
    /* border-bottom: solid 1px #000; */
    background-color: #fff;
}

.search_block{
    border:none;
    border-bottom: solid 1px #000;
}

.menu_option_button {
    /* position: fixed;
    width: 212px;
    background-color: #fff;
    z-index: 1; */

    position: relative;
    width: 440px;
    height: 82px;
    display: flex;
    background-color: #fff;
    z-index: 1;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
}

.category_btn:hover {
    background-color: #eee;
}

#cat_box {
    position: fixed;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    width: 90%;
    height: 90%;
    max-width: 1000px;
    max-height: 600px;
    box-shadow: 0px 0px 50px #000A;
    z-index: 1001;
    overflow-y: auto;
    /* transition: top 0.3s ease-in-out; */
}

.list_cat, .list_brand {
    position: relative;
    /* height: calc(100% - 50px); */
    width: 100%;
    top: 40px;
    padding: 10px;
    overflow: auto;
}

.subcat_title {
    display: inline-block;
    padding: 5px;
    border: solid 1px #eee;
    border-radius: 50px;
    margin: 5px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.subcat_title:hover {
    background-color: #eee;
}

div[class^='cat_title']:not(:nth-child(1)) {
    margin-top: 20px;
}

.nofound {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    background-color: #444;
    color: #fff;
    border-radius: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

.item_bargain {
    position: absolute;
    top: 0px;
    left: -5px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    /* background-color: #fff; */
}

.inner_bargain {
    position: absolute;
    background-color: #dfd;
    /* padding: 5px; */
    padding-left: 10px;
    padding-right: 10px;
    transform: rotate(-25deg);
    top: 20px;
    left: 8px;
    border: solid 1px #040;
    border-radius: 50px;
}

.item_rank {
    position: absolute;
    top: 23px;
    left: 2px;
    font-size: 24px;
    display: none;
}

.rank_num {
    position: absolute;
    top: calc(50% + 4px);
    left: 61%;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transform: translate(-50%, -50%);
}

.footer {
    position: relative;
    left: 0px;
    background-color: #fff;
    border-top: solid 1px #ddd;
    z-index: 0;
}

/* quick list */
/* .quickList {
    position: fixed;
    top: 60px;
    right: 10px;
    min-width: 200px;
    height: auto;
    border-radius: 5px;
    border: solid 1px #ccc;
    background-color: #fff;
    z-index: 10000;
    animation: quicklist 0.5s forwards;
    opacity: 0;
    box-shadow: 2px 2px 3px #0001;
} */
.quickList {
    position: absolute;
    right: initial;
    /* top: 83px; */
    left: 50%;
    transform: translateX(-50%);
    min-width: initial;
    width: 100%;
    /* max-width: 1500px; */
    height: auto;
    border-radius: 0px;
    border: solid 0px #ccc;
    /* background-color: #fff; */
    z-index: 10000;
    transition: opacity 0.2s;
    animation: quicklist 0.5s forwards;
    opacity: 0;
    box-shadow: 2px 2px 10px #0004;
}

.table_option {
    width: 100%;
}

.table_option td {
    position: relative;
    vertical-align: bottom;
    text-align: left;
}


.item_sold {
    position: absolute;
    /* top:calc(50% - 0px); */
    top:100px;
    left: 0px;
    width: 100%;
    /* transform: translateY(-50%); */
    text-align: center;
    background-color: rgb(255, 80, 80, 0.8);
    padding: 10px;
    color: #fff;
    font-weight: 700;
}

@keyframes quicklist {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.close_QuickList {
    z-index: 10 !important;
    /* top: 83px; */
    opacity: 1;
    animation: quicklist_close 0.5s forwards;
}

/* .quick_description img{
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
} */

.quick_description table{
    height:initial;
}

@keyframes quicklist_close {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.quickListLine {
    position: relative;
    padding: 5px;
    width: 100%;
    background-color: #fafafa;
    /* border-radius: 5px; */
    font-size: 25px;
    padding-left: calc(50% - 70px);
    color: #333;
}

.a_group {
    position: relative;
    height: calc(100vh - 72px);
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.groupA a {
    position: relative;
    width: 100%;
    vertical-align: middle;
    text-decoration: none;
    color: #666;
}

.groupA a:hover {
    vertical-align: middle;
    text-decoration: none;
    color: #000;
    font-weight: 700;
}

.groupA a:hover .quickListLine {
    background-color: #eee;
}

.quickLinkCloseBtn {
    /* position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
    height: 15px;
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    line-height: 10px;
    font-family: sans-serif;
    z-index: 1;
    border: solid 1px #000;
    cursor: pointer; */
    position: absolute;
    top: 7px;
    right: 7px;
    width: 15px;
    height: 15px;
    font-size: 14px;
    border-radius: 50%;
    text-align: center;
    line-height: 14px;
    font-family: sans-serif;
    z-index: 1;
    border: solid 1px #fff;
    cursor: pointer;
    color: #fff;
}

.spaceBtnClose {
    position: relative;
    width: 100%;
    /* height: 20px; */
    background-color: #000;
    height: 1px;
}

.textCloseBtn {
    position: absolute;
    font-family: sans-serif;
    z-index: 1;
    cursor: pointer;
    display: none;
    top: -3px;
    right: 5px;
    font-size: 25px;
    color: #646464;
}

.textCloseLabel {
    /* position: absolute;
    top: 2px;
    left: 5px;
    font-family: sans-serif;
    z-index: 1;
    cursor: pointer;
    color: #fff;
    font-size: 20px; */

    position: relative;
    z-index: 1;
    color: #fff;
    font-size: 25px;
    text-align: center;
    width: 100%;
    height: 82px;
    background-color: #444;
    line-height: 70px;
    cursor: pointer;
}

/*item page */
.disp_item{
    position: relative;
    display: block;
    width: 100%;
}

.disp_item td{
    vertical-align: top;
    padding:5px;
}

.menu_left_item{
    border-right: solid 1px #e3e3e3;
    font-size:18px;
    text-align: center;
}

.disp_item td:nth-child(1){
    min-width: 250px;
    /* border-right: solid 1px #e3e3e3; */
    background-color: #fff;
}

.clearfix_2{
    max-width: 650px;
    position: relative;
    display: block;
    margin: auto;
}
.quickview_tableprice_2{
    width: 400px !important;
    min-width: initial !important;
}
.table_picture_item td{
    text-align: center !important;
    vertical-align: middle !important;
}
.quickview_tableprice_2 td:nth-child(1){
    width: 150px !important;
    min-width: initial !important;
}
.quickview_tableprice_2 td:nth-child(3){
    width: 150px !important;
    min-width: initial !important;
}

.usingCss{
    /* background-color: #f7f7f7; */
}
.center_info{
    text-align: center;
    /* width: calc(100% - 210px); */
}

.table_picture_item{
    width: 100%;
}

.table_picture_item td:nth-child(1){
    width: 650px;
}
.table_picture_item td:nth-child(2){
    padding:10px
}

.mobile_block{
    /* min-width: 650px !important; */
}

.main_item{
    position: relative;
    width: calc(100% - 280px);
    display: block;
}

#image-gallery2, #image-gallery3{
    background-color: #fff;
}

#image-gallery2 li img, #image-gallery3 li img{
    max-width: 200px;
    max-height: 140px;
}

.propos{
    width: calc(100% - 250px) !important;
}

/* user login */
.user_login{
    position: relative;
    width: 100%;
    /* min-height: calc(100% - 140px); */
}

.user_login_background{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(./../image/admin/user_login.jpg);
    background-size: 25%;
    opacity: 0.05;
    filter: grayscale(1);
}

.user_login_box{
    /* position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px;
    border: solid 2px #0001;
    border-radius: 15px;
    background: linear-gradient( 0deg , #eee 10%, #eaeaea 20%, #eaeaea 80%, #eee 100%);
    box-shadow: 0px 0px 20px lightgrey;
    font-weight: 700;
    max-height:80vh;
    z-index: 1001;
    overflow-y: auto;
    width: calc(100% - 40px);
    max-width:1100px; */

    position: relative;
    padding: 15px;
    border: solid 2px #0001;
    border-radius: 15px;
    background: linear-gradient( 0deg, #eee 10%, #eaeaea 20%, #eaeaea 80%, #eee 100%);
    box-shadow: 0px 0px 20px lightgrey;
    font-weight: 700;
    z-index: 1001;
    overflow-y: auto;
    width: calc(100% - 100px);
    margin: auto;
}

.user_login_box2{
    position: relative;
    padding: 15px;
    border: solid 2px #0001;
    border-radius: 15px;
    background: linear-gradient( 0deg, #eee 10%, #eaeaea 20%, #eaeaea 80%, #eee 100%);
    box-shadow: 0px 0px 20px lightgrey;
    font-weight: 700;
    /* z-index: 1001; */
    overflow-y: auto;
    width: calc(100% - 100px);
    margin: auto;
}

.user_login_box2 input{
    border:none;
    display: inline-block;
    width:calc(100% - 20px);
}

.user_login_box2 button{
    border: none;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9c9c9c;
    color: #fff;
    padding: 2px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
}

.login_pc{
    width:100%;
}

.login_pc td{
    width:50%;
}

.login_mobile{
    display: none;
}

.user_login_box input{
    border:none;
    display: block;
}

.user_login_box button{
    border: none;
    display: block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #9c9c9c;
    color: #fff;
    padding: 2px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 15px;
}

.pc_block {
    display: block;
}

.mobile_block {
    display: none;
}


/* page item */
.content_page_item{

    position: relative;
    width:100%;
    /* max-width: 1200px; */
    margin:auto;

}

.page_index{
    position: relative;
    background-color: #fff;
    z-index: 1;
}


.aff_mobile_tr{
    display: none !important;
}

.list_bill{
    width: 100%;
    padding:10px;
    background-color:#eee;
    margin-top:5px;
    margin-bottom: 5px;
    text-align: center;
    cursor: pointer;
}

.list_bill div{
    display: inline-block;
    padding:2px;
    font-weight: 700;
    font-size:15px;
}

.last_item_auction_icon{
    position: absolute;
    background-color: #fff;
    z-index: 1;
    padding: 4px;
    border-radius: 50%;
    border: solid 1px #000;
}

.search_block{
    width:calc(100% - 400px);
}

/* media */

@media screen and (max-width:1600px){
    .item-box {
        width: calc((100% / 4) - 10px);
    }
    
    .item-box_option {
        width: calc(((100% - 250px) / 4) - 15px);
    }

    .listmode1{
        height:calc(16vw + 120px);
    }
    .listmode1 .item_picture{
        /* height:17vw; */
    }
}

@media screen and (max-width:1385px){
    .mobile_block{
        display: block;
        text-align: center !important;
    }

    .mobile_block td{
        width: 100% !important;
        text-align: center !important;
    }

    .pc_block {
        display: none !important;
    }

}

@media screen and (max-width:1200px) {
    .item-box {
        width: calc((100% / 3) - 10px);
        height: 25vw;
    }

    .item-box_option {
        width: calc(((100% - 250px) / 3) - 16px);
    }

    .listmode1{
        height:calc(25vw + 120px);
    }
    .listmode1 .item_picture{
        /* height:25vw; */
    }

}

@media screen and (max-width:740px) {
    .pc_block_2 {
        display: none !important;
    }
}

@media screen and (max-width:940px){
    .search_block{
        width:calc(100% - 100px);
    }
    .search_bar {
        height: 93px;
    }

    .aff_mobile_tr{
        display: table-row !important;
    }
    .hide_mobile{
        display: none !important;
    }
    .clearfix_2{
        max-width: 650px;
        position: relative;
        display: block;
        left: initial;
        transform: none;
        margin: auto;
    }
    .main_item{
        position: relative;
        width: calc(100% - 35px);
        display: block;
    }
    .propos{
        width: 100% !important;
    }

}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 1200px !important;
    }
}

@media screen and (max-width:800px) {
    .item-box {
        width: calc((100% / 2) - 10px);
        height: 35vw;
    }

    .item-box_option {
        width: calc(((100% - 250px) / 2) - 20px);
    }

    /*quick view */
    .main_pix {
        position: relative;
        top: 10px;
        left: 10px;
        width: calc(100% - 20px);
        height: 180px;
        background-color: #fff;
    }

    .list_pix {
        position: relative;
        top: 5px;
        left: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 210px);
        background-color: #fff;
    }

    .img_temp {
        object-fit: cover;
        width: calc(100% - 10px);
        height: 33%;
        position: relative;
        margin: 5px;
        cursor: pointer;
    }

    .listmode1{
        height:calc(35vw + 120px);
    }
    .listmode1 .item_picture{
        /* height:35vw; */
    }

    .quickList {
        font-size: 20px;
    }

}

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

    .content_news_inner {
        display: block;
        margin-left: 10px;
        margin-right: 10px;
    }

    .login_pc{
        display: none;
    }
    
    .login_mobile{
        display: unset;
    }

    .quick_description{
        min-height:max-content;
        height:max-content;
        overflow: hidden;
        overflow-y: auto;
    }

    .clearfix_2 {
        max-width: 100%;
        margin: initial;
    }

    .option_filter {
        /* width: 100%; */
        border-right: solid 1px #000;
        box-shadow: 1px 0px 50px #0004;
        z-index: 1;
    }

    .contentPage_option {
        width: 100%;
        left: 0px;
    }

    .item-box,
    .item-box_option {
        width: calc((100% / 2) - 10px);
        /* height: 65vw; */
    }

    /* Quick view */
    .preview_box {
        max-height: none;
        width: 95%;
        height: 95%;
    }

    .box_pictures_quickview {
        position: relative;
        top: 40px;
        height: 35%;
        min-height: 280px;
        width: 100%;
        max-width: none;
        background-color: #ccc;
    }

    .main_pix {
        position: relative;
        top: 10px;
        left: 10px;
        width: 305px;
        height: calc(100% - 20px);
        background-color: #fff;
    }

    .list_pix {
        position: relative;
        top: 10px;
        left: 20px;
        width: calc(100% - 335px);
        height: calc(100% - 20px);
        background-color: #fff;
    }

    .img_temp {
        object-fit: cover;
        width: calc(100% - 10px);
        height: 33%;
        position: relative;
        margin: 5px;
        cursor: pointer;
    }

    .menu_option_button {
        width: 100%;
    }

    .box_info_quickview {
        position: relative;
        right: initial;
        bottom: initial;
        top: 40px;
        width: 100%;
        height: calc(100% - 40px - 35%);
    }

    .button_quick_group{
        position:relative;
    }

    .table_option {
        font-size:20px;
    }

    .table_item{
        display: block;
    }
    .clearfix{
        width: 100% !important;
        max-width: 100% !important;
    }

    /* .lslide img{
        height: auto !important;
    } */
    .lSGallery {
        height: 15vw !important;
    }

    .clearfix_2 .lSGallery{
        height: auto !important;
    }

    /* .listmode1{
        height:calc(65vw + 120px);
    }
    .listmode1 .item_picture{
        height:65vw;
    } */

}

@media screen and (max-height:840px) and (max-width:600px) {
    .box_info_quickview{
        height: calc(100% - 40px - 280px);
    }
}

@media screen and (max-height:400px) {
    .button_quick_group{
        position:relative;
    }
}