@import "global.css";

:root {
	--c1: #3a50b9;
}

.group-menu-left {
	margin: 30px -20px 0 0;
	border-top: 1px solid #c9ced3;
	border-bottom: 1px solid white;
}
ul.menu-primary {
	width: 100%;
	display: flex;
	padding: 12px 0;
	border-top: 1px solid white;
	border-bottom: 1px solid #c9ced3;
}
ul.menu-primary > li {
	width: 25%;
	text-align: center;
}
ul.menu-primary > li > a {
	font-size: 15px;
	max-height: 36px;
	line-height: 20px;
	padding: 8px 10px 9px;
	display: inline-block;
	vertical-align: middle;
	text-transform: uppercase;
}
.group-menu-right {
	margin: 30px 0 0 -20px;
	border-top: 1px solid #c9ced3;
	border-bottom: 1px solid white;
}
ul.menu-right {
	width: 100%;
	display: flex;
	padding: 12px 0;
	border-top: 1px solid white;
	border-bottom: 1px solid #c9ced3;
}
ul.menu-right > li {
	text-align: center;
	position: relative;
}
ul.menu-right > li > a.menu-item {
	display: block;
	font-size: 15px;
	max-height: 36px;
	line-height: 20px;
	padding: 8px 15px 9px;
	text-transform: uppercase;
}
ul.menu-primary > li > a.active,
ul.menu-right > li > a.active {
	color: white;
	border-radius: 3px;
	background: #3a50b9;
}
a.menu-link-search {
	color: #666;
	width: 70px;
	height: 36px;
	padding: 3px;
	float: right;
	margin: 2px 0;
	display: block;
	font-size: 18px;
	border-radius: 3px;
	text-align: center;
	background: #e4e4e4;
}
a.menu-link-phone {
	color: #444;
	height: 40px;
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 40px;
	white-space: nowrap;
}
a.menu-link-phone:hover {
	color: #3a50b9;
}
a.menu-link-phone .fa {
	top: 2px;
	font-size: 20px;
	margin-right: 10px;
	position: relative;
}

/* pagination */
.pagination {
	margin: 0;
}
.pagination>li {
	margin:0 10px 0 0;
	display: inline-block;
	vertical-align: middle;
}
.pagination>li:last-child {
	margin-right: 0;
}
.pagination>li>a,
.pagination>li>span {
	padding: 0;
	color: #333;
	width: 40px;
	height: 40px;
	font-size: 16px;
	background: white;
	line-height: 38px;
	text-align: center;
	border: 1px solid #c9ced3;
	border-radius: 3px ! important;
}
.pagination>li>a:hover,
.pagination>li.active>span,
.pagination>li.active>span:hover {
	color: white;
	background: #374a9f;
	border-color:#374a9f;
}

/* breadrumb */
.breadrumb {
    font-size: 13px;
}
.breadrumb li {
    color: #666666;
    padding: 0 10px;
    position: relative;
    display: inline-block;
}
.breadrumb li:first-child {
	padding-left: 0;
}
.breadrumb li:last-child {
	padding-right: 0;
}
.breadrumb li a::after {
    color: #333;
    right: -3px;
    content: '/';
    position: absolute;
}
.breadrumb li span {
    color: #999999;
}

/* goTop */
#goTop {
    opacity: 0;
    color: #999;
    right: 13px;
    width: 50px;
    height: 50px;
    z-index: 999;
    bottom: 13px;
    font-size: 26px;
	cursor: pointer;
    position: fixed;
    line-height: 45px;
    background: white;
    text-align: center;
	border-radius: 100%;
	border: 1px solid #bababa;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
#goTop:hover {
    color: white;
    background: #3a50b9;
    border-color: #3a50b9;
}

/* scale3d */
.scale3d {
    display: block;
    overflow: hidden;
    position: relative;
}
.scale3d>img {
    margin: auto;
    transform: scale3d(1, 1, 1);
    -moz-transform: scale3d(1, 1, 1);
    -webkit-transform: scale3d(1, 1, 1);
    backface-visibility: hidden;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    -moz-transition: opacity 1s, -moz-transform 1s;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
}
.scale3d:hover>img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -moz-transform: scale3d(1.05, 1.05, 1.05);
    -o-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
}

/* effect style */

.effect {
    display: block;
    overflow: hidden;
    position: relative;
}
.effect::after {
    background: rgba(0, 0, 0, 0) linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -75%;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}
.effect:hover::after {
    animation: 1s ease 0s normal none 1 running slash;
    animation: 1s ease 0s normal none 1 running slash;
    -webkit-animation: 1s ease 0s normal none 1 running slash;
    -moz-animation: 1s ease 0s normal none 1 running slash;
}
@-webkit-keyframes slash {
    0% {
        right: 125%;
	}
    125% {
        right: 0;
	}
}
@-moz-keyframes slash {
    0% {
        right: 125%;
	}
    125% {
        right: 0;
	}
}
@keyframes slash {
    0% {
        right: 125%
	}
    125% {
        right: 0;
	}
}

/* maker */
.maker.loading {
	position: fixed;
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 999999;
	top: 0;
	background: rgba(0,0,0,0.5);
}
.maker.loading::after {
	top: 50%;
	left: 50%;
	zoom: 0.5;
	z-index: 1;
	display: block;
	position: absolute;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	content: url(../images/loading.svg);
}

/* scrollbar */
.scrollbar::-webkit-scrollbar {
    width: 6px;
}
.scrollbar::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #3a50b9;
}
.mini-cart-list>.inner::-webkit-scrollbar {
	width: 6px;
}
.mini-cart-list>.inner::-webkit-scrollbar-thumb {
	border-radius: 5px;
    background-color: #3a50b9;
}
.ui-effects-transfer {
	z-index: 99999;
	border-radius: 4px;
	border: 2px solid #3a50b9;
}

@media screen and (max-width: 1200px)
{
	.group-menu-left {
		margin: 30px -70px 0 0;
	}
	.group-menu-right {
		margin: 30px 0 0 -70px;
	}
	ul.menu-primary > li > a {
		font-size: 14px;
		white-space: nowrap;
		padding: 8px 8px 9px;
	}
	ul.menu-right > li > a.menu-item {
		font-size: 14px;
		white-space: nowrap;
		padding: 8px 8px 9px;
	}
	a.menu-link-phone {
		margin-left: 20px;
		margin-right: 20px;
	}
}

@media screen and (max-width: 992px) {
	.group-menu-left {
		margin: 30px 30px 0 0;
	}
	.group-menu-left li:nth-child(3) {
		display: none;
	}
	.group-menu-right {
		margin: 30px 0 0 30px;
	}
	a.menu-link-phone {
		color: gray;
		margin: 0 10px;
		font-size: 18px;
		padding: 4px 20px;
		border-radius: 3px;
		background: #e4e4e4;
	}
	a.menu-link-phone span {
		display: none;
	}
	.header .logo img {
		width: 164px;
		max-width: inherit;
	}
	ul.menu-primary > li {
		width: 33.3333333%;
	}
	a.menu-link-search {
		width: 50px;
	}
}

@media screen and (max-width: 767px) {
	.header .logo img {
		width: 122px;
	}
	#btn-menu,
	a.btn-search {
		color: gray;
		font-size: 30px;
		padding: 3px 2px;
	}
	a.btn-search,
	#btn-menu::before {
		margin: 0;
	}
	a.btn-search {
		padding: 4px 2px;
	}
	
	.entry img {
		height: initial ! important;
	}
}