﻿.css-treeview ul,
.css-treeview li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.css-treeview input {
    position: absolute;
    opacity: 0;
}

.css-treeview {
    font: normal 14px 'Open Sans', sans-serif !important;
    /*font: normal 13px "Segoe UI", Arial, Sans-serif;*/
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

    .css-treeview a {
        color: black;
        /*color: #00f;*/
        text-decoration: none;
    }

        .css-treeview a:hover {
            text-decoration: underline;
        }

    .css-treeview input + label + ul {
        margin: 0 0 0 22px;
    }

    .css-treeview input ~ ul {
        display: none;
    }

    .css-treeview label,
    .css-treeview label::before {
        cursor: pointer;
    }

    .css-treeview input:disabled + label {
        cursor: default;
        opacity: .6;
    }

    .css-treeview input:checked:not(:disabled) ~ ul {
        display: block;
    }

    .css-treeview label,
    .css-treeview label::before {
        background: url("../../Content/Images/TreeViewIcon.png") no-repeat;
        /*background: url("http://experiments.wemakesites.net/pages/css3-treeview/example/icons.png") no-repeat;*/
    }

        .css-treeview label,
        .css-treeview a,
        .css-treeview label::before {
            display: inline-block;
            height: 16px;
            line-height: 16px;
            vertical-align: middle;
        }

    .css-treeview label {
        /*background-position: 18px 0;*/
        background-position: -100px 0;
    }

        .css-treeview label::before {
            content: "";
            width: 16px;
            /*margin: 0 22px 0 0;*/
            margin: 0 5px 0 0;
            vertical-align: middle;
            background-position: 0 -32px;
        }

    .css-treeview input:checked + label::before {
        background-position: 0 -16px;
    }

/* webkit adjacent element selector bugfix */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    .css-treeview {
        -webkit-animation: webkit-adjacent-element-selector-bugfix infinite 1s;
    }

    @-webkit-keyframes webkit-adjacent-element-selector-bugfix {
        from {
            padding: 0;
        }

        to {
            padding: 0;
        }
    }
}


/*List Line*/
.liLine {
    padding-left: 1em;
    border: .1px dotted #D3D3D3;
    border-width: 0 0 0px 1px;
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

label {
    margin-left: -8px !important;
    /*color: blue !important;*/
    color: #444 !important;
}



/*Loader*/
#divLoading1 {
    display: none;
}

    #divLoading1.show {
        display: block;
        position: fixed;
        z-index: 100;
        background-image: url('../../Content/Images/Gearloader.gif');
        /*background-image : url('http://loadinggif.com/images/image-selection/3.gif');*/
        /*background-color:#666;*/
        opacity: 0.4;
        background-repeat: no-repeat;
        background-position: center;
        left: 0;
        bottom: 0;
        right: 0;
        top: 0;
    }

#loadinggif.show {
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 101;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    margin-top: -16px;
}

div.content {
    width: 1000px;
    height: 1000px;
}




/*css Loader*/
.spinner {
    position: fixed;
    top: 50%;
    width: 100px;
    height: 100px;
    /* position: relative; */
    border-radius: 50%;
    display: inline-block;
    background: #eee;
    /* margin: 50px; */
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

    .spinner:after, .spinner:before {
        content: "";
        display: block;
        width: 100px;
        height: 100px;
        border-radius: 50%;
    }

.spinner-1:after {
    position: absolute;
    top: -2px;
    left: -1px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #3DAAE5;
    border-bottom-color: #3DAAE5;
    -webkit-animation: spinny 1s linear infinite;
    animation: spinny 1s linear infinite;
}


@-webkit-keyframes spinny {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(72deg) scale(1.4);
        transform: rotate(72deg) scale(1.4);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}

@keyframes spinny {
    0% {
        -webkit-transform: rotate(0deg) scale(1);
        transform: rotate(0deg) scale(1);
    }

    50% {
        -webkit-transform: rotate(72deg) scale(1.4);
        transform: rotate(72deg) scale(1.4);
    }

    100% {
        -webkit-transform: rotate(360deg) scale(1);
        transform: rotate(360deg) scale(1);
    }
}


/*Item Cart table*/
.product-box-add-to-cart-button {
    width: 110px !important;
    background-color: #0b4c86;
    text-align: center;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    height: 30px;
    border: none;
    vertical-align: middle;
    position: relative !important;
    opacity: 1 !important;
}

.table-wrapper {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}



/*Watermark for Advanced Search*/
.watermark {
    background: url(/Content/Images/logo1.png) center center no-repeat;
    background-size: 300px;
}


.text-bold{
    font-weight:bold;
}


.AdvancedSearchNote{
    margin-top:-20px;
    margin-bottom:10px;
    text-align:center;
}