.productCat{
    height: 100%;
    background-image: url('../images/spback.jpg');
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    border-radius: 10px;
}
.productCat .img{
    border-radius: 10px;
}
.vnt-product .row{
    margin: 0 -15px;
}
.vnt-product .row > div{
    padding: 0 15px;
    margin-bottom: 30px;
}
.productCat .img{
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}
.productCat .img img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: -webkit-transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1);
    transition: transform 4s cubic-bezier(0,.6,.45,1), -webkit-transform 7s cubic-bezier(0,.6,.45,1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.productCat:hover .img img{
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}
.productCat .tend{
    padding: 17px 15px;
    text-align: center;
    text-transform: uppercase;
}
.productCat .tend a{
    display: block;
    font-size: 18px;
    line-height: 26px;
    max-height: 52px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*=====================================================*/
.product{
    /* margin-bottom: 30px; */
    position: relative;
}
.product .wrap{
    padding: 10px;
    margin-bottom: 20px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.product .img{
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}
.product .img img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.product:hover .img img{
    -webkit-transform:translate(-50%, -50%) scale(1.05);
    -ms-transform:translate(-50%, -50%) scale(1.05);
    -o-transform:translate(-50%, -50%) scale(1.05);
    transform:translate(-50%, -50%) scale(1.05);
}
.product .caption{
    padding: 0 15px;
}
.product .tend{
    margin-bottom: 10px;
}
.product .tend a{
    display: block;
    font-size: 16px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    font-weight: 600;
    text-align: center;
    color:#ffdb00;
}
.product:hover .tend a{
    
}
.product .price{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product .price .red{
    font-size: 14px;
    line-height: 24px;
    color:#ffffff;
    font-weight: bold;
    margin:0 5px;
}
.product .price .nor{
    font-size: 12px;
    line-height: 21px;
    color:#999999;
    text-decoration: line-through;
    margin:0 5px;
}
.product .ribbon{
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
    pointer-events: none;
}
.product .ribbon .rib{
    font-size: 12px;
    color: #ffffff;
    line-height: 25px;
    padding: 0 5px;
    border-radius: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.product .pc{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    pointer-events: none;
    width: 40px;
    height: 40px;
    background: #ef5926;
    border-radius: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    line-height: 40px;
    font-weight: bold;
    pointer-events: none;
}
/*============================================================*/
.productTools{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}
.productTools .gridT{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.productTools .gridT .col{
    margin-left: 10px;
}
.productTools .gridT .col:first-child{
    margin-left: 0;
}
.filter{
    position: relative;
}
.filter .txt{
    font-size: 13px;
    line-height: 21px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.filter .icon {
    background: #1c3a45;
    width: 190px;
    padding: 11px 15px;
    position: relative;
    cursor: pointer;
}
.filter .icon:before{
    content: "\f0dc";
    font-family: fontAwesome;
    position: absolute;
    right:15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.filter .content{
    padding: 10px 15px;
    background: #f6f6f6;
    color: #333333;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.15);
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    min-width: 250px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.filter.active .content{
    opacity: 1;
    visibility: initial;
    pointer-events: auto;
}
.myCheckbox input{
    display: none;
}
.myCheckbox {
    padding-left: 15px;
    position: relative;
    margin-bottom: 5px;
    cursor: pointer;
}
.myCheckbox:hover{
    color: #ffcc00;
}
.myCheckbox a:before{
    content: "\f096";
    font-family: FontAwesome;
    position: absolute;
    left: 0px;
    top: 0;
    font-size: 13px;
    line-height: 21px;
    color:#999999;
}
.myCheckbox.active a:before{
    content: "\f14a";
    color: #ffcc00;
}
.myCheckbox span{
    color:#999999;
}
/*==================THUMBNAIL====================*/
.productWrap{
    margin-bottom: 30px;
}
.productThumbnail{
    margin-bottom: 25px;
}
div#thumbnail-for{
    margin-bottom:16px
}
div#thumbnail-for .img {
    padding-top: 100%;
    overflow: hidden;
    position: relative;
}
div#thumbnail-for img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
div#thumbnail-for .slick-arrow{
    width:40px;
    height:40px;
    background: rgba(0,0,0,0.35);
    border:none;
    font-size: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    color: #ffffff;
    border-radius: 5px;
}
div#thumbnail-for .slick-prev{
    left:10px;
}
div#thumbnail-for .slick-next{
    right:10px;
}
div#thumbnail-for .slick-arrow:before{
    font-family: FontAwesome;
    position: absolute;
    font-size: 30px;
    line-height: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
div#thumbnail-for .slick-prev:before{
    content: "\f104";
}
div#thumbnail-for .slick-next:before{
    content: "\f105";
}
div#thumbnail-for .slick-arrow:hover{
    color:#f7a225;
}
div#thumbnail-nav .slick-track{
    margin: 0;
}
div#thumbnail-nav .slick-list{
    margin:0 -8px;
}
div#thumbnail-nav .item{
    padding:0 8px;
}
div#thumbnail-nav .item .img{
    cursor: pointer;
}
div#thumbnail-nav .item .img img{
    width:100%;
}
div#thumbnail-nav .slick-slide.slick-current .img{
    position: relative;
}
div#thumbnail-nav .slick-slide.slick-current .img:before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: solid 1px #f7a225;
}
/*========================================================*/
.the-wrap{
    padding: 20px 25px;
    background: #1c3a45;
}
.the-title{
    font-size: 25px;
    line-height: 33px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 25px;
    color: #f7a225;
}
.the-title h1,
.the-title h2{
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}
.the-attr ul li{
    margin-bottom: 15px;
}
.the-attr .at{
    width: 100px;
    float: left;
    font-weight: 600;
}
.the-attr .vpri{
    position: relative;
    top: 10px;
}
.the-attr .as{
    overflow: hidden;
}
.the-attr ul li.nofloat .at{
    float: none;
    margin-bottom: 5px;
}
.the-price{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 0
}
.the-price .red{
    font-size: 26px;
    line-height: 34px;
    font-weight: bold;
    color: #f7a225;
    margin-right: 10px;
}
.the-price .nor{
    font-size: 18px;
    line-height: 26px;
    color: #888888;
    text-decoration: line-through;
}
.the-select ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.the-select ul li {
    margin-right: 10px;
    margin-bottom: 5px;
    background: #ffffff;
    border: solid 1px #dddddd;
    color: #555555;
    padding: 5px 16px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    cursor: pointer;
}
.the-select ul li:hover,
.the-select ul li.active{
    border-color: #f7a225;
}
.the-select ul li input{
    display: none;
}
.the-size{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
}
.the-size .sitem{
    width: 70px;
}
.the-size .sitem a{
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 13px;
    line-height: 23px;
    padding: 5px;
    text-align: center;
    color: #fff;
}
.the-size .sitem.active a{
    border-color: #f7a225;
    color: #f7a225;
}
.the-des p{
    padding: 0;
    padding-left: 15px;
    position: relative;
    color: #aaaaaa;
}
.the-des p:before{
    content: "\f111";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 5px;
    line-height: 22px;
}
.the-quantity{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.the-quantity .txt{
    font-weight: 500;
    margin-right: 10px;
}
.the-quantity .quantity{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.the-quantity .quantity button{
    border:none;
    width: 30px;
    height: 35px;
    background: #dddddd;
    color: #333;
    padding: 0;
    font-size: 10px;
}
.the-quantity .quantity input{
    width: 85px;
    height: 35px;
    border: solid 1px #dddddd;
    text-align: center;
    font-size: 16px;
    line-height: 24px;
}
.productButton .button{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}
.the-button{
    margin-bottom: 25px;
}
.the-button ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    gap: 15px 0;
}
.the-button ul li{
    width: 50%;
    padding: 0 5px;
}
.the-button li a{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    font-size: 20px;
    line-height: 32px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
.the-button li a i{
    position: relative;
    margin-right: 10px;
    top: -2px;
}
.the-button li.vadds a{
    background-color: #53b047;
    color: #fff;
}
.the-button li.vadds a:hover{
    background-color: #58a24f;
}
.the-button li.vbook a{
    background-color: #f7a225;
    color: #fff;
}
.the-button li.vbook a:hover{
    background-color: #cf9237;
}
.the-share ul{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.the-share ul li{
    margin-right: 10px;
}
/*============================================================*/
.affixWrap{
    position: absolute;
    right: 100%;
    margin-right: 10px;
    width: 120px;
}
.affixProduct ul li{
    margin-bottom: 10px;
}
.affixProduct ul li a {
    display: block;
    width: 120px;
    height: 120px;
    background: #1c3a45;
    text-transform: uppercase;
    position: relative;
    color:#fff;
}
.affixProduct ul li a span{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width:95%;
    text-align: center;
}
.affixProduct ul li.active a{
    background: #f7a225;
    color:#ffffff;
}
.productContent{
    position: relative;
    margin-bottom: 10px;
}
.boxProduct{
    margin-bottom: 30px;
}
.boxProduct .title{
    font-size: 25px;
    line-height: 33px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: solid 3px #0b2f3b;
    position: relative;
    color: #f7a225;
}
.boxProduct .title:before{
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 200px;
    border-bottom: solid 3px #f7a225;
}
.the-document li{
    margin-bottom: 20px;
}
.the-document li a{
    font-size: 18px;
    line-height: 25px;
    display: inline-block;
    position: relative;
    padding-left: 36px;
}
.the-document li a::before{
    content: '\f1c1';
    font-family: fontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #f7a225;
    font-size: 24px;
}
/*==================================================*/
.theOther .title{
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: solid 1px rgba(255,255,255,0.15);
    position:relative;
}
.theOther .title:before{
    content:"";
    position:absolute;
    bottom:-1px;
    left:0;
    width:55px;
    border-bottom:solid 3px #f7a225;
}
.theOther .title h2{
    font-size: 26px;
    line-height: 36px;
    text-transform: uppercase;color:#f7a225;
}
.theOther ul li{
    padding-left: 15px;
    position: relative;
    margin-bottom: 10px;
}
.theOther ul li:before{
    content: "\f0da";
    font-family: fontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    line-height: 22px;
    color:#999999;
}
.theOther ul li a{
    font-size: 15px;
    line-height: 23px;
}
.theOther ul li a span{
    font-size: 14px;
    line-height: 22px;
    color:#999999;
}
#slideOther .slick-list{
    margin: 0 -15px;
}
#slideOther .item{
    padding: 0 15px;
}
#slideOther .slick-arrow {
    position: absolute;
    right: 0;
    top: -80px;
    background: #e5e5e5;
    color: #999999;
    border: none;
    font-size: 0;
    width: 40px;
    height: 40px;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 2;
}
#slideOther .product{
    margin-bottom: 0;
}
#slideOther .slick-prev{
    margin-right: 45px;
}
#slideOther .slick-arrow:before{
    font-family: FontAwesome;
    font-size:20px;
    line-height: 28px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#slideOther .slick-prev:before{
    content:"\f104";
}
#slideOther .slick-next:before{
    content:"\f105";
}
#slideOther .slick-next{
    background: #f7a225;
}
#slideOther .slick-next:before{
    color:#ffffff;
}
#slideOther .service{
    margin-bottom: 0;
}

/* <=== vhprodutpg ===> */
.tpprodutha{
    margin-bottom: 45px;
}
.tpprodutha .hagrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}
.tpprodutha .hagrip > div{
    padding: 0 30px;
}
.tpprodutha .hagrip .mcol{
    width: 43.09%;
}
.tpprodutha .hagrip .hcol{
    width: calc(100% - 43.09%);
}
.tpprodutha .hathumb img{
    width: 100%;
}
.tpprodutha .dstitle{
    padding-top: 12px;
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.tpprodutha .dstitle, .tpprodutha .dstitle h1, .tpprodutha .dstitle h2{
    font-size: 35px;
    line-height: 45px;
    font-weight: bold;
}
.tpprodutha .dstitle::before{
    content: '';
    position: absolute;
    top: 0;
    width: 35px;
    height: 3px;
    background-color: #f7a225;
}
.tpprodutha .dsconts{
    font-size: 15px;
    line-height: 25px;
}
.tpproduthb .hbitem{
    margin-bottom: 20px;
}
.tpproduthb .hbitem:last-child{
    margin-bottom: 0;
}
.tpproduthb .hbtitle{
    padding: 12px 20px;
    background-color: #f7a225;
    text-transform: uppercase;
    margin-bottom: 35px;
} 
.tpproduthb .hbtitle, .tpproduthb .hbtitle h2, .tpproduthb .hbtitle h3{
    font-size: 25px;
    line-height: 36px;
    font-weight: bold;
}
.tpproduthb .hbtitle, .tpproduthb .hbtitle a{
    color: #fff;
}
.tpproduthb .hbgrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -22.5px;
}
.tpproduthb .hbgrip > div{
    padding: 0 22.5px;
    width: 33.3333%;
    margin-bottom: 30px;
}
.itproduthb .thumb a{
    display: block;
    padding-top: 65.56%;
    position: relative;
    overflow: hidden;
    border: 1px solid #dddddd;
    background-color: #fff;
}
.itproduthb .thumb a img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}
.itproduthb .decss{
    text-align: center;
    padding-top: 20px;
    position: relative;
}
.itproduthb .decss::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    width: 65px;
    background-color: #f7a225;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.itproduthb:hover .decss::before{
    width: 100%;
}
.itproduthb .dstitle, .itproduthb .dstitle h3{
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
}
.itproduthb:hover .dstitle a{
    color: #f7a225;
}
/* <=== vhprodutpg ===> */

/* <=== vhpopregis ===> */
.vhpopregis{
    overflow: hidden;
	background-color: #fff;
}
.vhpopregis .rglogos{
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 20px;
    text-align: center;
}
.vhpopregis .rgtitle{
    text-align: center;
    text-transform: uppercase;
	padding: 15px;
	background-color: #f5f5f5;
    color: #333;
}
.vhpopregis .rgtitle i{
	color: #231f20;
	font-size: 30px;
	margin-right: 5px;
}
.vhpopregis .rgtitle, .vhpopregis .rgtitle h2{
    font-size: 26px;
    line-height: 40px;
    font-weight: 700;
}
.vhpopregis .rgtitle h2{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.vhpopregis .rgtitle h2 img{
    min-width: 30px;
    margin-right: 15px;
}
.vhpopregis .rgconts{
	padding: 35px 20px 50px;
}
.vhpopregis .ctinner{
	max-width: 810px;
	margin: 0 auto;
}
.vhpopregis .vvinfo{
	max-width: 410px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.vhpopregis .vvinfo .ifgrip{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin: 0 -10px;
}
.vhpopregis .vvinfo .ifgrip > div{
	padding: 0 10px;
}
.vhpopregis .vvinfo .ifgrip .lcol{
	width: 120px;
}
.vhpopregis .vvinfo .ifgrip .rcol{
	width: calc(100% - 120px);
}
.vhpopregis .vvinfo .thumb{
	display: block;
	padding-top: 100%;
	position: relative;
	border: 1px solid #dddddd;
}
.vhpopregis .vvinfo .thumb img{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
}
.vhpopregis .vvinfo .dstitle{
	margin-bottom: 5px;
}
.vhpopregis .vvinfo .dstitle, .vhpopregis .vvinfo .dstitle h3{
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
}
.vhpopregis .vvinfo .dsprice{
	color: #cc2338;
	font-size: 16px;
	font-weight: bold;
}
.vhpopregis .frmgrip{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -30px;
}
.vhpopregis .frmgrip > div{
    padding: 0 30px;
    width: 50%;
}
.vhpopregis .frmgroup{
    margin-bottom: 12px;
}
.vhpopregis .frmgroup > label{
    margin-bottom: 5px;
    display: block;
    font-size: 13px;
    line-height: 21px;
    font-weight: 400;
}
.vhpopregis .frmgroup .vvicon{
    position: relative;
}
.vhpopregis .frmgroup input, .vhpopregis .frmgroup textarea, .vhpopregis .frmgroup select{
    width: 100%;
    height: 45px;
    border: 1px solid #dddddd;
    outline: none;
    color: #333;
	padding: 0 12px;
	border-radius: 3px;
}
.vhpopregis .frmgroup select{
	padding: 0 20px 0 12px;
}
.vhpopregis .frmgroup textarea{
    padding: 10px 12px;
    resize: none;
    height: 100px;
}
.vhpopregis .frmgroup .vvicon::before{
    font-family: fontAwesome;
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #9e9e9e;
}
.vhpopregis .frmgroup .fa-code::before{
    content: '';
    width: 13px;
    height: 9px;
    background-image: url('../images/product/icode.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 1;
    top: 18px;
}
.vhpopregis .vvcheck ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
}
.vhpopregis .vvcheck li{
    margin-right: 27px;
}
.vhpopregis .vvcheck li:last-child{
    margin-right: 0;
}
.vhpopregis .vvcheck label{
    margin-bottom: 0;
    font-size: 13px;
    line-height: 21px;
    padding-left: 25px;
    position: relative;
    font-weight: 400;
    cursor: pointer;
}
.vhpopregis .vvcheck .radiobtn{
    display: block;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #fff;
    border-radius: 100%;
}
.vhpopregis .vvcheck .radiobtn::before{
    content: '\f00c';
    font-family: fontAwesome;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 10px;
    color: #253d84;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    opacity: 0;
}
.vhpopregis .vvcheck input:checked ~ .radiobtn::before{
    opacity: 1;
}
.vhpopregis .vvcheck label input{
    position: absolute;
    z-index: -1111;
    opacity: 0;
}
.vhpopregis .input-group{
    position: relative;
    display: table;
    border-collapse: separate;
}
.vhpopregis .input-group-img{
    width: 1%;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle;
}
.vhpopregis .input-group-img img{
    max-width: inherit;
}
.vhpopregis .frmbutton {
	margin-top: 25px;
	margin-bottom: 20px;
	text-align: center;
}
.vhpopregis .frmbutton button{
    height: 55px;
    min-width: 200px;
    text-align: center;
    border: none;
    background-color: #31c7ff;
    color: #fff;
    font-size: 13px;
    line-height: 22px;
    padding: 5px 10px;
	text-transform: uppercase;
	font-weight: bold;
}
.vhpopregis .frmbutton button:hover{
	background-color: #121011;
}
.vhpopregis .frmbutton button span{
    display: inline-block;
    padding-right: 15px;
    position: relative;
}
.vhpopregis .frmbutton button span::before{
    content: '\f105';
    font-family: fontAwesome;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.vhpopregis .frmnotefs{
	font-size: 15px;
	line-height: 23px;
	text-align: center;
    color: #333;
}
.vhpopregis .frmnotefs a{
	font-size: 18px;
	font-weight: 600;
	color: #cc2338;
}
/* <=== vhpopregis ===> */

/* <=== vstyregis ===> */
.vstyregis{
    z-index: 9999999;
}
.vstyregis .fancybox-slide{
    padding: 10px;
}
.vstyregis .fancybox-content {
    background-color: transparent;
    margin: 0 auto;
	max-width: 970px;
	margin-top: 50px;
}
.vstyregis .fancybox-close-small{
    right: 0;
    top: -50px;
    height: 50px;
    width: 100px;
    background-color: transparent;
    padding: 0;
    color: #fff;
    opacity: 1;
}
.vstyregis .fancybox-close-small::before{
    content: 'Đóng';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.vstyregis .fancybox-close-small::after{
    content: '\f057';
    font-family: fontAwesome;
    font-weight: 400;
    position: absolute;
    top: 52%;
    right: 45px;
    transform: translate(0%, -50%);
    font-size: 18px;
    line-height: 27px;
}
.vstyregis .fancybox-close-small svg{
    display: none;
}
.vchange, .vchange body{
	width: 100%;
	min-width: auto;
	background-color: transparent;
}
/* <=== vstyregis ===> */
@media all and (max-width: 1366px){
    .productContent{
        padding-left: 120px;
    }
    .affixWrap{
        width: 100px;
        left: 0;
        right:initial;
        margin-right: 0;
    }
    .affixProduct ul li a{
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
}
@media all and (max-width: 991px){
    .vnt-product .row{
        margin: 0 -5px;
    }
    .vnt-product .row > div{
        padding: 0 5px;
        margin-bottom: 20px;
    }
    .productTools{
        display: block;
    }
    .productTools .gridT{
        margin: 0 -10px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    .productTools .gridT .col{
        width: 50%;
        padding: 0 10px;
        margin-left: 0;
    }
    .filter .icon{
        width: 100%;
    }
    .filter .content{
        min-width: initial;
        width: 100%;
    }
    .the-wrap{
        padding: 18px 15px 22px;
    }
    .the-title{
        font-size: 20px;
        line-height: 30px;
    }
    .boxProduct .title{
        font-size: 20px;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }
    #slideOther .slick-list{
        margin: 0 -10px;
    }
    #slideOther .item{
        padding: 0 10px;
    }
    #slideOther{
        padding-bottom: 70px;
    }
    #slideOther .slick-arrow {
        top: initial;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    #slideOther .slick-prev{
        margin-left: -25px;
    }
    #slideOther .slick-next{
        margin-left: 25px;
    }
    .productContent{
        padding-left: 0;
    }
    .productCat, .productCat .img{
        border-radius: 5px;
    }
    .productCat .tend{
        padding: 7px 5px;
    }
    .productCat .tend a{
        font-size: 13px;
        line-height: 21px;
        max-height: 42px;
    }
    .product .wrap{
        margin-bottom: 10px;
        padding: 5px 6px;
    }
    .product .ribbon{
        top: 5px;
        left: 5px;
    }
    .product .pc{
        width: 38px;
        height: 38px;
        top: 4px;
        right: 4px;
    }
    /* <=== vhprodutpg ===> */
    .tpprodutha{
        margin-bottom: 25px;
    }
    .tpprodutha .hagrip .mcol{
        width: 100%;
        margin-bottom: 20px;
    }
    .tpprodutha .hagrip .hcol{
        width: 100%;
    }
    .tpprodutha .dstitle{
        margin-bottom: 8px;
    }
    .tpprodutha .dstitle, .tpprodutha .dstitle h1, .tpprodutha .dstitle h2{
        font-size: 25px;
        line-height: 35px;
    }
    .tpprodutha .dsconts{
        font-size: 14px;
        line-height: 24px;
        text-align: justify;
    }
    .tpproduthb{
        margin-bottom: -30px;
    }
    .tpproduthb .hbgrip{
        margin: 0 -10px;
    }
    .tpproduthb .hbgrip > div{
        padding: 0 10px;
        margin-bottom: 20px;
    }
    .itproduthb .decss{
        padding-top: 10px;
    }
    .itproduthb .dstitle, .itproduthb .dstitle h3{
        font-size: 14px;
        line-height: 21px;
    }
    .tpproduthb .hbtitle{
        margin-bottom: 20px;
    }
    .tpproduthb .hbtitle, .tpproduthb .hbtitle h2, .tpproduthb .hbtitle h3{
        font-size: 18px;
        line-height: 26px;
    }
    .tpproduthb .hbitem{
        margin-bottom: 10px;
    }
    /* <=== vhprodutpg ===> */

    /* <=== vhpopregis ===> */
	.vhpopregis .frmgrip{
		margin: 0 -20px;
	}
	.vhpopregis .frmgrip > div{
		padding: 0 20px;
	}
	/* <=== vhpopregis ===> */

    .the-document li a{
        font-size: 15px;
        padding-left: 28px;
    }
    .the-document li a::before{
        font-size: 20px;
    }
}
@media all and (max-width: 767px){
    /* <=== vhprodutpg ===> */
    .tpproduthb .hbgrip > div{
        width: 50%;
    }
    /* <=== vhprodutpg ===> */
}
@media all and (max-width: 700px){
	/* <=== vhpopregis ===> */
	.vhpopregis .frmgrip > div{
		width: 100%;
	}
	.vhpopregis .rgtitle, .vhpopregis .rgtitle h2{
		font-size: 22px;
		line-height: 34px;
	}
	.vhpopregis .rgconts{
		padding: 15px 20px 20px;
	}
	.vhpopregis .frmbutton{
		text-align: center;
		margin-top: 20px;
	}
	.vhpopregis .vvinfo .ifgrip{
		justify-content: flex-start;
		margin: 0 -7px;
	}
	.vhpopregis .vvinfo .ifgrip > div{
		padding: 0 7px;
	}
	.vhpopregis .vvinfo .ifgrip .lcol{
		width: 90px;
	}
	.vhpopregis .vvinfo .ifgrip .rcol{
		width: calc(100% - 90px);
	}
	.vhpopregis .vvinfo .dstitle, .vhpopregis .vvinfo .dstitle h3{
		font-size: 16px;
		line-height: 24px;
	}
	.vhpopregis .vvinfo .dsprice{
		font-size: 14px;
	}
	/* <=== vhpopregis ===> */
    .the-button ul{
        max-width: 250px;
    }
    .the-button ul li{
        width: 100%;
    }
}
@media all and (max-width: 460px){
    .product .tend a{
        font-size: 14px;
        line-height: 22px;
        height: 44px;
        overflow: hidden;
    }
}
@media all and (max-width: 370px){
    .vnt-product .row .col-xs-6{
        width: 100%;
    }
    .productTools .gridT .col {
        width: 100%;
        margin-bottom: 10px;
    }

}