.sob-wholesale-hidden{
    display: none;
}
.sob-wholesale-notification{
    width: 100%;
    position: fixed;
    bottom: 5px;
    height: 50px;
    background-color: #ff808d;
    box-sizing: border-box;
    padding: 14px;
    display: none;
    color:#000;
    font-family: vazir;
    font-weight: 300;
    z-index: 9999;
    left: 0;
    text-align: right;
}

.sob-wholesale-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.sob-wholesale-modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.sob-wholesale-close {
    color: #aaa;
    float: left;
    font-size: 28px;
    font-weight: bold;
}

.sob-wholesale-close:hover,
.sob-wholesale-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* Pagination*/




.sob-wholesale-pagination {
    margin: 3rem auto;
    text-align: center;

}
.sob-wholesale-pagination > .text span{
    background-color: #6a558e;
    border-color: transparent;
    color: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 5px;
}
.sob-wholesale-pagination > .text {
    display: inline-block;
    position: relative;
    padding: 1rem 3rem;
    transform: translateY(-0.5rem);
    text-transform: uppercase;
    perspective: 10rem;
    cursor: pointer;
    font-family: vazir;
    font-weight: 500;

}
.sob-wholesale-pagination  > .text:first-of-type {
    padding-left: 4rem;
}

.sob-wholesale-pagination  > .text:first-of-type::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(10deg) translateX(~"calc(2rem - 3px)");
    z-index: -1;
    background: #ffffff;
}

.sob-wholesale-pagination  > .text:last-of-type {
    padding-right: 4rem;
}

.sob-wholesale-pagination > .text:last-of-type::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(-10deg) translateX(~"calc(-1rem - 6px)");
    z-index: -1;
    background: #ffffff;
}

.sob-wholesale-pagination  > .counter {
    display: inline-block;
    position: relative;
    padding: 0.5rem 2rem;
}

.sob-wholesale-pagination  > .counter > .background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #6a558e;
    border-radius: 0.7rem;
}

.sob-wholesale-pagination  > .counter > .background::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: -4px;
    left: -4px;
    z-index: -1;
    border-radius: 1rem;
    border: solid #ffffff 4px;
    background: #6a558e;
}

.sob-wholesale-pagination  > .counter > .background::after {
    content: "";
    width: 80%;
    padding-top: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    border: solid #fff 4px;
    background: #6a558e;
}

.sob-wholesale-pagination  > .counter > .number {
    position: relative;
    display: inline-block;
    z-index: 1;
    transform: translateY(-2px);
    color: #ffffff;
    cursor: pointer;

}

.sob-wholesale-pagination > .counter > .number:first-of-type {
    font-size: 2rem;
}

.sob-wholesale-pagination   > .counter > .number:first-of-type::after {
    content: "/";
    display: inline-block;
    padding: 0 0.2rem;
    font-size: 2.5rem;
}

.sob-wholesale-pagination   > .counter > .number:last-of-type {
    font-size: 1rem;
    transform: translateY(-0.8rem) translateX(-0.2rem);
}
@media screen and (max-width: 600px) {
    .sob-wholesale-pagination
    > .text {
        display: block;

    }

    .sob-wholesale-pagination > .text:first-of-type {
        margin-bottom: 3rem;
    }

    .sob-wholesale-pagination  > .text:last-of-type {
        margin-top: 4rem;
    }
}



.paginate-list {
    position: absolute;
    z-index: 200;
    background: #dddd;
    padding: 10px;
    border-radius: 5px;
    margin: 48px auto;
    display: none;
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
}
.paginate-list ul,.paginate-list ul li{
   list-style: none;
    padding: 0px;
    cursor: pointer;
}

/* loader*/


 .sob-wholesale-spinner-ring-hidden{
     display: none;
 }
.sob-wholesale-spinner-ring
{
    position:absolute;
    top:10%;
    left:50%;
    transform:translate(-50%,-50%);
    width:150px;
    height:150px;
    background:transparent;
    border:3px solid #3c3c3c;
    border-radius:50%;
    text-align:center;
    line-height:150px;
    font-family:sans-serif;
    font-size:20px;
    color:#fff000;
    letter-spacing:4px;
    text-transform:uppercase;
    text-shadow:0 0 10px #fff000;
    box-shadow:0 0 20px rgba(0,0,0,.5);
    z-index: 2000;
    background: #000;
}
.sob-wholesale-spinner-ring:before
{
    content:'';
    position:absolute;
    top:-3px;
    left:-3px;
    width:100%;
    height:100%;
    border:3px solid transparent;
    border-top:3px solid #fff000;
    border-right:3px solid #fff000;
    border-radius:50%;
    animation:animateC 2s linear infinite;
}
.sob-wholesale-spinner-ring span
{
    display:block;
    position:absolute;
    top:calc(50% - 2px);
    left:50%;
    width:50%;
    height:4px;
    background:transparent;
    transform-origin:left;
    animation:animate 2s linear infinite;
}
.sob-wholesale-spinner-ring span:before
{
    content:'';
    position:absolute;
    width:16px;
    height:16px;
    border-radius:50%;
    background:#fff000;
    top:-6px;
    right:-8px;
    box-shadow:0 0 20px #fff000;
}
@keyframes animateC
{
    0%
    {
        transform:rotate(0deg);
    }
    100%
    {
        transform:rotate(360deg);
    }
}
@keyframes animate
{
    0%
    {
        transform:rotate(45deg);
    }
    100%
    {
        transform:rotate(405deg);
    }
}



/* ===========================
   ====== Search Box ======
   =========================== */

.sob-wholesale-search
{
    border: 2px solid #CF5C3F;
    overflow: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    width: 40%;
    font-family: vazir;
    font-weight: 300;
}

.sob-wholesale-search input[type="text"]
{
    border: 0px;
    width: 75%;
    padding: 10px 10px;
}

.sob-wholesale-search input[type="text"]:focus
{
    outline: 0;
}

.sob-wholesale-search button
{
    border: 0px;
    background: none;
    background-color: #CF5C3F;
    color: #fff;
    float: left;
    padding: 10px;
    border-radius-top-right: 5px;
    -moz-border-radius-top-right: 5px;
    -webkit-border-radius-top-right: 5px;
    border-radius-bottom-right: 5px;
    -moz-border-radius-bottom-right: 5px;
    -webkit-border-radius-bottom-right: 5px;
    cursor:pointer;
    height: 45px;
}

/* ===========================
   ====== Medua Query for Search Box ======
   =========================== */

@media only screen and (min-width : 150px) and (max-width : 780px)
{
{}
    .sob-wholesale-search
    {
        width: 95%;
        margin: 0 auto;
    }

}

.sob-wholesale-order{
    width:100%;
    display: flex;
    height:50px;
    margin: 10px auto;
}
.sob-wholesale-order .sob-wholesale-input-text{
    width: 80px;
    height: 50px;
    border-radius: 5px;
    margin: auto 5px;
}
.sob-wholesale-order .sob-wholesale-button{
    height: 50px;
    border-radius: 5px;
    margin: auto 5px;
    background: #383838;
    color:#fff;

}


