/* ------------------------------------------------------------------------------------------------------------------ */
.block-wrapper {
    margin: 0 auto;
}

.windows8 {
    position: relative;
    width: 78px;
    height: 78px;
    margin: auto;
}

.windows8 .wBall {
    position: absolute;
    width: 74px;
    height: 74px;
    opacity: 0;
    transform: rotate(225deg);
    -o-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
    -moz-transform: rotate(225deg);
    animation: orbit 6.96s infinite;
    -o-animation: orbit 6.96s infinite;
    -ms-animation: orbit 6.96s infinite;
    -webkit-animation: orbit 6.96s infinite;
    -moz-animation: orbit 6.96s infinite;
}

.windows8 .wBall .wInnerBall {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgb(255, 255, 255);
    left: 0px;
    top: 0px;
    border-radius: 10px;
}

.windows8 #wBall_1 {
    animation-delay: 1.52s;
    -o-animation-delay: 1.52s;
    -ms-animation-delay: 1.52s;
    -webkit-animation-delay: 1.52s;
    -moz-animation-delay: 1.52s;
}

.windows8 #wBall_2 {
    animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
}

.windows8 #wBall_3 {
    animation-delay: 0.61s;
    -o-animation-delay: 0.61s;
    -ms-animation-delay: 0.61s;
    -webkit-animation-delay: 0.61s;
    -moz-animation-delay: 0.61s;
}

.windows8 #wBall_4 {
    animation-delay: 0.91s;
    -o-animation-delay: 0.91s;
    -ms-animation-delay: 0.91s;
    -webkit-animation-delay: 0.91s;
    -moz-animation-delay: 0.91s;
}

.windows8 #wBall_5 {
    animation-delay: 1.22s;
    -o-animation-delay: 1.22s;
    -ms-animation-delay: 1.22s;
    -webkit-animation-delay: 1.22s;
    -moz-animation-delay: 1.22s;
}

@keyframes orbit {
    0% {
        opacity: 1;
        z-index: 99;
        transform: rotate(180deg);
        animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        transform: rotate(300deg);
        animation-timing-function: linear;
        origin: 0%;
    }

    30% {
        opacity: 1;
        transform: rotate(410deg);
        animation-timing-function: ease-in-out;
        origin: 7%;
    }

    39% {
        opacity: 1;
        transform: rotate(645deg);
        animation-timing-function: linear;
        origin: 30%;
    }

    70% {
        opacity: 1;
        transform: rotate(770deg);
        animation-timing-function: ease-out;
        origin: 39%;
    }

    75% {
        opacity: 1;
        transform: rotate(900deg);
        animation-timing-function: ease-out;
        origin: 70%;
    }

    76% {
        opacity: 0;
        transform: rotate(900deg);
    }

    100% {
        opacity: 0;
        transform: rotate(900deg);
    }
}

@-o-keyframes orbit {
    0% {
        opacity: 1;
        z-index: 99;
        -o-transform: rotate(180deg);
        -o-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -o-transform: rotate(300deg);
        -o-animation-timing-function: linear;
        -o-origin: 0%;
    }

    30% {
        opacity: 1;
        -o-transform: rotate(410deg);
        -o-animation-timing-function: ease-in-out;
        -o-origin: 7%;
    }

    39% {
        opacity: 1;
        -o-transform: rotate(645deg);
        -o-animation-timing-function: linear;
        -o-origin: 30%;
    }

    70% {
        opacity: 1;
        -o-transform: rotate(770deg);
        -o-animation-timing-function: ease-out;
        -o-origin: 39%;
    }

    75% {
        opacity: 1;
        -o-transform: rotate(900deg);
        -o-animation-timing-function: ease-out;
        -o-origin: 70%;
    }

    76% {
        opacity: 0;
        -o-transform: rotate(900deg);
    }

    100% {
        opacity: 0;
        -o-transform: rotate(900deg);
    }
}

@-ms-keyframes orbit {
    0% {
        opacity: 1;
        z-index: 99;
        -ms-transform: rotate(180deg);
        -ms-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -ms-transform: rotate(300deg);
        -ms-animation-timing-function: linear;
        -ms-origin: 0%;
    }

    30% {
        opacity: 1;
        -ms-transform: rotate(410deg);
        -ms-animation-timing-function: ease-in-out;
        -ms-origin: 7%;
    }

    39% {
        opacity: 1;
        -ms-transform: rotate(645deg);
        -ms-animation-timing-function: linear;
        -ms-origin: 30%;
    }

    70% {
        opacity: 1;
        -ms-transform: rotate(770deg);
        -ms-animation-timing-function: ease-out;
        -ms-origin: 39%;
    }

    75% {
        opacity: 1;
        -ms-transform: rotate(900deg);
        -ms-animation-timing-function: ease-out;
        -ms-origin: 70%;
    }

    76% {
        opacity: 0;
        -ms-transform: rotate(900deg);
    }

    100% {
        opacity: 0;
        -ms-transform: rotate(900deg);
    }
}

@-webkit-keyframes orbit {
    0% {
        opacity: 1;
        z-index: 99;
        -webkit-transform: rotate(180deg);
        -webkit-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -webkit-transform: rotate(300deg);
        -webkit-animation-timing-function: linear;
        -webkit-origin: 0%;
    }

    30% {
        opacity: 1;
        -webkit-transform: rotate(410deg);
        -webkit-animation-timing-function: ease-in-out;
        -webkit-origin: 7%;
    }

    39% {
        opacity: 1;
        -webkit-transform: rotate(645deg);
        -webkit-animation-timing-function: linear;
        -webkit-origin: 30%;
    }

    70% {
        opacity: 1;
        -webkit-transform: rotate(770deg);
        -webkit-animation-timing-function: ease-out;
        -webkit-origin: 39%;
    }

    75% {
        opacity: 1;
        -webkit-transform: rotate(900deg);
        -webkit-animation-timing-function: ease-out;
        -webkit-origin: 70%;
    }

    76% {
        opacity: 0;
        -webkit-transform: rotate(900deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: rotate(900deg);
    }
}

@-moz-keyframes orbit {
    0% {
        opacity: 1;
        z-index: 99;
        -moz-transform: rotate(180deg);
        -moz-animation-timing-function: ease-out;
    }

    7% {
        opacity: 1;
        -moz-transform: rotate(300deg);
        -moz-animation-timing-function: linear;
        -moz-origin: 0%;
    }

    30% {
        opacity: 1;
        -moz-transform: rotate(410deg);
        -moz-animation-timing-function: ease-in-out;
        -moz-origin: 7%;
    }

    39% {
        opacity: 1;
        -moz-transform: rotate(645deg);
        -moz-animation-timing-function: linear;
        -moz-origin: 30%;
    }

    70% {
        opacity: 1;
        -moz-transform: rotate(770deg);
        -moz-animation-timing-function: ease-out;
        -moz-origin: 39%;
    }

    75% {
        opacity: 1;
        -moz-transform: rotate(900deg);
        -moz-animation-timing-function: ease-out;
        -moz-origin: 70%;
    }

    76% {
        opacity: 0;
        -moz-transform: rotate(900deg);
    }

    100% {
        opacity: 0;
        -moz-transform: rotate(900deg);
    }
}


.default-sale-price span {
    font-size: 1.5em;
    position: relative;
}

.default-sale-price span:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    right: 0;
    border-top: 1px solid;
    border-color: inherit;

    -webkit-transform:rotate(-18deg);
    -moz-transform:rotate(-18deg);
    -ms-transform:rotate(-18deg);
    -o-transform:rotate(-18deg);
    transform:rotate(-18deg);
}
/* ------------------------------------------------------------------------------------------------------------------ */

.admin .table {
    display: flex;
    font-size: 16px;
    text-align: center;
}

.admin .title .table-item {
    font-size: 18px;
    color: #000;
    font-weight: 900;
    min-height: 10px;
    padding: 10px 5px;
}

.admin .table-item {
    border: 1px solid black;
    width: 10%;
    padding: 5px;
}

.admin .table-item input {
    font-size: 16px;
}

.admin .line {
    width: 20%;
}

.admin .price {
    width: 10%;
}

.admin .size {
    width: 15%;
}

.admin .item-number {
    width: 15%;
}

.admin input {
    width: 100%;
}

.admin button {
    margin-top: 10px;
}

/*Header-filter*/
.admin .header-filter {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.admin .header-filter .size {
    width: 90%;
    display: flex;
    padding: 17px 30px;
}

.admin .header-filter .size .blue {
    color: #34a4ee;
}

.admin .header-filter .size select {
    width: 10%;
    height: 35px;
    font-size: 15px;
    font-weight: bold;
    margin: 0 10px;
}

.admin .header-filter input {
    background: #fff;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #bbb;
    height: 35px;
    width: 10%;
    min-width: 100px;
}

.admin .tires-brand {
    margin: 10px 40px;
    width: 10%;
    height: 35px;
    font-size: 15px;
    font-weight: bold;

}

.admin .header-filter .choose {
    color: #34a4ee;
    border: 1px solid #34a4ee;
}

.admin .header-filter .choose:hover {
    color: #fff;
    background: #34a4ee;
}

.admin .header-filter .col-2 {
    padding: 17px 0;
    text-align: right;
}

.admin .header-filter .total {
    padding-top: 20px;
}

.admin .total,
#markup_form {
    font-size: 18px;
}

.admin .pagination {
    text-align: right;
}

.admin .pagination ul li {
    display: inline-block;
    padding: 2px 4px;
    margin: 0 4px;
}

@media all and (max-width: 767px) {
    .admin .table {
        /*width: ;*/
    }
}
.cart_totals h2{
    font-size: 30px;
}
.selected-elements{
    display: flex;
    flex-wrap: nowrap;
}
.selected-elements > h6{
    width: 170px;
    font-size: 18px;
}
.selected-elements > ul{
    display: flex;
    flex-wrap: wrap;
}
.selected-elements > ul > li{
    background-color: #34a4ee;
    color: white;
    padding: 0 4px;
    margin: 0 30px 1px 0;
}
.selected-elements > ul > li :after{
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-left: 20px solid #34a4ee;
    border-bottom: 10px solid transparent;
}


/* Search styles */
.search_tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #f2f2f2;
    padding: 16px;
    margin: 0 0 20px;
}

.search_tags .title {
    color: #333;
    margin-right: 10px;
}

.search_tag {
    display: inline-block;
    background-color: #34a4ee;
    padding: 6px 10px;
    color: #fff;
    border-radius: 4px;
    margin: 8px;
    cursor: pointer;
}

.search_tag.clear_all {
    background-color: #777;
}

.search_tag .tag_remove {
    color: #fff;
    margin-left: 4px;
    font-weight: bold;
    font-size: 16px;
}

.woocommerce-widget-layered-nav {
    width: 100%;
    background-color: #f2f2f2;
    padding: 0 10px 20px;
}

.woocommerce-widget-layered-nav .widgettitle {
    background: #34a4ee;
    border-bottom: 1px solid #2374aa;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
    padding: 8px 0;
    margin: 0 -10px 15px;
}

.search_filter_wrapper label{
    color: #333;
    font-size: 16px;
}