﻿/* Needed for the lightbox */

html, body {
	height: 100%;
	width: 100%;
}

/* CSS for the loading div */

.sp-loading {
	text-align: center;
	max-width: 270px;
	padding: 15px;
	border: 5px solid #eee;
	border-radius: 3px;
	font-size: 12px;
	color: #888;
}

/* Element wrapper */

.sp-wrap {
	display: none;
	line-height: 0;
	font-size: 0;
	position: relative;
	margin: 20px 0px 0px 0px;
    width:100%;
    background: white;
    border-radius: 10px;
}

/* Thumbnails */

.sp-thumbs {
	text-align: center;
	display: inline-block;
    width:100%;
}
.sp-thumbs a:last-child{
    margin-left:0 !important;
}
.sp-thumbs img {
	min-height: 50px;
	min-width: 50px;
	max-width: 50px;
}
.sp-thumbs a:link, .sp-thumbs a:visited {
	width: 75px;
	height: 75px;
    border:1px solid #d1d1d1;
    border-radius:5px;
    box-sizing:border-box;
    margin-left:10px;
	overflow: hidden;
	opacity: .3;
	display: inline-block;
	background-size: cover;
	background-position: center;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
}
.sp-thumbs a:hover {
	opacity: 1;
}

/* Styles for the currently selected thumbnail */

.sp-thumbs a:active, .sp-current {
	opacity: 1!important;
	position: relative;
}

/* Image currently being viewed */

.sp-large {
	position: relative;
	overflow: hidden;
	top: 0;
	left: 0;
    min-height:150px;
    margin-bottom:10px;
    border:1px solid #d1d1d1;
    border-radius:10px;
    padding:15px;
    box-sizing:border-box;
}
.sp-large a img {
	max-width: 100%;
	height: auto;
}
.sp-large a {
	display: block;
    text-align:center;
}

/* Panning Zoomed Image */

.sp-zoom {
	position: absolute;
	left: -50%;
	top: -50%;
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
	display: none;
}
/* Lightbox */

.sp-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, .9);
	z-index: 500;
	display: none;
	cursor: pointer;
}
.sp-lightbox img {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 90%;
	max-height: 90%;
	border: 2px solid #fff;
}
#sp-prev, #sp-next {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	z-index: 501;
	color: #fff;
	padding: 14px;
	text-decoration: none;
	background: #000;
	border-radius: 25px;
	border: 2px solid #fff;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	transition: .2s;
}
#sp-prev {
	left: 10px;
}
#sp-prev:before {
	content: '';
	border: 7px solid transparent;
	border-right: 15px solid #fff;
	position: absolute;
	top: 16px;
	left: 7px;
}
#sp-next {
	right: 10px;
}
#sp-next:before {
	content: '';
	border: 7px solid transparent;
	border-left: 15px solid white;
	position: absolute;
	top: 16px;
	left: 18px;
}
#sp-prev:hover, #sp-next:hover {
	background: #444;
}

/* Tweak styles for small viewports */

@media screen and (max-width: 400px) {
	.sp-wrap {
		margin: 15px 0;
	}
	#sp-prev, #sp-next {
		top: auto;
		margin-top: 0;
		bottom: 25px;
	}
}
.pro-desc{
    padding: 10px 15px;
    box-sizing: border-box;
    font-size:14px;
}
.pro-container{
    max-width:1200px;
    width:98%;
    background-color:white;
    border:1px solid #d1d1d1;
    margin:30px auto 30px auto;
}
.pro-title{
    font-size:11.5px !important;
    padding:15px 15px 10px 15px;
    box-sizing:border-box;
    border-bottom:1px solid #d1d1d1;
    color:#515151;
}
.pro-title > h3{
    color:#989898;
    margin-bottom:0px
}
.main-info{
    text-align:right;
    padding:5px;
    color:#6c6c6c;
}
.main-info > div{
    margin-bottom:15px;
}
.pro-price{
    color:#77a464;
    font-size:25.5px;
}
.pro-brand{
    color: #3078d1;
    text-decoration: underline dashed;
    cursor: pointer;
}
.cat-item{
    background-color:#ededed;
    padding: 3px 8px 3px 8px;
    font-weight: 400;
    color: #6c6c6c;
    text-decoration:none;
}
.not-found{
    color:#c94d4d;
    text-align: center;
    margin: 15px auto;
}
.contact-cart-btn{
    background-color: #46a349;
    color: white;
    display: inline-block;
    cursor:pointer;
    line-height:35px;
    padding: 0px 55px 0px 15px;
    position:relative;
    border-radius:5px;
}
.contact-cart-btn:before{
    font-family: 'FontAwesome';
    content: '\f095';
    background-color: #62b965;
    display: inherit;
    height: 35px;
    vertical-align: top;
    font-size: 20px;
    width: 40px;
    text-align: center;
    line-height: 36px;
    position:absolute;
    right:0px;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
}
.add-cart-btn{
    background-color: #46a349;
    color: white;
    display: inline-block;
    cursor:pointer;
    line-height:35px;
    border-radius:5px;
}
.add-cart-btn:before{
    font-family: 'FontAwesome';
    content: '\f07a';
    background-color: #62b965;
    display: inherit;
    height: 35px;
    vertical-align: top;
    font-size: 20px;
    width: 40px;
    text-align: center;
    line-height: 36px;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
}
.add-cart-btn:after{
    font-family: 'FontAwesome';
    content: '\f00c';
    display: inherit;
    height: 35px;
    vertical-align: top;
    font-size: 20px;
    width: 30px;
    text-align: right;
    line-height: 36px;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
}
.wp-msg-btn{
    background-color: #46a349;
    color: white;
    display: inline-block;
    cursor:pointer;
    line-height:35px;
}
.wp-msg-btn:before{
    font-family: 'FontAwesome';
    content: '\f232';
    background-color: #62b965;
    display: inherit;
    height: 35px;
    vertical-align: top;
    font-size: 30px;
    width: 40px;
    text-align: center;
    line-height: 36px;
}
.pro-share{
    float:left;
    margin-top:25px;
}
.tab{
    padding:15px;
    box-sizing:border-box;
    border-top:1px solid #d1d1d1;
    display:block;
    width:100%;
}
@-webkit-keyframes showTab {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes showTab {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.tabsy > button {
    width: 100%;
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    outline: 0;
    border: 0;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
}
.tabsy > .tabButton:last-child{
    border:none;
}
.tabsy > .tabButton {
    display: block;
    margin-top: 1px;
    background: #f8f8f8;
    color: #4b4b4b;
    text-align: center;
    -webkit-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    padding:5px 10px 5px 10px;
    box-sizing:border-box;
    border-top: 1px solid #d1d1d1;
}
.tabsy > input {
    display: none;
}
.tabsy > input:checked + label + .tab {
    display: block;
}
.tabsy > input:checked + label + .tab > .content {
    -webkit-animation: showTab 250ms ease-in-out;
    animation: showTab 250ms ease-in-out;
}
.tabsy > .tab {
    background: #fff;
    display: none;
}
.price-mob{
    display:none;
}
@media only screen and (max-width: 600px) {
	.pro-table td{
        display: block;
        background-color: initial !important;
        border: none !important;
	}
    .pro-table td:first-child{
        font-weight:bold;
    }
    .pro-table tr{
        border: 1px solid #e7e7e7;
        display: block;
        margin-bottom: 2px;
    }
    .pro-table tr:nth-child(2n){
        background-color:#f4f4f4;
    }
}
@media screen and (min-width: 768px) {
    .tabsy {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        position:relative;
    }
    .tabsy > .tabButton {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        cursor: pointer;
        border-left: 1px solid #d1d1d1;
        border-top:0;
    }
    .tabsy > input:checked + label {
        background: #fff;
        color: #4b4b4b;
        border-top:2px solid var(--theme-color);
    }
    .tabsy > .tab {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

}
@media only screen and (max-width: 768px) {
    .order-side {
        display: none;
    }

    .foot {
        display: none;
    }

    .page-content {
        padding-bottom: 50px;
        box-sizing: border-box;
    }

    .price-mob {
        position: fixed;
        bottom: 0px;
        height: 70px;
        width: 100%;
        left: 0px;
        display: table;
        box-shadow:0 -1px 1px rgba(0,0,0,.14),0 -2px 2px rgba(0,0,0,.05);
        background:#fff;
        z-index:100;
    }
    .price-mob > div{
        display:table-cell;
        text-align: center;
        vertical-align:middle;
    }
    .price-mob > div:last-child{
        width:150px;
    }
    .pro-price{
        font-size:19.5px;
    }
}
.tabButton > span{
    margin-left:5px;
}
.pro-table thead{
    display:none;
}
.pro-table{
	width:100%;
    border-spacing:3px;
    border-collapse:separate;
    font-size:12.5px;
}
.pro-table td{
	border:1px solid #e7e7e7;
	padding:3px;
	box-sizing:border-box;
}
.pro-table tr > td{
	background-color:#fcfcfc;
}
.pro-table tr > td:first-child{
	background-color:#f4f4f4;
	width:155px;
}
.pro-first-row{
    color: #c1c1c1;
    font-size: 10px;
    padding-top:20px;
}
.pro-first-row a{
    color:#2ad0cb;
    font-size:15px;
}
.pro-first-row h1{
    color:black;
    font-size:19px;
}
.engname{
    color: #a6a6a6;
    font-size: 12px;
    font-weight: normal;
    position: relative;
    background: white;
    display: inline-block;
    z-index: 1;
}
.eng-line{
    border-top: 1px solid #dddbdb;
    width: 100%;
    content: '';
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 20px;
            
}
.order-box{
    border: 1px solid #dedee1;
    background: #f9f9f9;
    border-radius: 5px;
    padding: 10px;
    box-sizing: border-box;
}
.order-box > div:last-child{
    text-align:center;
}
.order-icons{
    padding:0px;
    margin:0px;
    list-style:none;
}
.order-icons li{
    padding:10px;
    box-sizing:border-box;
    border-bottom: 1px solid #c1c1c126;
    color: #5e5e5e;
}
.order-icons li > i{
    font-size:21px;
    width:30px;
    display:inline-block;
    text-align:center;
}
.order-icons img{
    max-width:100%;
    filter:invert(100%) sepia(100%) saturate(10%) hue-rotate(86deg) brightness(70%);
    position:absolute;
    top:-16px;
    right:0px;
}


.count-obj{
	max-width:100px;
	display:inline-block;
	font-size:0px;
    direction:ltr;
}
.count-obj{
	display:inline-block;
}
.count-obj input{
	border:none;
	background-color:white;
	width:25px;
	border:2px solid gray;
	font-size:initial;
	padding: 5px 0px;
	color:gray;
	font-family:'Times New Roman';
	text-align:center;
}
.plus{
	border-top-left-radius:35px;
	border-bottom-left-radius:35px;
	cursor:pointer;
}
.minus{
	border-top-right-radius:35px;
	border-bottom-right-radius:35px;
	cursor:pointer;
}
.pcount{
	border-right:none !important;
	border-left:none !important;
	padding:5px !important;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: textfield;
	width:30px !important;
}
.pcount::-webkit-outer-spin-button,
.pcount::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
strike{
    color:#c1c1c1;
    font-size:18px;
}