

.maincontainer-sale{
    /* background-color: lightblue; */
    position: relative;
    min-width: calc(100% - 5px);
    max-width: calc(100% - 5px);
    min-height: calc(100% - 40px);
    max-height: calc(100% - 40px);
    margin: 2.5px;
    display:flex;
    flex-direction: row;
    overflow: hidden;
}
.maincontainer-sale > .header{
    /* background-color: lightblue; */
    position: relative;
    min-width: 100%;
    max-width: 100%;
    min-height: 40px;
    max-height: auto;
    height: auto;
    align-self: flex-start;
    margin-bottom: 2.5px;
    border-radius: 10px 0px 10px 0px;
    display: flex;
    flex-direction: row;
    overflow: none;
}
.maincontainer-sale > .header > .search-con{
    position: relative;
    width: auto;
    height: auto;
    z-index: 1;
    display: flex;
    flex-direction: row;
    margin-right: 15px;
}
    .maincontainer-sale > .header > .search-con > input{
        position: relative;
        width: auto;
        height: auto;
        margin: 5px;
        padding: 5px 10px 2.5px 10px;
        font-size: 1.3em;
        border-radius: 10px;
        border: none;
        outline: none;
        cursor:text;
    }
    .maincontainer-sale > .header > .search-con > #sale-searchicon{
        position: relative;
        min-width: 40px;
        max-width: 40px;
        height: auto;
        margin: 5px;
        color: white;
        font-size: 1.7em;
        cursor: pointer;
    }
.maincontainer-sale > .header > .sale-widgets{
    /* background-color: wheat; */
    position: relative;
    width: 100%;
    height: auto;
    /* margin-left: 220px; */
    border-radius: 10px;
    z-index: 1;
    display: flex;
    flex-direction: row;
    /* overflow-x: auto; */
}
.sale-widgets > .widget{
    position: relative;
    min-width: 130px;
    max-width: 150px;
    width: 100%;
    height: 25px;
    max-height: 25px;
    margin: 5px;
    margin-left: 8px;
    padding: 4px 15px 2px 15px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 0px 5px 0px rgb(182, 212, 194);
    cursor: pointer;
    transition: transform 0.15s ease;
}
    .widget:hover{
        transform: scale(1.1);
    }
.widget > span{
    position: relative;
    font-size: 1.2em;
    cursor: pointer;
    text-overflow: ellipse;
}
.widget > span > i{
    position: relative;
    font-size: 1em;
    left: -4px;
    top: 1px;
    margin: 0.5px;
    cursor: pointer;
    color: whitesmoke;
}
.widget > span > i:hover{
    transform: none;
}
.widget > label{
    font-size: 1.3em;
    overflow-y: hidden;
    overflow-x: hidden;
    cursor: pointer;
    text-overflow: ellipse;
}
.widget > label > i{
    position: relative;
    font-size: 1.1em;
    left: -4px;
    top: 1px;
    margin: 0.5px;
    cursor: pointer;
    color: whitesmoke;
}
.widget > label > i:hover{
    transform: none;
}

.maincontainer-sale > .container{
    /* background-color: lightblue; */
    position: relative;
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: auto;
    min-height: calc(100% - 45px);
    max-height: calc(100% - 45px);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

.maincontainer-sale > .container > .sale-list-header{
    /* background-color: lightblue; */
    position: relative;
    min-width: 1000px;
    max-width: calc(100% - 0px);
    width: auto;
    min-height: 35px;
    max-height: 35px;
    margin-bottom: 2.5px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    overflow: none;
}
    .sale-list-header > span{
        position: relative;
        width: 100%;
        height: auto;
        font-size: 1.2em;
        font-weight: bold;
        padding: 0px 10px 0px 10px;
        margin-top: 6px;
        text-decoration: underline;
        text-align: center;
    }
    .sale-list-header > .button-con-filler{
        position: relative;
        width: 100%;
        min-width: 250px;
        max-width: 250px;
        min-height: 25px;
        max-height: 25px;
        padding-right: 10px;
        display: flex;
        flex-direction: row;
    }
        .sale-list-header > .button-con-filler > button{
            position: relative;
            min-width: 90px;
            max-width: 90px;
            height: auto;
            margin: auto;
            text-align: center;
        }
.maincontainer-sale > .container > .sale-list-container{
    /* background-color: lightcoral; */
    position: relative;
    min-width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    width: auto;
    min-height: calc(100vh - 170px);
    max-height: calc(100vh - 170px);
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: none;
    border-radius: 15px;
}
    .sale-list-container > .sale-list-widget{
        /* background-color: lightblue; */
        position: relative;
        min-width: 1000px;
        max-width: calc(100% - 0px);
        min-height: 30px;
        max-height: 30px;
        border-radius: 10px;
        padding-top: 2.5px;
        padding-bottom: 2.5px;
        display: flex;
        flex-direction: row;
        overflow: none;
        border-bottom: 2px solid whitesmoke;
        transition: padding 0.15s ease;
    }
        .sale-list-container > .sale-list-widget:hover{
            padding-top: 15px;
            padding-bottom: 15px;
            background-color: var(--ROW_HIGHLIGHT_COLOR);
        }
        .sale-list-widget > span{
            position: relative;
            width: 100%;
            height: auto;
            font-size: 1em;
            font-weight: bold;
            padding: 0px 10px 0px 10px;
            margin-top: 6px;
            text-align: center;
        }
        .sale-list-widget > .tax{
            text-align: center;
        }
        .sale-list-widget > .button-con{
            position: relative;
            width: 100%;
            min-width: 250px;
            max-width: 250px;
            min-height: 25px;
            max-height: 25px;
            padding-right: 5px;
            display: flex;
            flex-direction: row;
        }
            .sale-list-widget > .button-con > .btn-view{
                position: relative;
                width: 100%;
                height: 100%;
                background-color: var(--BTN_COLOR);
                outline: none;
                border: none;
                border-radius: 5px;
                margin-right: 2.5px;
                text-align: center;
                padding-top: 2px;
                margin-top: -5px;
            }
            .sale-list-widget > .button-con > .btn-remove{
                position: relative;
                width: 100%;
                height: 100%;
                background-color: var(--BTN_COLOR);
                outline: none;
                border: none;
                border-radius: 5px;
                margin-left: 2.5px;
                text-align: center;
                padding-top: 2px;
                margin-top: -5px;
            }


/* Small phones */
@media (max-width: 480px) {
    .header > .search-con > input{
        font-size: 1.15em;
    }
    .sale-widgets > .widget > span{
        font-size: 1.15em;
    }
}
@media (max-width: 1050px) {
    .maincontainer-sale > .header{
        flex-direction: column;
        min-height: auto;
        max-height: auto;
    }
    .header > .search-con{
        width: 100%;
        margin-right: 0px;
    }
        .header > .search-con > #sale-search{
            width: 100%;
        }
    
    .maincontainer-sale > .container{
        min-height: calc(100% - 87px);
        max-height: calc(100% - 87px);
    }
    .maincontainer-sale > .container > .sale-list-container{
        margin-top: 15px;
    }
    .header > .sale-widgets{
        overflow-x: auto;
        overflow-y: none;
    }
}



