.selectMultiple {
  position: relative;
}
.selectMultiple select {
  display: none;
}
.selectMultiple > div {
  position: relative;
  z-index: 2;
  padding: 8px 12px 2px 12px;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  min-height: 44px;
  box-shadow: 0 4px 16px 0 rgba(22, 42, 90, 0.12);
  -webkit-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
}
.selectMultiple > div:hover {
  box-shadow: 0 4px 24px -1px rgba(22, 42, 90, 0.16);
}
.selectMultiple > div .arrow {
    right: 0px;
    top: 0;
    bottom: 0;
    cursor: pointer;
    width: 28px;
    background-color: #3d89c1;
    position: absolute;
    border-radius: 0 7px 7px 0;
}
.selectMultiple > div .arrow:before, .selectMultiple > div .arrow:after {
  content: '';
  position: absolute;
  display: block;
  width: 2px;
  height: 8px;
  border-bottom: 8px solid #ffffff;
  top: 43%;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.selectMultiple > div .arrow:before {
  right: 12px;
  -webkit-transform: rotate(-130deg);
          transform: rotate(-130deg);
}
.selectMultiple > div .arrow:after {
  left: 9px;
  -webkit-transform: rotate(130deg);
          transform: rotate(130deg);
}
.selectMultiple > div span {
  color: #99A3BA;
  display: block;
  position: absolute;
  left: 12px;
  cursor: pointer;
  top: 8px;
  line-height: 28px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}
.selectMultiple > div span.hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translate(-4px, 0);
          transform: translate(-4px, 0);
}
.selectMultiple > div a {
  position: relative;
  padding: 0 24px 6px 8px;
  line-height: 28px;
  color: #1E2330;
  display: inline-block;
  vertical-align: top;
  margin: 0 6px 0 0;
}
.selectMultiple > div a em {
  font-style: normal;
  display: block;
  white-space: nowrap;
}
.selectMultiple > div a:before {
  content: '';
  left: 0;
  top: 0;
  bottom: 6px;
  width: 100%;
  position: absolute;
  display: block;
  background: rgba(228, 236, 250, 0.7);
  z-index: -1;
  border-radius: 4px;
}
.selectMultiple > div a i {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 28px;
  display: block;
}
.selectMultiple > div a i:before, .selectMultiple > div a i:after {
  content: '';
  display: block;
  width: 2px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: #e00000;
  border-radius: 1px;
}
.selectMultiple > div a i:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.selectMultiple > div a i:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.selectMultiple > div a.notShown {
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.selectMultiple > div a.notShown:before {
  width: 28px;
  -webkit-transition: width 0.45s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
  transition: width 0.45s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0.2s;
}
.selectMultiple > div a.notShown i {
  opacity: 0;
  -webkit-transition: all .3s ease .3s;
  transition: all .3s ease .3s;
}
.selectMultiple > div a.notShown em {
  opacity: 0;
  -webkit-transform: translate(-6px, 0);
          transform: translate(-6px, 0);
  -webkit-transition: all .4s ease .3s;
  transition: all .4s ease .3s;
}
.selectMultiple > div a.notShown.shown {
  opacity: 1;
}
.selectMultiple > div a.notShown.shown:before {
  width: 100%;
}
.selectMultiple > div a.notShown.shown i {
  opacity: 1;
}
.selectMultiple > div a.notShown.shown em {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.selectMultiple > div a.remove:before {
  width: 28px;
  -webkit-transition: width 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
  transition: width 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44) 0s;
}
.selectMultiple > div a.remove i {
  opacity: 0;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
.selectMultiple > div a.remove em {
  opacity: 0;
  -webkit-transform: translate(-12px, 0);
          transform: translate(-12px, 0);
  -webkit-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
}
.selectMultiple > div a.remove.disappear {
  opacity: 0;
  -webkit-transition: opacity .5s ease 0s;
  transition: opacity .5s ease 0s;
}
.selectMultiple > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 16px;
  z-index: 1;
  position: absolute;
  top: 100%;
  height:90vh;
  overflow-y: auto;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  border-radius: 8px;
  -webkit-transform: translate(0, 20px) scale(0.8);
          transform: translate(0, 20px) scale(0.8);
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-filter: drop-shadow(0 12px 20px rgba(22, 42, 90, 0.08));
          filter: drop-shadow(0 12px 20px rgba(22, 42, 90, 0.08));
  -webkit-transition: all 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), -webkit-filter 0.3s ease 0.2s;
  transition: all 0.4s ease, -webkit-transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), -webkit-filter 0.3s ease 0.2s;
  transition: all 0.4s ease, transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s;
  transition: all 0.4s ease, transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), filter 0.3s ease 0.2s, -webkit-transform 0.4s cubic-bezier(0.87, -0.41, 0.19, 1.44), -webkit-filter 0.3s ease 0.2s;
}
.selectMultiple > ul li {
  color: #1E2330;
  background: #fff;
  padding: 12px 16px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  -webkit-transition: background .3s ease, color .3s ease, opacity .5s ease .3s, border-radius .3s ease .3s, -webkit-transform .3s ease .3s;
  transition: background .3s ease, color .3s ease, opacity .5s ease .3s, border-radius .3s ease .3s, -webkit-transform .3s ease .3s;
  transition: background .3s ease, color .3s ease, transform .3s ease .3s, opacity .5s ease .3s, border-radius .3s ease .3s;
  transition: background .3s ease, color .3s ease, transform .3s ease .3s, opacity .5s ease .3s, border-radius .3s ease .3s, -webkit-transform .3s ease .3s;
}
.selectMultiple > ul li:first-child {
  border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li:first-child:last-child {
  border-radius: 8px;
}
.selectMultiple > ul li:last-child {
  border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li:last-child:first-child {
  border-radius: 8px;
}
.selectMultiple > ul li:hover {
  background: #4D18FF;
  color: #fff;
}
.selectMultiple > ul li:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%, -50%);
          transform: scale(1, 1) translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.selectMultiple > ul li.beforeRemove {
  border-radius: 0 0 8px 8px;
}
.selectMultiple > ul li.beforeRemove:first-child {
  border-radius: 8px;
}
.selectMultiple > ul li.afterRemove {
  border-radius: 8px 8px 0 0;
}
.selectMultiple > ul li.afterRemove:last-child {
  border-radius: 8px;
}
.selectMultiple > ul li.remove {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
}
.selectMultiple > ul li.remove:after {
  -webkit-animation: ripple .4s ease-out;
          animation: ripple .4s ease-out;
}
.selectMultiple > ul li.notShown {
  display: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity .4s ease, -webkit-transform .35s ease;
  transition: opacity .4s ease, -webkit-transform .35s ease;
  transition: transform .35s ease, opacity .4s ease;
  transition: transform .35s ease, opacity .4s ease, -webkit-transform .35s ease;
}
.selectMultiple > ul li.notShown.show {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}
.selectMultiple.open > div {
  box-shadow: 0 4px 20px -1px rgba(22, 42, 90, 0.12);
}
.selectMultiple.open > div .arrow:before {
  -webkit-transform: rotate(-50deg);
          transform: rotate(-50deg);
}
.selectMultiple.open > div .arrow:after {
  -webkit-transform: rotate(50deg);
          transform: rotate(50deg);
}
.selectMultiple.open > ul {
  -webkit-transform: translate(0, 12px) scale(1);
          transform: translate(0, 12px) scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
          filter: drop-shadow(0 16px 24px rgba(22, 42, 90, 0.16));
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(30, 30);
            transform: scale(30, 30);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(50, 50);
            transform: scale(50, 50);
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  25% {
    -webkit-transform: scale(30, 30);
            transform: scale(30, 30);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(50, 50);
            transform: scale(50, 50);
  }
}


.wrapper {
    padding: 20px 0;
}
.avatar-user {
    width: 200px;
    height:200px;
    object-fit: cover
}
.avatar-review {
    width: 60px;
    height:60px;
    object-fit: cover
}
.head-basic {
    font-size: 1.4em;
    color: #333;
    font-weight: bold;
}
.premium-badge {
    position: absolute;
    color: #fff;
    left: 10px;
    border-radius: 50%;
    font-size: 10px;
    bottom: 34px;
    background-color: #ff9c46;
    padding: 1px 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.nama-basic {
    height: 38px;
    overflow: hidden;
}
.mh-45 {
    min-height: 45px;
}
.star-seller-single {
    color: #fff;
    font-size: 13px;
    bottom: 0px;
    background-color: #ff8302;
    padding: 5px 10px;
}
.star-seller-badge {
    position: absolute;
    color: #fff;
    font-size: 10px;
    bottom: 0px;
    background-color: #ff8302;
    padding: 1px 5px;
    border-radius: 0 5px 0 0;
}
.menu-item {
    padding: 0 5px;
}
.wa-float {
	position: fixed;
	bottom: 10px;
	right: 10px;
	color: #fff !important;
	background-color: #00A357;
	padding: 5px 23px;
	border-radius: 30px;
	line-height: 1px;
	text-align: center;
	font-size: 15px;
}
.wa-float i {
	font-size: 28px;
	vertical-align: middle;
	margin-right: 5px;
}
.mw-50 {
    max-width:50px;
}
.footer-widget ul {
    padding-left:20px;
}
.page-title {
    font-size: 1.2rem;
    text-transform: uppercase;
}
.inside-white a,
.inside-white a:link,
.inside-white a:visited {
    color: #fff;
}
.footer-widget-title {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
}
.collapsing {
    display: none !important;
    padding: 45px 20px;
}
.show.navbar-collapse span {
    display: block;
}
.show.navbar-collapse a,
.show.navbar-collapse a:link,
.show.navbar-collapse a:visited {
    color: #333333;
    padding: 10px;
    border-bottom: 1px dashed #ddd;
    text-align: left;
    display: block;
}
.show.navbar-collapse .dropdown-menu {
    padding: 0 0 0 20px;
    border: 0;
}
.inside-white .dropdown-menu a,
.inside-white .dropdown-menu a:link,
.inside-white .dropdown-menu a:visited {
    color: #333333;
}
.show.navbar-collapse {
    position: fixed;
    left: 0px;
    width: 75%;
    background-color: #fff;
    height: 100vh;
    top: 0px;
    padding: 50px 20px;
    z-index: 1021;
    box-shadow: 1px 0px 13px rgba(0,0,0,0.4);
}
.menu-inline .menu-item {
    display:inline-block;
}
.show.navbar-collapse .caret {
    display: inline-block !important;
}
.dropdown-menu {
    z-index: 1021;
}
.rating,
.rating-fix {
    font-size: 25px;
    color: gold;
}
.upperhead,
.upperhead a,
.upperhead a:visited{
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}
.totalpembeli {
    position: relative;
    top: 5px;
    font-size: 0.8em;
    display: inline-block !important;
}
.custom-file-input {
    cursor: pointer;
}
.current span {
    color: #333;
}
.lazy {
    width:100%;
}
.page-profile {
    background-color: #f4f4f4;
}
.bg-gradient-af {
    background-color: #071727;
}
.nav-pills .nav-link.active, 
.nav-pills .show > .nav-link {
    background: #917ee8;
}
.bg-gradient-a {
    background: #0F2027;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2C5364, #203A43, #0F2027);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.bg-gradient-b {
    background: #dee6f2; /* Old browsers */
    background: -moz-linear-gradient(top, #dee6f2 0%, #e9edf3 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #dee6f2 0%,#e9edf3 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #dee6f2 0%,#e9edf3 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dee6f2', endColorstr='#e9edf3',GradientType=0 ); /* IE6-9 */
}
.text-pink {
    color: #ce5596;
}
.img-15 {
    max-width: 15px;
    height: auto;
}
#exercises,
#pik-attach {
    padding: 0;
}
#pik-attach li,
li.exercise {
    list-style: none;
}
.label-best {
    position: relative;
}
.label-best:before {
    position: absolute;
    content: 'Best Seller';
    padding: 2px 7px;
    background-color: #40bc4a;
    top: 10px;
    left: 10px;
    z-index: 1;
    color: #fff;
    border-radius: 2px;
    font-size: 11px;
}
.label-grosir {
    position: relative;
}
.label-grosir:after {
    position: absolute;
    content: 'Grosir';
    padding: 2px 7px;
    background-color: #FFD9AF;
    right: 10px;
    top: 10px;
    z-index: 1;
    color: #333;
    border-radius: 2px;
    font-size: 11px;
}
.label-new {
    position: relative;
}
.label-new:before {
    position: absolute;
    content: 'New';
    padding: 2px 7px;
    background-color: #c72fd1;
    top: 10px;
    left: 10px;
    z-index: 1;
    color: #fff;
    border-radius: 2px;
    font-size: 11px;
}
.label-limited {
    position: relative;
}
label.file-upload {
    position: relative;
}
label.file-upload:hover:after {
    content: "\f0ee";
    position: absolute;
    top: 0;
    line-height: 140px;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    font-size: 30px;
    left: 0px;
    font-family: fontawesome;
    text-align: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.hover-upload {
    position: relative;
}
.hover-upload:hover:after {
    content: "\f0ee";
    border-radius: 50%;
    position: absolute;
    top: 0;
    line-height: 200px;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
    font-size: 30px;
    left: 0px;
    font-family: fontawesome;
    text-align: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.label-limited:before {
    position: absolute;
    content: 'Limited';
    padding: 2px 7px;
    background-color: #4076bc;
    top: 10px;
    left: 10px;
    z-index: 1;
    color: #fff;
    border-radius: 2px;
    font-size: 11px;
}
.print-none {
    display: none;
}
.float-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    
}
.prevg {
    width:100%;
    height:120px;
    object-fit: cover
}
.img-frame {
    border: dashed 2px#888;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
    width: 100%;
}
.hide-me {
    display: none !important;
}
.page-keranjang h3 {
    font-size: 18px;
    text-transform: uppercase;
}
.page-profile .title {
    font-size: 18px;
    color: #333;
    overflow: hidden;
    max-height: 1em;
    text-transform: uppercase;
}
.page-profile h3 {
    font-size: 14px;
    color: #444;
    overflow: hidden;
    max-height: 1em;
    text-transform: uppercase;
}
.page-profile .form-login lable{
    color: #333;
    font-weight: bold;
}
.page-profile .form-login .button {
    padding: 5px 20px;
    border-radius: 3px;
    border: 0;
    background-color: #333;
    color: #fff;
    text-transform: uppercase;
}
.page-profile .form-login .button:hover {
    background-color: #ddd;
    color: #333;
}
.page-profile .form-login {
    padding: 20px;
    border: 1px solid #ddd;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 5px;
}
.page-profile .input {
    width: 100%;
}
.pointer {
    cursor: pointer;
}
.opsitoggle {
    position: relative;
    left: 30px;
}
.page-keranjang .opsitoggle input {
    position: absolute;
    top: 4px;
    left: -30px;
}
.pesan-transfer i {
    font-size: 50px;
    color: #333;
    margin-bottom: 20px;
}
.frame-invoice span {
    border: 1px solid #777;
    max-width: 200px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    background: #333;
    color: #fff;
    margin: 0 auto;
    display: inline-block;
}
.noborder td, .noborder th {
    border: 0 !important;
}
.navigasi .slick-slide:hover img,
.navigasi .slick-current img{
    padding: 3px;
    cursor: pointer;
    transition: 300ms ease all;
}
.single-harga {
    font-size: 18px;
    color: #333;
}

.belilain {
    color: #333;
    font-size: 16px;
    padding: 5px 0;
}
.btn-sosmed {
    padding: 2px 5px;
    border: 1px solid;
    border-radius: 3px;
}
.color-fb {
    color: #3b5998;
}
.color-twit {
    color: #1ea1f3;
}
.color-wa {
    color: #00A357;
}
.love,
.unlove:hover{
    color: #fe4365;
    cursor: pointer;
}
.unlove,
.love:hover{
    color: #FF9E9D;
    cursor: pointer;
}
.slider-produk img {
    width:100%;
}
#accordion label {
    padding-left: 10px;
    cursor: pointer;
}
#accordion article {
	background: #fff;
	height:0px;
	text-align: center;
	overflow:hidden;
	transition: all ease 300ms;
}
#accordion article p {
	padding: 1em;
}
#accordion input:checked article {
}
#accordion input:checked ~ article {
	border-bottom-left-radius: .25em;
	border-bottom-right-radius: .25em;
	height: auto;
	transition: all ease 300ms;
	margin-bottom: .125em;
}

.stacktable { width: 100%; }
.st-head-row { padding-top: 1em; }
.st-head-row.st-head-row-main { font-size: 1.5em; padding-top: 0; }
.st-key { width: 49%; text-align: right; padding-right: 1%; }
.st-val { width: 49%; padding-left: 1%; }
.tabel-keranjang {
    border: 2px solid #ddd;
}

.stacktable.large-only { display: table; }
.stacktable.small-only { display: none; }


 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 23px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 26px;
  left: 5px;
  bottom: 5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #012A4B;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 8px;
}

.slider.round:before {
    border-radius: 5px;
} 

.border-botom-ddd {
    border-bottom: 1px solid #f8f8f8;
}
.navicon {
    max-width:20px;
    height: auto;
}
@media (max-width: 800px) {
    .stacktable.large-only { display: none; }
    .stacktable.small-only { display: table; }
}

.nav-link:hover .navicon {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: 3;
    -webkit-animation-name: bounce;
    animation-name: bounce;
}
@-webkit-keyframes bounce {
    0%, 100% {
        -webkit-transform: translateY(0);
    }
    50% {
        -webkit-transform: translateY(-5px);
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.onclick {
  overflow: hidden;
  position:relative;
}
.ripple {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(216, 103, 185, 0.3);
  transform: scale(0);
  position: absolute;
  opacity: 1;
  z-index: 999;
}
.rippleEffect {
    animation: rippleDrop .6s linear;
}
@keyframes rippleDrop {
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.bg-zebra:nth-child(odd) {
    background-color:#fff2fc;
}
.brdot {
    border-bottom: 1px dotted #ddd;
    padding-top:5px;
}

ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 3;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 3;
}
.chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    color: #fff;
    width: 40px;
    background-color: #ffffff;
    height: 40px;
    display: block;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
}
.isi-chat {
    display: block;
    border: 1px solid #efefef;
    border-radius: 7px;
}
.frame-chat {
    position: absolute;
    bottom: 0px;
    height: 0vh;
    width: 0px;
    right: 0px;
    background-color: #fff;
    border-radius: 7px;
    max-width: 70vw;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.1);
    transition: all ease 200ms;
    opacity: 0;
    padding:0px;
}
.frame-chat.buka {
    position: absolute;
    bottom: 50px;
    height: 70vh;
    width: 300px;
    right: 0px;
    transition: all ease 200ms;
    opacity: 1;
    padding:20px;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
/* Magnific Popup CSS */
