/********************************************/
/* Shops
/********************************************/
.f-zero {
    font-size: 0;
}

.shops-header {
    position: relative;
    display: block;
    background: #dffffc;
    font-size: 0;
    text-align: center;
    padding: 50px 0 35px;
}

.shops-step {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 220px;
    height: auto;
    margin: 0 70px;
}

.shops-step:after {
    position: absolute;
    display: block;
    content: '';
    width: 114px;
    height: 54px;
    top: 43px;
    right: -135px;
    background-image: url(../img/icons/shops-arrow.png);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.shops-step:last-of-type:after {
    display: none;
}

.shops-step img {
    position: relative;
    display: block;
    width: auto;
    height: 150px;
    margin: 0 auto 25px;
}

.shops-step span {
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #434040;
    text-transform: uppercase;
}

.shops-newest {
    position: relative;
    display: block;
    background: #fff;
    padding: 35px 0;
    text-align: center;
    overflow: hidden;
}

.shops-newest-title {
    position: relative;
    display: block;
    margin-bottom: 17px;
    font-size: 30px;
    font-weight: 400;
    color: #3d3d3d;
    text-transform: capitalize;
}

.shops-newest-text {
    position: relative;
    display: block;
    margin-bottom: 17px;
    font-size: 16px;
    font-weight: 400;
    color: #909090;
}

.shops-newest-text a {
    color: #17a3dd;
    text-decoration: underline;
}

.shops-slider {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.shops-slider .owl-prev,
.shops-slider .owl-next {
    position: absolute;
    display: block;
    top: 38%;
    font-family: "matbuu";
    font-size: 38px;
    color: #cfcfcf;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.shops-slider .owl-prev {
    left: -60px;
}

.shops-slider .owl-prev:before {
    position: relative;
    display: block;
    content: "\7a";
}

.shops-slider .owl-next {
    right: -60px;
}

.shops-slider .owl-next:before {
    position: relative;
    display: block;
    content: "\76";
}

.shops-slider .owl-prev:hover,
.shops-slider .owl-next:hover {
    color: #17a3dd;
}

.shops-slider-item {
    position: relative;
    display: block;
    text-align: center;
}

.shops-slider:not(.owl-loaded) .shops-slider-item {
    display: none;
}

.shops-slider-item-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    padding-top: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.shops-slider-item-image:before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    opacity: 0;

    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.shops-slider-item:hover .shops-slider-item-image:before {
    opacity: 1;
}

.shops-slider-item-title {
    position: relative;
    display: block;
    margin-bottom: 5px;
    font-size: 27px;
    font-weight: 400;
    color: #3d3d3d;
    text-transform: capitalize;
}

.shops-slider-item-count {
    position: relative;
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #b9b9b9;
    text-transform: capitalize;
}

.shops-aside {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 250px;
    height: auto;
    margin-top: 40px;
    padding: 20px 10px;
    background: #fff;
    text-align: left;
    margin-bottom: 50px;
}

.shops-aside span {
    position: relative;
    display: block;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 400;
    color: #3d3d3d;
    line-height: 34px;
    letter-spacing: -0.025em;
}

.shops-aside a {
    position: relative;
    display: block;
    padding: 0 45px 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #3d3d3d;
    line-height: 32px;
    text-transform: capitalize;
    letter-spacing: -0.025em;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: #fff;
}

.shops-aside a:hover,
.shops-aside a.active {
    background: #ececec;
}

.shops-aside a:after {
    position: absolute;
    display: block;
    content: attr(data-count);
    top: 0;
    right: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #a4a4a4;
    text-align: right;
}

.shops-products {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 250px);
    margin-top: 40px;
    padding-left: 15px;
    text-align: left;
}

.shops-product {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: calc(100% / 3 - 34px);
    margin: 0 15px 30px;
    letter-spacing: -0.025em;
    text-align: center;
    margin-bottom: 50px;
}

.shops-product-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 100%;
    margin-bottom: 20px;
    background-size: cover;
    background-position: center center;
}

.shops-product-image:before {
    position: absolute;
    display: block;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    opacity: 0;

    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.shops-product:hover .shops-product-image:before {
    opacity: 1;
}

.shops-product-design {
    position: absolute;
    display: block;
    max-width: 100%;
    top: 50%;
    left: 50%;
    padding: 15px 30px;
    background: #17a3dd;
    border-radius: 999px;
    opacity: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.025em;
    white-space: nowrap;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.shops-product:hover .shops-product-design,
.shops-slider-item:hover .shops-product-design {
    opacity: 1;
}

.shops-product:hover .shops-product-design:hover {
    opacity: .9;
}

.shops-product-report {
    position: absolute;
    display: block;
    bottom: 8%;
    left: calc(50% - 35px);
    font-size: 23px;
    color: #fff;
    opacity: 0;

    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.shops-product-favorite {
    position: absolute;
    display: block;
    bottom: 8%;
    right: calc(50% - 35px);
    font-size: 23px;
    color: #fff;
    opacity: 0;

    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.favorited-toolbutton {
    color: #ff0039;
}

.shops-product:hover .shops-product-report,
.shops-product:hover .shops-product-favorite {
    opacity: 1;
}

.shops-product:hover .shops-product-report:hover,
.shops-product:hover .shops-product-favorite:hover {
    color: #17a3dd;
}

.shops-product-name {
    position: relative;
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: #3d3d3d;
}

.shops-product-type {
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 300;
    color: #3d3d3d;
}

.shops-product-price {
    position: relative;
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: #17a3dd;
}

.edit-design-btn {
    font-size: 20px;
    color: red;
}

.status-approved {
    color: #2ecc71;
}

.status-pending {
    color: #d35400;
}

.status-cancel {
    color: #c0392b;
}

/********************************************/
/* Shop
/********************************************/
.shop-header {
    position: relative;
    display: block;
    height: 375px;
    background-size: cover;
    background-position: center center;
}

.shop-header .inner {
    position: absolute;
    display: block;
    bottom: 0;
    left: 50%;
    padding-left: 250px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.shop-nav {
    position: relative;
    display: block;
    padding-left: 30px;
    font-size: 0;
    text-align: left;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

.shop-nav a {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    padding: 20px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.005em;
    background: rgba(255, 255, 255, 0);
    border-radius: 7px 7px 0 0;
}

.shop-nav a:hover {
    background: rgba(0, 0, 0, .8);
}

.shop-nav a.active {
    background: rgba(255, 255, 255, 1);
    color: #3d3d3d;
}

.shop-content {
    position: relative;
    display: block;
    font-size: 0;
}

.shop-aside {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 250px;
    height: auto;
    margin-top: -195px;
    padding-bottom: 30px;
    background: #fff;
    text-align: left;
    letter-spacing: -0.005em;
    margin-bottom: 30px;
}

.shop-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 18px;
    padding-top: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    cursor: pointer;
}

.shop-image a {
    font-size: 30px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: rgba(82, 51, 51, 0.9);
    color: #fff;
    padding: 10px;
    display: none;
}

.shop-title {
    position: relative;
    display: block;
    padding: 0 25px;
    font-size: 30px;
    font-weight: 600;
    color: #3d3d3d;
}

.cover-change-btn {
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, .7);
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    outline: none;
    padding: 3px 8px;
    position: absolute;
    right: 0;
    top: 50%;
    display: none;
}

.cover-change-btn:hover {
    color: rgba(193, 193, 193, 0.6);
}

.shop-url {
    position: relative;
    display: block;
    padding: 0 25px;
    font-size: 15px;
    font-weight: 400;
    color: #3d3d3d;
}
.shop-earnings {
    position: relative;
    display: block;
    padding: 0px 25px;
    font-size: 30px;
    font-weight: 400;
    color: #2ecc71;
}

.shop-aside hr {
    position: relative;
    display: block;
    width: calc(100% - 20px);
    height: 1px;
    margin: 18px 10px;
    border: 0;
    background: #e8e8e8;
}

.shop-categories {
    position: relative;
    display: block;
    padding: 0 10px;
    background: #fff;
    text-align: left;
}

.shop-categories span {
    position: relative;
    display: block;
    padding: 0 15px;
    font-size: 18px;
    font-weight: 400;
    color: #3d3d3d;
    line-height: 34px;
    letter-spacing: -0.025em;
}

.shop-categories a {
    position: relative;
    display: block;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 300;
    color: #3d3d3d;
    line-height: 32px;
    text-transform: capitalize;
    letter-spacing: -0.025em;
    overflow: hidden;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    background: #fff;
}

.shop-categories a:hover,
.shop-categories a.active {
    background: #ececec;
}

.shop-social {
    position: relative;
    display: block;
    margin-top: 40px;
    padding: 0 20px;
}

.shop-social a {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 51px;
    height: 51px;
    margin: 0 5px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    text-align: center;
    line-height: 51px;
    background: transparent;
}

.shop-social .icon-facebook {
    border-color: #3b5998;
}

.shop-social .icon-twitter {
    border-color: #55acee;
}

.shop-social .icon-instagram {
    border-color: #3f729b;
}

.shop-social .icon-gplus {
    border-color: #dc4e41;
}

.shop-social .icon-facebook:hover {
    background: #3b5998;
}

.shop-social .icon-twitter:hover {
    background: #55acee;
}

.shop-social .icon-instagram:hover {
    background: #3f729b;
}

.shop-social .icon-gplus:hover {
    background: #dc4e41;
}

.shop-social a:before {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 51px;
}

.shop-social .icon-facebook:before {
    color: #3b5998;
}

.shop-social .icon-twitter:before {
    color: #55acee;
}

.shop-social .icon-instagram:before {
    color: #3f729b;
}

.shop-social .icon-gplus:before {
    color: #dc4e41;
}

.shop-social a:hover:before {
    color: #fff;
}

.shops-product-categories {
    display: none;
    border: solid 1px #DCDCDC;
}

.shops-product-categories .navbar-nav li {

    border-bottom: 1px solid #F1F1F1;
}
.categories-badge{
    float: right;
    color: #999;
    font-weight: 300;
}

.edit-content-btn{
    font-size: 15px;
}