

/*############################################################
-> MAIN
############################################################*/


.back-header .logo {
    padding: 19px 0px 14px 0;
}

.container {
    max-width: 1350px !important;
}
.main-urunler  a {
  color:#000;
}
.main-urunler .item .ukod  {
    position: absolute;
    top: 5px;
    left: 5px;
    flex-wrap: wrap;
    color: #fff;
    text-align: center;
    background-color: #00000091;
    border-radius: 5px;
}
.main-urunler .item .fiyat  {
    position: absolute;
    bottom: 5px;
    left: 5px;
    flex-wrap: wrap;
    color: #fff;
    text-align: center;
    background-color: #00000091;
    border-radius: 5px;
}
.main-urunler .item .stok, .stokbanner {
    position: absolute;
    bottom: 5px;
    right: 5px;
    flex-wrap: wrap;
    color: #fff;
    text-align: center;
    background-color: #f7000091;
    border-radius: 5px;
    padding: 5px 5px 3px;
    font-size: 15px;
    line-height: 16px;
}
.recent-category li.selected {
  font-weight: 600;
}
.main-urunler .back-title {
  color:#000;
}
.main-urunler .item .case-img {
  position: relative;
}
.main-urunler .item .case-img img {
  border-radius: 10px;
}
.main-urunler .item .case-img img.u-logo {
  position: absolute;
  width: 20%;
  height: auto;
  right: 3%;
  top: 3%;
}
.main-urunler .item .fiyat span, .main-urunler .item .ukod span  {
  padding: 10px;
}
.main-urunler .item .case-content .case-subtitle {
  margin-top: 5px;
  margin-bottom: 5px;
}
.main-urunler .item .case-content .case-title {
  font-size: 20px;
  line-height: 24px;
}
.main-urunler .item .case-content.edit .case-title {
  font-size: 18px;
  line-height: 22px;
}
.white-border {
  border:1px solid #fff !important;
}

.kvkk {
    margin-bottom: 30px;
}
.kvkk label {
    display: flex;
    align-items: center;
}
.kvkk label input {
  margin-bottom: 0 !important;
  display: inline-flex;
  left: 0;
  width: 30px !important;
  height: 30px;
  margin-right: 10px;
      
}
.urun-galeri {
  display: flex;
  flex-wrap: wrap;
}
.urun-galeri a {
  flex-basis: 30%;
  border-radius: 10px;
}

/*############################################################
<- MAIN
############################################################*/



/*############################################################
-> SITE WIDGETS
############################################################*/


.site-widgets {
    position: fixed;
    right: 0;
    z-index: 10000;
    top: 40%;
}
.site-widgets li {
  margin-bottom: 3px;
  display: flex;
  justify-content: right;
}
.site-widgets li a {
  display: flex;
  align-items: center;
}
.site-widgets li a i {
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: #c3c1c1;
  display: flex; 
  justify-content: center;
  align-items: center;
  font-size: 22px;
  order: 2;
}
.site-widgets li:nth-child(1) a i {
  background-color: #f50808;
}
.site-widgets li:nth-child(2) a i {
  background-color: #08bef5;
}
.site-widgets li:nth-child(3) a i {
  background-color: #22bb2e;
}
.site-widgets li a:hover i,.site-widgets li a span:hover {
  color: #342f2f;
}

.site-widgets li a span {
  background-color: #c3c1c1;
  display: none;
  align-items: center;
  height: 50px;
  position: relative;
  order: 1;
  color: #fff;
  padding: 0 10px;
  margin-right: 2px;
}
.site-widgets li a:hover span {
  display: flex;
}

.whatsapp-content {
  position: fixed;
  bottom: 0;
  right: 5%;
  z-index: 10000;
  /* background-color: var(--c1); */
  box-shadow: 0px -2px 10px rgba(0,0,0,0.1);
  
  opacity: 0;
  pointer-events: none;
  animation: showBtn 0.5s ease forwards;
  animation-delay: 2s;    

}
@keyframes showBtn {
  to {
    opacity: 1;
    pointer-events: auto;
  }
}
.whatsapp-content a {
  display: flex;
  align-items: center;
  padding: 10px;
  color: #fff;
  justify-content: center;
  font-size: 16px;
  line-height: 20px;
  border-radius: 10px 10px 0px 0px;
}
.anim-btn {
  background: linear-gradient(270deg, #ff6b6b, #feca57, #48dbfb, #5f27cd, #ff6b6b);
  background-size: 1000% 1000%;
  animation: liveGradient 15s ease infinite;
}

@keyframes liveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





/*############################################################
<- SITE WIDGETS
############################################################*/






























/*############################################################
-> WHATSAPP PULSE
############################################################*/


.pulse {
  position: fixed;
  bottom: 0;
  left: 5%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #58ea00;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  font-size: 35px;
  z-index: 10000000;
  }
  .pulse a {
    display: flex;
    color: #fff;
    position: relative;
    z-index: 100;
    justify-content: center;
    align-items: center;
    padding-top: 7px;
  }
  .pulse a:hover {
  color: #fff;
  }
  .pulse:before,
  .pulse:after {
  content: '';
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #58ea00;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite; 
  opacity: 0;
  }
  
  .pulse:after {
  animation-delay: .5s;
  }
  
  @keyframes animate {
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
    
  }
  
  




/*############################################################
<- WHATSAPP PULSE
############################################################*/






/*############################################################
-> XXXX
############################################################*/


/*############################################################
<- XXXX
############################################################*/

@media (min-width: 1200px) and (max-width: 1599.98px) {
}/*@media (min-width: 1200px) and (max-width: 1599.98px)*/

@media (min-width: 992px) and (max-width: 1199.98px) {
}/*@media (min-width: 992px) and (max-width: 1199.98px)*/

@media (max-width: 991.98px) {
}/*@media (max-width: 991.98px)*/

@media (min-width: 768px) and (max-width: 991.98px) {
}/*@media (min-width: 768px) and (max-width: 991.98px)*/

@media (max-width: 767.98px) {
}/*@media (max-width: 767.98px)*/