﻿/* all-options */
.all-options {
    display: flex;
    width: 170px;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    padding: 15px;
    font-size: 14px;
    border-bottom: 1px solid silver;
    cursor: pointer;
}

    .all-options:hover {
        background-color: whitesmoke;
    }

    .all-options > span {
        color: silver;
        padding-right: 10px;
    }

    .all-options i {
        width: 25px;
        text-align: right;
    }

        .all-options i:first-child {
            text-align: left;
        }

    .all-options div {
        width: 0px;
        flex: 1;
        text-align: left;
    }

/* filter-panel */
.filter-panel {
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    border-bottom: 1px solid silver;
}

    .filter-panel .title {
        width: 980px;
        font-size: 14px;
        font-weight: bold;
        display: flex;
        text-align: left;
        align-items: center;
        padding: 5px 10px;
        justify-content: space-between;
    }

/* options-panel */
.options-panel {
    padding: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .options-panel .option {
        position: relative;
        border: 1px solid silver;
        background-color: whitesmoke;
        padding: 5px 10px;
        margin: 5px;
        cursor: pointer;
    }

    .options-panel .option-check {
        position: relative;
        background-color: #11318f;
        color: white;
        font-weight: bold;
        padding: 5px 10px;
        margin: 5px;
        cursor: pointer;
    }


.underline {
    background-color: antiquewhite !important;
}

.rj-count {
    background-color: #11318f;
    color: white;
    border-radius: 20px;
    padding: 0px 5px;
    display: none;
}


#TITLE {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

#MENUBAR {
    display: flex;
    background-color: white;
    text-align: center;
    z-index: 9999;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-top: 1px solid silver;
    border-bottom: 1px solid silver;
}

#BAR_FILTER {
    width: 100px;
    padding-left: 20px;
    text-align: left !important;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    align-items: center;
}

    #BAR_FILTER i:first-child {
        font-size: 16px;
    }

#MST_BODY {
    display: flex;
    justify-content: center;
}

    #MST_BODY > div:first-child {
        width: 1000px;
        background-color: white;
    }

.item-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.item-full {
    padding: 5px;
    cursor: pointer;
    flex: 1;
    position: relative;
    min-width: 230px;
    margin-left: 5px;
    margin-top: 5px;
}

    .item-full .item-top {
        margin: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
    }

    .item-full .stock {
        color: brown;
        font-weight: bold;
        text-align: center;
    }

    .item-full .model {
        font-weight: bold;
    }

    .item-full .item-name {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-all;
        width: 90%;
        color: #11318f;
    }

    .item-full .item-stock {
        display: none;
        justify-content: space-between;
        padding: 5px 10px 0px 10px;
    }

    .item-full .item-size {
        justify-content: space-between;
        padding: 5px;
        margin-top: -30px;
        flex-direction: column;
    }

    .item-full .item-price {
        font-size: 14px;
        font-weight: bold;
        border-top: 1px solid whitesmoke;
    }

        .item-full .item-price .price {
            color: orangered;
        }

        .item-full .item-price .stock {
            color: dodgerblue;
        }

        .item-full .item-price i {
            color: black;
            font-size: 18px;
        }

    .item-full .item-msg {
        position: absolute;
        font-size: 16px;
        top: 35px;
        width: 100%;
        text-align: center;
        border-top: 1px solid whitesmoke;
        padding-top: 5px;
    }

        .item-full .item-msg span {
            padding: 2px 5px;
            margin: 20px;
            color: crimson;
            background-color: transparent;
            border-radius: 4px;
            font-weight: bold;
        }

.item-full-empty {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #ddd;
    background-color: whitesmoke;
    font-weight: bold;
    font-size: 32px;
    border: 1px solid silver;
    margin-left: 5px;
    margin-top: 5px;
    padding: 5px;
}

.rj-button-bar .rj-absolute {
    display: none;
    position: absolute;
    justify-content: left;
    border-top: 2px solid black;
    width: 100%;
}

    .rj-button-bar .rj-absolute .CATECD {
        padding: 12px 0px 12px 8px;
        justify-content: left;
        font-weight: normal;
        border-bottom: 1px solid whitesmoke;
    }

        .rj-button-bar .rj-absolute .CATECD:hover {
            background-color: whitesmoke;
            font-weight: bold;
            border-bottom: 1px solid silver;
        }

    .rj-button-bar .rj-absolute .BRAND {
        padding: 12px 0px 12px 8px;
        justify-content: left;
        font-weight: normal;
        border-bottom: 1px solid whitesmoke;
    }

        .rj-button-bar .rj-absolute .BRAND:hover {
            background-color: whitesmoke;
            font-weight: bold;
            border-bottom: 1px solid silver;
        }

#PANEL_FILTER {
    display: none;
    width: 100%;
    position: absolute;
    top: 45px;
    z-index: 9999;
}

    #PANEL_FILTER .detail {
        background-color: white;
        border: 1px solid silver;
        border-bottom: 2px solid black;
        border-top: 1px solid silver;
    }

#SERIE_LIST {
    display: none;
    width: 100%;
    position: absolute;
    top: 45px;
    z-index: 9999;
    border: 1px solid silver;
    flex-direction: column;
    color: gray;
}

.cate2List {
    display: none;
    width: 100%;
    position: absolute;
    top: 45px;
    z-index: 9000;
    justify-content: center;
    flex-wrap: wrap;
    border: 1px solid darkgray;
    padding: 10px 0;
    background: white;
    border-radius: 0 0 5px 5px;
}

    .cate2List .cate2Item {
        border: 1px solid silver;
        background-color: whitesmoke;
        padding: 5px 10px;
        margin: 5px;
        cursor: pointer;
    }

#Clear_Series span {
    position: relative;
    border: 1px solid brown;
    background-color: lavenderblush;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 10px;
}

#SELECT-SERIES {
    position: fixed;
    display: none;
    z-index: 99999999;
    background-color: white;
    width: 800px;
    top: 250px;
    left: calc(50% - 400px);
    border: 2px solid darkgray;
    text-align: center;
    padding-bottom: 20px;
}

    #SELECT-SERIES .title {
        display: flex;
        padding: 10px;
        font-weight: bold;
        justify-content: space-between;
        border-bottom: 1px solid darkgray;
        color: black;
        font-size: 1.3rem;
    }

        #SELECT-SERIES .title i {
            font-size: 30px;
        }

    #SELECT-SERIES .content {
        margin-left: auto;
        margin-right: auto;
        background-color: white;
    }

#Series_Content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}

.Content_Item {
    position: relative;
    border: 1px solid brown;
    background-color: lavenderblush;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.Phone_Brand_Item {
    position: relative;
    border: 1px solid silver;
    background-color: whitesmoke;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.Phone_Brand_Item.click {
    border: 1px solid brown;
    background-color: lavenderblush;
}

.Series_Item.click {
    border: 1px solid brown;
    background-color: lavenderblush;
}

    .Series_Item.click .rj-mark-triangle {
        position: absolute;
        display: inline-block;
        width: 0px;
        height: 0px;
        border: 3px solid transparent;
        border-left: 3px solid black;
        border-top: 3px solid black;
        left: 2px;
        top: 2px;
    }

.ALL_CLICK {
    position: relative;
    border: 1px solid silver;
    background-color: whitesmoke;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.ALL_CLICK.click {
    border: 1px solid brown;
    background-color: lavenderblush;
}

    .ALL_CLICK.click .rj-mark-triangle {
        position: absolute;
        display: inline-block;
        width: 0px;
        height: 0px;
        border: 3px solid transparent;
        border-left: 3px solid black;
        border-top: 3px solid black;
        left: 2px;
        top: 2px;
    }

.Series_List {
    display: flex;
    padding: 10px;
    flex-wrap: wrap;
}

.Series_Item {
    position: relative;
    border: 1px solid silver;
    background-color: whitesmoke;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

#FOOTER {
    display: flex;
    justify-content: center;
    padding: 30px;
    flex-wrap: wrap;
    background-color: #11318f;
    color: white;
    flex-direction: column;
    align-items: center;
}

.PMLItem {
    font-size: 12px;
    word-break: break-all;
    padding: 5px 8px;
    cursor: pointer;
    margin: 1px 0px;
}

    .PMLItem:hover {
        color: white;
        background-color: #11318f;
        border-radius: 10px;
        font-weight: bold;
    }

    .PMLItem.select {
        color: white;
        background-color: #11318f;
        border-radius: 10px;
        font-weight: bold;
    }

.PMLList {
    height: 565px;
    flex: 5;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
}

    .PMLList::-webkit-scrollbar {
        width: 3px;
        height: auto;
    }

    .PMLList::-webkit-scrollbar-track {
        background: #f1f1f1;
    }


    .PMLList::-webkit-scrollbar-thumb {
        background: #888;
    }


        .PMLList::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.CATEList {
    padding: 0px 10px;
    flex: 6;
    height: 565px;
    overflow-y: auto;
    overflow-x: hidden;
}

    .CATEList::-webkit-scrollbar {
        width: 3px;
        height: auto;
    }

    .CATEList::-webkit-scrollbar-track {
        background: #f1f1f1;
    }


    .CATEList::-webkit-scrollbar-thumb {
        background: #888;
    }


        .CATEList::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.option-cate {
    position: relative;
    border: 1px solid silver;
    background-color: whitesmoke;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.option-cate-check {
    position: relative;
    border: 1px solid brown;
    background-color: lavenderblush;
    padding: 5px 10px;
    margin: 5px;
    cursor: pointer;
}

.SERIENM {
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 3px 10px;
}

    .SERIENM:hover {
        background-color: #11318f;
        color: white;
        cursor: pointer;
    }

    .SERIENM.select {
        font-weight: bold;
        font-size: 13px;
        white-space: nowrap;
        background-color: #11318f;
        border-radius: 10px;
        padding: 3px 10px;
        color: white;
    }

.OtherList {
    width: 165px;
    height: 565px;
    text-align: left;
    font-weight: bold;
    padding-top: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}


    .OtherList::-webkit-scrollbar {
        width: 3px;
        height: auto;
    }

    .OtherList::-webkit-scrollbar-track {
        background: #f1f1f1;
    }


    .OtherList::-webkit-scrollbar-thumb {
        background: #888;
    }


        .OtherList::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.OtherItem {
    padding: 5px;
    cursor: pointer;
}

    .OtherItem.select {
        color: white;
        background-color: #11318f;
        border-radius: 10px;
        font-weight: bold;
    }

    .OtherItem:hover {
        color: white;
        background-color: #11318f;
        border-radius: 10px;
        font-weight: bold;
    }

#PML_BUTTON {
    flex: 1;
    margin: 0px 20px;
    text-align: left;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    align-items: center;
}

    #PML_BUTTON::-webkit-scrollbar {
        width: auto;
        height: 3px;
    }

    #PML_BUTTON::-webkit-scrollbar-track {
        background: #f1f1f1;
    }


    #PML_BUTTON::-webkit-scrollbar-thumb {
        background: #888;
    }


        #PML_BUTTON::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

.Button_Item {
    padding: 3px 8px;
    margin: 0px 10px;
    border-radius: 15px;
    background-color: cornflowerblue;
    color: white;
    text-align: center;
    cursor: pointer;
}

    .Button_Item:hover {
        background-color: #11318f;
    }

.filter_select {
    font-weight: bold;
}

.NEW_TAB {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 1px 3px;
    border-radius: 5px;
    margin-left: 5px;
    font-size: 10px;
    word-break: break-word;
}

#MFRSCD_BUTTON {
    font-weight: bold;
}


    #MFRSCD_BUTTON:hover {
        background-color: #11318f;
        color: white;
        cursor: pointer;
    }

    #MFRSCD_BUTTON.select {
        background-color: #11318f;
        color: white;
        cursor: pointer;
    }

#CATE_BUTTON {
    margin-left: 10px;
    font-weight: bold;
}

    #CATE_BUTTON:hover {
        background-color: #11318f;
        color: white;
        cursor: pointer;
    }

#FIXED_NAV {
    position: fixed;
    z-index: 99999999;
    width: 200px;
    right: 8%;
    top: 33%;
    display: flex;
    flex-direction: column;
    background-color: rgb(239, 239, 239);
    border-radius: 15px;
    font-size: 12px;
    color: darkslategrey;
}

    #FIXED_NAV div {
        padding: 15px 0px;
        border-bottom: 1px solid;
        margin: 0px 15px;
        cursor: pointer;
    }


    #FIXED_NAV i {
        color: grey;
    }

    #FIXED_NAV span {
        color: darkslategray;
    }

