
/*---------------product-------------------------*/
.product {
    width: 100%;
    display: flex;
    justify-content: center;
}
.product-main {
    display: flex;
    flex-direction: column;
}
.product-top {
	float: left;
	width: 100%;
    padding: 50px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.product-top-main {
    width: 100%;
    max-width: var(--rootWidth);
    padding: 0 15px;
}

.product-gallery {
    width: 50%;
	max-width: 700px;
    height: 100%;
	user-select: none;
    display: flex;
    flex-direction: column;
}
.product-gallery-main {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.product-gallery-small {
    width: 80px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
}
.product-gallery-small-box {
	width: 100%;
	white-space: nowrap;
    display: inline-flex;
    flex-direction: column;
}
.product-gallery-small-item {
	width: 100%;
    height: 0;
    padding-bottom: 100%;
    background: #e7e7e9;
	margin-bottom: 10px;
	position: relative;
	cursor: pointer;
	user-select: none;
    overflow: hidden;
}
.product-gallery-small-item:last-child {
	margin: 0;
}
#product-gallery-small-item::after {
	content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: #000 2px solid;
    -webkit-transition: opacity .2s .1s, top .2s ease-in-out;
    transition: opacity .2s .1s, top .2s ease-in-out;
	z-index: 2;
}
.product-gallery-small-item picture {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-gallery-small-item picture img {
	max-width: 100%;
    max-height: 100%;
}

.product-gallery-big {
    width: calc(100% - 100px);
    position: relative;
    display: flex;
}
.product-gallery-big-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
}
.product-gallery-big-box {
    width: 100%;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}
.product-gallery-item {
    flex-shrink: 0;
    width: 100%;
    display: flex;
    position: relative;
    transition-property: transform;
}
.product-gallery-item-picture {
    width: 100%;
    height: 0;
    position: relative;
    background: #dedede;
    overflow: hidden;
}
.product-gallery-item-picture::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    animation: skeleton-translate 1s infinite;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    z-index: 1;
}
.product-gallery-item-picture-img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2;
}
.product-gallery-nav {
    display: none;
}
.product-gallery-left, .product-gallery-right {
	position: absolute;
    z-index: 2;
    width: 40px;
    height: 40px;
    top: calc(50% - 20px);
    background: #FFF;
    box-shadow: 0 4px 20px rgb(34 34 34 / 15%);
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-gallery-left {
	left: 14px;
}
.product-gallery-right {
	right: 14px;
}
.product-gallery-left i {
    width: 12px;
    height: 12px;
    border-left: #000 2px solid;
    border-top: #000 2px solid;
    transform: rotate(-45deg);
}
.product-gallery-right i {
    width: 12px;
    height: 12px;
    border-right: #000 2px solid;
    border-bottom: #000 2px solid;
    transform: rotate(-45deg);
}
.product-gallery-left:active, .product-gallery-right:active {
    background: #d75692;
}
.product-gallery-left:active i, .product-gallery-right:active i {
    border-color: #FFF;
}
.product-gallter-nav {
    position: absolute;
    padding: 0 10px;
    height: 20px;
    border-radius: 10px;
    background: rgb(0 0 0 / 37%);
    color: #FFF;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    visibility: hidden;
}
.product-gallter-nav-ico {
    margin: 0 2px;
}

.product-gallery-move {
	position: absolute;
    z-index: 1;
    width: 100%;
	height: 100%;
	background: #e7e7e9;
	overflow: hidden;
    cursor: zoom-in;
	top: 0;
	right: 0;
    border-radius: 8px;
    overflow: hidden;
}
.product-gallery-move span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 2;
}
.product-gallery-move:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    animation: skeleton-translate 1s infinite;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}
.product-gallery-share {
    padding-left: 100px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-gallery-share-title {
    font-family: sf-compact-text;
    text-transform: uppercase;
    font-size: 16px;
    color: #000;
    text-align: center;
}
.product-gallery-share-box {
    margin-top: 10px;
    display: flex;
}
.product-share-item {
    margin-right: 30px;
    cursor: pointer;
}
.product-share-item:hover {
    color: #d75692;
}
.product-share-item:last-child {
    margin: 0;
}

.product-info {
	width: 50%;
    padding: 0 0 0 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product-title {
    width: 100%;
	font-weight: 600;
	font-size: 20px;
	color: #000;
}
.product-model {
    margin-top: 10px;
    font-size: 13px;
    color: #000;
    display: flex;
}
.product-model span {
    margin-left: 5px;
}


.product-bottom {
    float: left;
    width: 100%;
    margin: 50px 0 100px 0;
    display: flex;
    flex-direction: column;
}
@media only screen and (max-width: 819px){
    .product-bottom {
        padding: 0 15px;
    }
}
.product-relate {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-relate-head {
    width: 100%;
    color: #000;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.product-relate-head span {
    font-size: 30px;
    font-weight: 300;
    color: #000;
}
.product-relate-box {
	float: left;
    width: 100%;
    margin-top: 30px;
}
@media only screen and (max-width: 1024px){
    .product-top {
        padding: 20px 0;
    }
    .product-gallery-small {
        display: none;
    }
    .product-gallery-big {
        width: 100%;
    }
    .product-gallery-nav {
        position: absolute;
        z-index: 2;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        color: #FFF;
        /*display: flex;*/
        display: none;
    }
    .product-gallery-process {
        position: absolute;
        z-index: 2;
        width: 100%;
        height: 5px;
        background: #CCC;
        left: 0;
        bottom: -5px;
    }
    .product-gallery-process-line {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        background: #000;
    }
    .product-gallery-share {
        padding: 0;
        display: none;
    }
    .product-info {
        padding:  0 0 0 30px;
    }
}
@media only screen and (max-width: 819px){
    .product-gallery-left, .product-gallery-right {
        display: none;
    }
    .product-top {
        flex-direction: column;
        align-items: center;
    }
    .product-gallery {
        float: left;
        position: unset;
        width: 100%;
        max-width: 600px;
    }
    .product-info {
        width: 100%;
        max-width: unset;
        padding: 30px 15px;
    }
    .product-title {
        font-family: sf-compact-text-medium;
        font-size: 16px;
        text-align: center;
    }
    .product-model {
        width: 100%;
        justify-content: center;
    }
}
@media only screen and (max-width: 630px){
    .product-top {
        padding: 0;
    }
    .product-gallery-share {
        margin-top: 10px;
    }
    .product-info {
        padding: 20px 15px;
    }
}

.product-specification {
	width: 100%;
	background: #FFF;
	display: grid;
    grid-template-columns: repeat(auto-fill, calc(33.333333333333% - 10px));
    grid-gap: 15px;
}
.product-specification-item {
    padding: 0 0 0 20px;
    border-left: #CCC 1px solid;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-specification-item::before {
	content: "";
	width: 7px;
	height: 12px;
	background: #000;
	position: absolute;
	left: -4px;
	top: 0;
}
.product-specification-item div {
	font-family: sf-compact-text-medium;
	font-size: 14px;
	line-height: 14px;
	color: #000;
}
.product-specification-item span {
	margin-top: 10px;
    min-height: 30px;
	font-family: sf-compact-text;
	font-size: 13px;
	color: #000;
}


.contactus-form {
    width: 100%;
    margin-top: 30px;
    padding: 20px;
    background: #EEE;
}
.contactus-form h2 {
    font-size: 18px;
    font-weight: 300;
    color: #333;
}
.contactus-form-title {
    width: 100%;
    font-size: 16px;
    font-weight: 00;
    padding-top: 10px;
}
.contactus-form-box {
    width: 100%;
}
.contact-input {
	float: left;
	width: 100%;
	display: flex;
    gap: 20px;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.contact-item {
    width: 100%;
	max-width: 500px;
	display: flex;
	flex-direction: column;
    flex-wrap: nowrap;
    margin-top: 20px;
}
.contact-item label, .contact-textarea label {
    font-family: sf-compact-text-bold;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}
.contact-item input, .contact-textarea textarea, .contact-item select {
	width: 100%;
	height: 40px;
	border: #000 1px solid;
    background: #fafafa;
    border-radius: 6px;
	outline: none;
	color: #000;
	padding: 10px;
	margin-top: 10px;
}
.contact-item input:focus, .contact-textarea textarea:focus {
	border-color: var(--buttonFocusBorderColor);
    -webkit-box-shadow: var(--buttonFocusShadow);
    box-shadow: var(--buttonFocusShadow);
}
.contact-textarea {
	float: left;
	width: 100%;
	margin-top: 30px;
}
.contact-textarea textarea {
	width: 100% !important;
	height: 150px;
	font-family: Circular,"Helvetica Neue",Helvetica,Arial,sans-serif;
	font-weight: 300;
}
.contact-submit {
	float: left;
	width: 200px;
	background: var(--buttonBackgroundColor);
	color: var(--buttonFontColor);
    border-radius: 6px;
	margin-top: 30px;
}

@media only screen and (max-width: 768px){
    .contactus-top {
        grid-template-columns: repeat(auto-fill, calc(50% - 10px));
        grid-gap: 20px;
    }
	.contact-input {
		flex-direction: column;
	}
	.contact-item {
		margin-bottom: 20px;
	}
	.contact-item:last-child {
		margin: 0;
	}
}
@media only screen and (max-width: 500px){
    .contactus-top {
        grid-template-columns: repeat(auto-fill, 100%);
    }
	.contact-main {
		padding: 25px;
	}
	.contact-submit {
		width: 100%;
	}
}