/*
Theme Name: Afiliamart
Version: 1.1
Theme URI: https://www.oketheme.com/themes/afiliamart-theme/
Author: Tri Yuli Kurniawan
Author URI: https://www.oketheme.com
Description: Afiliamart is a WordPress theme for promoting affiliate products. This theme has a professional design and so many features to increase the sale of affiliate products that you promote. Easy setup and of course SEO friendly!
Tags: afiliamart, afiliasi, affiliate, oketheme
Requires at least: 5.0
Requires PHP: 7.2
*/

:root {
  --color1: #3A588F;
  --color2: #f8991d;
  --colorborder: #EFEFEF;
  --colorbg: #FFF;
  --colortext: #333;
  --colorlight: #FBFBFB;
  --maxwidth: 1200px;
  --bradius: 10px;
}
body {
  font-family: arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--colortext);
  background: var(--colorlight);
	margin: 0;
}

*, :after, :before {
  box-sizing: border-box;
}

nav, ul, li {
  margin: 0;
  padding: 0;
}

/* LINK */
a, h1, h2, h3, h4 {
  color: var(--color1);
  transition: 0.3s;
}

a:hover {
  color: var(--color2);
}

a:active, a:hover, a:link, a:visited {
  text-decoration: none;
}

/* HEADING */

h1 {
  font-size: 160%;
}

h2 {
  font-size: 140%;
}

h3 {
  font-size: 120%;
}

h4 {
  font-size: 110%;
}

h1, h2, h3, h4 {
  margin: 10px 0;
  font-weight: 700;
}

/* FORM, INPUT & BUTTON */
input, radio, select, textarea {
  padding: 5px 10px;
  outline: 0;
  background: var(--colorbg);
  border: 1px solid var(--colorborder);
  border-radius: var(--bradius);
}
input[type=checkbox] {
  border: none;
  box-shadow: none;
  width: auto;
}
.button-primary, .form-submit input, button {
  cursor: pointer;
  padding: .4em .8em;
  background: var(--color1);
  border: 0;
  outline: 0;
  color: #F1F1F1;
  transition: 0.3s;
  border-radius: var(--bradius);
}
.button-primary:hover, .form-submit input:hover, button:hover {
  background: var(--color2);
}
input[type=text]:focus, radio:focus, select:focus, textarea:focus {
  background: var(--colorbg);
}
form ::placeholder {
  font-size: 90%;
  color: #CCC;
}

/* BLOCKQUOTE & CODE */
.wrap-post blockquote{
  font-size: 110%;
  width: 95%;
  margin: 20px auto;
  font-style: italic;
  padding: 1em 20px 1em 75px;
  border-left: 5px solid var(--color1);
  line-height: 1.5;
  position: relative;
  background: var(--colorbg);
  border-top-right-radius: var(--bradius);
  border-bottom-right-radius: var(--bradius);
}
.wrap-post blockquote::before{
  font-family: arial, sans-serif;
  content: "\201C";
  color: var(--color1);
  font-size:4em;
  position: absolute;
  left: 10px;
  top: -5px;
}
.wrap-post blockquote::after{
  content: '';
}
code {
  background: #F5F5F5;
  border: #F2F2F2 solid 1px;
  padding: 5px;
}

/* IMAGE & CAPTION */
.wp-caption, img, img.alignnone, p img {
  max-width: 100%;
}
img {
  height: auto;
}
a img {
  border: none;
}
img.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.aligncenter {
  display: block;
  margin: 5px auto;
}
img.alignright {
  display: inline;
  margin: 0 0 5px 5px;
  padding: 5px;
}
img.alignleft {
  display: inline;
  margin: 0 5px 5px 0;
  padding: 5px;
}
.wp-caption {
  border: 1px solid var(--colorborder);
  background-color:var(--colorbg);
  padding: 5px;
  position: relative;
}
.wp-caption img {
  margin: 0;
  padding: 0;
  border: none;
}
.wp-caption p.wp-caption-text {
  font-style: italic;
  font-size: 80%;
  padding: 2px 5px;
  background: #ffffff90;
  position: absolute;
  left: 5px;
  top: 5px;
  margin: 0;
}
.wp-caption.aligncenter {
  display: block;
  margin: 10px auto;
}
.wp-caption.alignleft {
  float: left;
  margin: 5px 10px 5px 0;
}
.wp-caption.alignright {
  float: right;
  margin: 5px 0 5px 10px;
}
.img-attachment {
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
  padding: 5px;
}

/* BLINKER ANIMATION */
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
.blink {
  animation: blinker 1s linear infinite;
}

/* MOVEINRIGT ANIMATION */
@keyframes moveInRight {
    0% {
        opacity: 0;
        transform: translateX(-50px)
    }
    80% {
        transform: translateX(10px)
    }
    100% {
        opacity: 1;
        transform: translateX(0px)
    }
}

/* SCROLLBAR  */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #F5F5F5; 
}
::-webkit-scrollbar-thumb {
  background: #E7E7E7; 
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color1); 
}
body ::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

/* BOX - GLOBAL */
.info {
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
  padding: 5px 10px;
  border-radius: var(--bradius);
}
.notis {
  border: #FFB973 solid 1px;
  background: #FFFFEC;
  padding: 4px 10px;
  color: #FF8000;
  border-radius: var(--bradius);
}
.notif {
  border: #e2c702 solid 1px;
  background: #FFFFEC;
  padding: 5px 10px;
  color: #e2c702;
  border-radius: var(--bradius);
}
.warning {
  background: #fff2f2b0;
  border: 1px solid #f7b1b1;
  padding: 5px 10px;
  color: red;
  border-radius: var(--bradius);
}
.sukses {
  border: 1px solid #4CAF50;
  background: #D9F4DB;
  padding: 5px 10px;
  color:#4CAF50;
  border-radius: var(--bradius);
}
.kotax {
  width: 100%;
  padding: 10px;
  margin: 20px 0;
  border-radius: var(--bradius);
}
.kotax ul li {
  padding: 3px 0;
  margin: 5px 10px 5px 20px;
} 

/* CUSTOM TEXT - GLOBAL */
.small {
  font-size: 80%;
  line-height: 1.4em;
}
.medium {
  font-size: 90%;
  line-height: 1.4em;
}
.big {
  font-size: 160%;
  line-height: 1.3em;
  font-weight: 600;
}
.jumbo {
  font-size: 330%;
  line-height: 1.3em;
  font-weight: 900;
  text-transform: uppercase;
}
.hidden {
  font-size: 0;
}
.tcolor {
color: var(--color1);
}
.thover {
color: var(--color2);
}	
.judul {
  margin: 10px 0;
  font-size: 110%;
  font-weight: 600;
}
.maintitle {
  margin: -20px -20px 20px;
  background: var(--colorbg);
  padding: 20px;
  border-bottom: 1px solid var(--colorborder);
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
  text-transform: uppercase;
  font-size: 110%;
  font-weight: 800;
  display: flex;
}
.maintitle .el,.maintitle .glyphicon {
  font-size: 82%;
  margin-right: 5px;
  line-height: 1.9em;
}
.maintitle span{
  color: var(--colorbg);
  font-size: 70%;
  letter-spacing: .5px;
  margin-left: 5px;
  background: var(--color1);
  line-height: 2.2em;
  padding: 0 8px;
  text-transform: capitalize;
  border-radius: var(--bradius);
}

.headtitle {
	color: var(--color1);
	border-bottom: 2px solid var(--colorborder);
	margin-bottom: 15px;
	font-size: 110%;
	font-weight: 600;
}
.headtitle span{
	display: inline-block;
	border-bottom: 2px solid var(--color1);
	padding: 5px 0;
	margin-bottom: -2px;
}
.katarsip {
	padding-bottom: 15px;
	margin-bottom: 15px;
	overflow: hidden;
  border-bottom: 5px solid var(--colorborder);
  position: relative;
}
.katarsip p {
  margin: 10px 0;
}
.katarsip select {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.katarsip h1 span {
	font-size: 70%;
	display: block;
	font-weight: 300;
	text-transform: capitalize;
	color: var(--color2);
	margin-bottom: -5px;
}
.katarsip img.thumb {
  float: left;
  margin: 0 10px 2px 0;
  border-radius: var(--bradius);
  border: 1px solid var(--colorborder);
  max-width: 120px;
}

/* MIX - GLOBAL */
.glyphicon {
  font-size: 90%;
  margin-right: 3px;
}
.overback {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.18;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

/*----------------- */
.mainwrap {
  max-width: var(--maxwidth);
  margin: 0 auto;
}

/* TOPHEAD */
#topwrap {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transition: 0.3s;
}
.topmid {
  max-width: var(--maxwidth);
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 7%);
  border-bottom-left-radius: var(--bradius);
  border-bottom-right-radius: var(--bradius);
  background: var(--colorlight);
}

/* HEADER */
#headerwrap {
  background: var(--color1);
  display: grid;
  gap: 20px;
  grid-template-columns: 300px auto 300px;
  height: 90px;
  position: relative;
}
#headerwrap:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: linear-gradient(to bottom, #0c0c0c20,transparent, transparent);
}
#headerwrap > div {
  height: 100%;
  display: inline-grid;
  align-items: center;
  position: relative;
}

/* LOGO */
.headleft {
  padding-left: 20px;
}
.headleft img{
  max-width: 100%;
  max-height: 65px;
  width: auto;
}
.headleft p {
  width:100%;
  line-height: 1.2em;
  color: var(--colorlight);
}
.headleft a {
  font-weight: 900;
  font-size: 140%;
  color: var(--colorlight);
}
.fwhite {
  filter: brightness(0) invert(1);
}

/* SEARCH */
.searching {
  width: 100%;
  position: relative;
}
.searching input {
  float: left;
  padding: 0 15px;
  line-height: 36px;
  height: 36px;
  background: var(--colorbg);
  border: 1px solid var(--colorborder);
  width: 100%;
  margin: 0;
  border-radius: var(--bradius);
}
.searching button {
  height: 36px;
  padding: 0 10px;
  line-height: 36px;
  text-align: center;
  float: right;
  margin: 0;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--color2);
}

/* NAVTOP */
.headright {
  text-align: right;
}
.menukanan {
  position: relative;
  padding-right: 7px;
}
.menukanan .glyphicon {
  padding: 10px;
  font-size: 120%;
  color: var(--colorlight);
  cursor: pointer;
}
.menukanan .glyphicon-search {
  display: none;
}
.menukanan .glyphicon-menu-hamburger.aktif {
  background: var(--colorbg);
  color: var(--color1);
  border-radius: var(--bradius) var(--bradius) 0 0;
}
.menutop {
  position: absolute;
  right: 10px;
  top: 100%;
  max-width: 300px;
  z-index: 2;
  background: var(--colorlight);
  padding: 15px;
  border-radius: var(--bradius) 0 var(--bradius) var(--bradius);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 7%);
  text-align: left;
  display: none;
  font-size: 90%;
}
.menutop li {
  list-style: none;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: var(--bradius);
}
.menutop li:hover {
  background: var(--colorbg);
  border-color: var(--colorborder);
}
  .menutop a {
  color: var(--colortext);
  display: block;
}

/* KATEGORI */
.kategoribox {
  display: grid;
  grid-template-columns: 130px auto;
  padding: 0 15px;
}
.kategoribox > div {
  align-items: center;
  padding-right: 10px;
  display: flex;
}
.katitle {
  font-weight: 600;
  color: var(--color1);
  max-width: 180px;
}
.katitle .glyphicon {
  font-size: 100%;
  margin: -2px 5px 0 0;
}
.kategori {
  height: 50px;
  font-size: 95%;
  white-space: nowrap;
  overflow: auto;
  gap: 5px;
  padding: 0 5px;
  position: relative;
}
.kategori li {
  list-style: none;
  display: inline-grid;
  gap: 10px;
  padding: 2px 8px;
  border-radius: var(--bradius);
  transition: 0.3s;
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
}
.kategori li a{
  color: var(--colortext);
}
.kategori li:hover {
  border-color: var(--color2);
}
.kategori li:hover a{
  color: var(--color2);
}
.kategori::-webkit-scrollbar {
  display: none;
}

/* CONTAIN */
#containwrap {
  width: 100%;
  overflow: hidden;
  position: relative;
	padding: 140px 0 0;
}
.maincontain {
  background: var(--colorlight);
  padding: 20px;
  border-radius: var(--bradius);
  position: relative;
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 6px 0px;
  margin: 20px 0;
}
.singlecontain {
	margin: 20px 0;
  background: var(--colorlight);
  padding: 20px;
  border-radius: var(--bradius);
  position: relative;
  overflow: hidden;
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 6px 0px;
}

/*-------- HOMEPAGE --------*/

/* SLIDER */
.maincontain.slider {
  border-radius: var(--bradius);
  overflow: hidden;
  padding: 0;
}
#slider img {
  width: 100%;
}

#galeri_brand img {
  border-radius: var(--bradius);
}


/* PROFIL */
.profil {
  display: grid;
  grid-template-columns: 280px auto;
  gap: 20px;
}
.foto {
  place-content: center;
  display: inline-grid;
}
.imgcircle {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  border: 4px solid var(--colorborder);
  padding: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: inline-grid;
  position: relative;
  place-content: center;
}
a .imgcircle .glyphicon {
  font-size: 30px;
  color: var(--colorlight);
  display: none;
}
.imgcircle:hover .glyphicon {
  display: inline;
}
.imgcircle img {
  position: relative;
}
.imgcircle:hover img {
  display: none;
}
.imgcircle.tik {
  border-color: var(--color1);
}
.imgcircle.tik:before {
  content: ' ';
  border-radius: 50%;
  position: absolute;
  top:0; right: 0; bottom: 0; left: 0;
  background:rgb(0 0 0 / 30%);
  border: 5px solid var(--colorlight);
}
.imgcircle.tik:hover:before{
  background:rgb(0 0 0 / 7%);
}

/* KATEGORI SPESIAL */
#featcat {
	display: flex;
  gap: 15px;
  white-space: nowrap;
  overflow: auto;
}
#featcat::-webkit-scrollbar {
  display: none;
}
#featcat li {
	list-style: none;
  text-align: center;
  width: 140px;
  flex: 0 0 auto;
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
  box-shadow: rgb(0 0 0 / 5%) 0px 1px 6px 0px;
  border-radius: var(--bradius);
  overflow: hidden;
}
#featcat li img {
	overflow: hidden;
  transition: 0.3s;
}
#featcat li:hover img {
  opacity: .8;
}
#featcat .tithumb {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* PRODUK PILIHAN */
#featprod .grid {
  margin: 0 5px;
}
#featprod .owl-pagination {
  position: absolute;
  top: 10px;
  right: 10px
}
.featprod .tithumb {
  text-align: left;
}
.featprod .buynow {
  display: none;
}

/* VIDEO PILIHAN */
.vid-container {
  display: grid;
  grid-template-columns: auto 460px;
  gap: 20px;
  overflow: hidden;
}
.embedvid iframe {
  width: 100%;
  max-height: 374px;
  border-radius: var(--bradius);
  overflow: hidden;
  border: 1px solid var(--colorborder);
}
.vidprod {
  white-space: nowrap;
  overflow: auto;
}
.vidprod::-webkit-scrollbar {
  display: none;
}
.vidprod .grid {
  display: inline-grid;
  width: 220px;
  white-space: normal;
  margin-right: 12px;
}

/* PRODUCT */
.product-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}
.viewall {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 95%;
}
.grid {
  background: var(--colorbg);
  box-shadow: rgb(0 0 0 / 5%) 0px 1px 6px 0px;
  border-radius: var(--bradius);
  position: relative;
  border: 1px solid var(--colorborder);
  transition: .3s;
  overflow: hidden;
}
.imgthumb {
	overflow: hidden;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.3s ease;
}
.grid:hover .imgthumb {
	opacity: 0.7;
}
.tithumb {
  padding: 10px 10px 15px;
  text-align: center;
}
.tithumb a{
  display: block;
  color: var(--colortext);
}
.harga {
  margin-top: 5px;
  font-weight: 600;
  color: var(--color1);
}
.buynow {
  display: block;
  margin-top: 5px;
}
.mpsign {
  font-size: 90%;
  color: #777;
  margin-top: 5px;
}
.mpsign .glyphicon {
  color: var(--color1);
}
.tipepost {
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 2px 6px;
  background: #00000060;
  color: #F1F1F1;
  border-top-right-radius: var(--bradius);
  border-bottom-left-radius: var(--bradius);
  font-size: 80%;
}

/* BANNER */
.maincontain.banners,.singlecontain.banners {
  padding: 0;
  background: none;
  text-align: center;
  overflow: hidden;
}
.banners img {
  width: 100%;
}

/* BLOG */
.blog-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.listblog {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
  border-radius: var(--bradius);
  box-shadow: rgb(0 0 0 / 5%) 0px 1px 6px 0px;
  overflow: hidden;
  position: relative;
}
.listblog img {
  float: left;
  margin: 0 10px 5px 0;
  border-radius: var(--bradius);
  border: 1px solid var(--colorborder);
}
.listblog .kat {
  padding: 2px 6px;
  background:var(--colorlight);
  display: inline-block;
  font-size: 75%;
  border-bottom-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
  position: absolute;
  bottom: 0;
  left: 0;
}
.listblog .judul {
  margin: 0 0 5px;
}
.listblog:hover .judul{
  color: var(--color2);
}
.randomblog {
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
  padding: 20px;
  border-radius: var(--bradius);
  margin-top: 20px;
}
.randomblog .judul {
  color: var(--colortext);
}
.randomblog .listblog {
  border: none;
  box-shadow: none;
  padding: 0;
  background: none;
}
.randomblog .kat {
  display: none;
}
.randomblog img {
  max-width: 80px;
}
.randomblog p {
  display: none;
}

/*------- END HOMEPAGE ---------*/

/* POP UP / MODAL */
.popup {
  min-width: 300px;
  max-width: 1000px;
  display: none;
  padding: 10px;
  border-radius: var(--bradius);
}
.popup ul li {
  list-style: none;
  padding: 5px 0;
}
.popup td {
	padding:3px;
	vertical-align: top;
}

/* PAGINATION */
.pagination {
  width: 100%;
  margin: 20px 0 0;
  text-align: center;
}
.pagination a, .pagination > .current {
  border: 1px solid var(--colorborder);
  padding: 5px 10px;
  background: var(--colorbg);
  margin: 0 2px;
  display: inline-block;
}
.pagination a:hover, .pagination > .current {
  color: #F1F1F1;
  background: var(--color1);
}

/* POST */
.wrap-post {
  overflow: hidden;
  margin: 10px 0;
}
.wrap-post ul {
  display: flow-root;
}
.wrap-post ul li, .elementor-text-editor ul li {
  margin: 0 10px 0 30px;
}
.wrap-post iframe {
  width: 100%;
}
.editpost {
  position: absolute;
  top: 15px;
  right: 15px;
}

/* SINGLE PRODUCT */
.ppreview {
  float: left;
  width: 400px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  position: relative;
}
.ppreview > img {
  border: 1px solid var(--colorborder);
  border-radius: var(--bradius);
}
.ppreview button {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
}
.pdetail h1 {
  color: var(--colortext);
}
.pdetail ul {
  display: flow-root;
}
.pdetail ul li {
  margin: 0 10px 0 30px;
}
.pdetail .harga {
  font-size: 150%;
  font-weight: 800;
}
.pdetail .buynow {
  font-size: 1.2em;
  display: table;
}

/* ZOOM PREVIEW */
.zoomwrap img {
  border-radius: var(--bradius);
}
.zoomwrap {
  position: relative;
  border-radius: var(--bradius);
  border: 1px solid var(--colorborder);
}
.zoomcover {
  display: none;
}
#zoomview {
  width: 100%;
}
#galeriview {
  width: 100%;
  overflow: auto;
  white-space: nowrap;
  padding: 8px 0;
}
#galeriview img{
  opacity: 0.2;
  background: var(--colorlight);
  margin-right: 3px;
  border-radius: var(--bradius);
  border: 1px solid var(--colorborder);
}
#galeriview .active_gal img {
  opacity: 1;
}
#galeriview::-webkit-scrollbar-track, #galeriview::-webkit-scrollbar-thumb {
  display: none; 
}
#galeriview:hover::-webkit-scrollbar-track,#galeriview:hover::-webkit-scrollbar-thumb {
  display: block; 
}
.zoomWindowContainer > div {
  border-radius: var(--bradius);
}
.zoomhp, .zoomfull {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 8px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 80%;
  z-index: 2;
  border-radius: var(--bradius);
}
.zoomhp {
  display: none;
  cursor: pointer;
}

/* FOOTER */
#footerwrap {
  background: var(--colorlight);
  position: relative;
  border-top-left-radius: var(--bradius);
  border-top-right-radius: var(--bradius);
  box-shadow: rgb(0 0 0 / 7%) 0px 1px 6px 0px;
  overflow: hidden;
}
#footerwrap a {
	color: var(--colortext);
}
#footerwrap a:hover {
	text-decoration: underline;
  color: var(--color2);
}
#footerwrap h4 {
  font-weight: 800;
  font-size: 120%;
}
#footerwrap .overback {
  opacity: .15;
  filter: grayscale(1);
}
.fwidgetwrap {
  margin: 30px auto 20px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  overflow: hidden;
  padding: 0 30px;
}
.footwidget {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}
.footwidget ul li {
  padding: 5px 0;
  list-style-type:none;
}
.footwidget ul li li {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 5px;
}
.homefoot {
  padding: 10px 30px;
  position: relative;
}
.homefoot ul li {
  margin: 0 10px 0 30px;
}
.copyright {
  padding: 20px;
  overflow: hidden;
  justify-content: space-between;
  display: flex;
  font-size: 95%;
  gap: 20px;
  background: var(--color1);
  color: #F1F1F1;
}
.copyright p {
  position: relative;
  margin: 0;
}
#footerwrap .copyright a {
	color: #F1F1F1;
  font-weight: 600;
}

/* SOCMED */
.socmed {
  margin: 0px -20px -20px;
  transition: .5s;
  background: var(--colorbg);
  border-top: 1px solid var(--colorborder);
  padding: 20px;
  border-bottom-right-radius: var(--bradius);
  border-bottom-left-radius: var(--bradius);
  grid-column: 1 / span 2;
  grid-row: 2;
  text-align: center;
}
.socmed a:hover{
  opacity: 0.5;
}
.fb, .twit, .bl, .toped, .shopee, .insta,.lazada, .blibli,.tiktok,.youtube {
  background-image: url(images/socmed.png);
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
}
.toped {
  background-position: 0 0;
}
.bl {
  background-position: -40px 0;
}
.shopee {
  background-position: -80px 0;
}
.insta {
  background-position: -120px 0;
}
.fb {
  background-position: -160px 0;
}
.twit {
  background-position: -200px 0;
}
.lazada {
  background-position: -240px 0;
}
.blibli {
  background-position: -280px 0;
}
.tiktok {
  background-position: -320px 0;
}
.youtube {
  background-position: -360px 0;
}

/* COMMENT */
.comments, .comments input[type="text"], .comments textarea {
  width: 100%;
}
.comments label {
  font-weight: bold;
}
.comments input[type="radio"] {
  margin: 0 5px;
  color: #CCC;
}
.comments .komentar {
	display: flow-root;
	padding: 10px;
  overflow: hidden;
}
.comment .comment-respond {
  padding: 10px 20px;
}
.comments ul li {
  list-style-type: none;
}
.comments .comment-reply-title small{
  margin-left: 10px;
}
.comments .depth-1 {
  margin: 10px 0;
  border: 1px solid var(--colorborder);
  background: var(--colorbg);
  border-radius: var(--bradius);
}
.comments li li {
  margin-left: 3%;
	border-bottom: none;
}
.comments li li img {
  width: 50px;
  height: 50px;
}
.comment_text {
	margin-bottom: 10px;
}

/* SCROLL UP */
.scrollup {
  position: fixed;
  display: none;
  z-index: 600;
  width: 40px;
  height: 40px;
  bottom: 20px;
  right: 20px;
	border-radius: var(--bradius);
  background: url(images/icon_top.png) no-repeat;
  opacity: 0.1;
}

/* WA LIVE */
.wapop {
  width: 420px;
  display: none;
  padding:0;
  background-image: url(images/wa/wa-back.jpg);
  position: relative;
  border-radius: var(--bradius);
}
.walist {
  padding: 10px;
  text-align: left;
  background: var(--colorlight);
  border-bottom: 1px solid var(--colorborder);
}
.walist img {
  float: left;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.waonline {
  color: #30A958
}	
.wachat {
  height: 180px;
  padding: 10px;
}
.wabubble1,.wabubble2 {
	background: var(--colorlight);
	position: relative;
	padding: 5px 10px;
	margin-left: 10px;
	margin-bottom: 3px;
	font-size: 14px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius:5px;
	display: table;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.15);
}
.wabubble1:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	right: 100%;
	width: 0;
	height: 0;
	border-bottom: 10px solid transparent;
	border-right: 10px solid var(--colorlight);
}
.wareply {
  background: var(--colorlight);
  padding: 10px;
  display: grid;
  grid-template-columns: auto 90px;
  gap: 10px;
  height: 55px;
}
.wareply ::placeholder {
  color: #CCC;
}
.wareply input {
  margin:0;
}
.wareply button {
  margin:0;
  text-align: center;
  background: #24BE5B;
}
.wareply button:hover {
	opacity: 0.7;
}
.ctwa {
  cursor: pointer;
}

/* AVATAR */
.avatar {
  border-radius: var(--bradius);
  border: 1px solid var(--colorborder);
  float: left;
  margin: 0 10px 0 0;
}

/* SHARE IT */
.shareit {
  padding: 10px 0;
  overflow: hidden;
}
.shareit strong {
	line-height: 28px;
	float: left;
}
.shareit span{
  line-height: 28px;
  font-size: 28px;
  margin-left: 10px;
  width: 30px;
  float: left;
}
.shareit span:hover {
  opacity: 0.8;
}

/* LOADER PAGE*/
.loaderx {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: url('images/loading.gif') 50% 50% no-repeat rgb(255 255 255 / 90%);
}

/* OWL SLIDER */
.owl-controls .owl-buttons div {
  background: #fffc;
  border-radius: var(--bradius);
}
.smallslider .owl-controls .owl-buttons .owl-prev, .megaslider .owl-controls .owl-buttons .owl-prev {
  left: 100px;
}
.smallslider .owl-controls .owl-buttons .owl-next, .megaslider .owl-controls .owl-buttons .owl-next {
  right: 100px;
}
.owl-carousel .owl-buttons .owl-prev{
  transition: 0.3s;
  opacity: 0;
}
.owl-carousel:hover .owl-buttons .owl-prev {
  left: 20px;
  opacity: 1;
}
.owl-carousel .owl-buttons .owl-next{
  transition: 0.3s;
  opacity: 0;
}
.owl-carousel:hover .owl-buttons .owl-next {
  right:20px;
  opacity: 1;
}

/* MISC */
.ausearch .harga, .ausearch .tithumb img, .ausearch .mpsign, .ausearch .tithumb .buynow{
  display: none;
}
.autoheading {
  font-size: 0;
  margin: 0;
  padding: 0;
}
.crumbs {
  margin-bottom: 15px;
  font-size: 90%;
}
.maintenis {
	text-align: center;
	background: #ff3100de;
	color: #FFF;
	padding: 4px 10px;
	position: fixed;
	z-index: 1000;
	top: 0;
  right: 0;
  border-bottom-left-radius: var(--bradius);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 7%);
  font-size: 85%;
}
.confused {
  float: right;
  margin-left: 20px;
}
