/*
Theme Name: Betheme
Theme URI: https://themes.muffingroup.com/betheme/
Author: Muffin group
Author URI: https://muffingroup.com/
Description: The biggest WordPress Theme ever
License: Themeforest Split Licence
License URI: https://themeforest.net/licenses/standard
Text Domain: betheme
Version: 21.8.1

All css files are placed in /css/ folder
*/

.variation-SeilenResimler{
	display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.products .woocommerce-Price-amount{
	display:none;
}

	.aks-popup{
		    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0000007a;
    z-index: 99999999999;
 opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
		visibility:hidden;
	}
	.aks-popup-box{
		width: 40%;
    height: 40%;
    background: white;
    border-radius: 10px;
    padding: 10px;
		  opacity: 0;
  transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;	
  transform: scale(0.8);
		-webkit-transform: scale(0.8);
		display:flex;
		align-items:center;
flex-direction:column;
	}
	.aks-popup.opened{
		opacity: 1;
		visibility:visible;
	}
	.aks-popup-box.opened{
 opacity: 1;
  transform: scale(1);
-webkit-transform: scale(1);
	}
	.aks-btn-row{
	display: flex;
    align-items: center;   
	justify-content: center;
	}
	
	.aks-btn{
	    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    width: 210px;
		height:40px;
    font-size: 15px;
    padding: 8px 8px;
    border-radius: 6px;
    text-decoration: none !important;
		margin-right:0.8rem;   

	}
.aks-btn:nth-child(2n){
	margin-right:0;
}
	.aks-btn span{
		display:flex;
		align-items:center;
		margin-right:8px;
	}
	.aks-btn svg {
		width:21px;
	}
	.aks-popup-basket-btn{
	width: fit-content;
    float: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: gainsboro;
    color: #353535;
    padding: 5px 20px;
    border-radius: 8px;
    margin-top: 2rem;
    text-decoration: none;
	}
	.aks-popup-title{
		    font-size: 24px;
    color: black;
    font-weight: 700;
    font-family: sans-serif;
    margin: 13px;
	}
	
	.aks-btn.color1{
		background: #461b50;
    color: white;
	}
	.aks-btn.color1 svg{
		fill: white;
	}
	.aks-btn.color2{
		background: #dcf8e5;
    color: black;
	}
	.aks-btn.color2 svg{
		fill: black;
	}
	@-webkit-keyframes scaleAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleAnimation {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes drawCircle {
  0% {
    stroke-dashoffset: 151px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCircle {
  0% {
    stroke-dashoffset: 151px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes drawCheck {
  0% {
    stroke-dashoffset: 36px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes drawCheck {
  0% {
    stroke-dashoffset: 36px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#successAnimation.animated {
	fill: green;
    width: 140px;
    height: 140px;
    margin-top: -10px;		
}
#successAnimationCircle {
  stroke-dasharray: 151px 151px;
  stroke: #13d600;
}
#successAnimationCheck {
  stroke-dasharray: 36px 36px;
  stroke: #FFF;
}
#successAnimationResult {
  fill: #13d600;
  opacity: 0;
}

.aks-popup.opened #successAnimation.animated {
  -webkit-animation: 1s ease-out 0s 1 both scaleAnimation;
          animation: 1s ease-out 0s 1 both scaleAnimation;
}
.aks-popup.opened #successAnimation.animated #successAnimationCircle {
  -webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
          animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCircle, 0.3s linear 0.9s 1 both fadeOut;
}
.aks-popup.opened #successAnimation.animated #successAnimationCheck {
  -webkit-animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
          animation: 1s cubic-bezier(0.77, 0, 0.175, 1) 0s 1 both drawCheck, 0.3s linear 0.9s 1 both fadeOut;
}
.aks-popup.opened #successAnimation.animated #successAnimationResult {
  -webkit-animation: 0.3s linear 0.9s both fadeIn;
          animation: 0.3s linear 0.9s both fadeIn;
}
	.aks-popup.opened .aks-popup-succes-title{
		    font-weight: 500;
    font-size: 24px;
    margin-top: -10px;
    color: green;
		  -webkit-animation: 1s ease-out 0s 1 both scaleAnimation;
          animation: 1s ease-out 0s 1 both scaleAnimation;
	}
	
	@media only screen and (max-width: 600px) {
		.aks-popup-box {
    width: 85%;
			height: 65%;}
		.aks-btn-row {
    display: grid;
    align-items: center;
    grid-template-columns: auto;
    grid-gap: 0.8rem;
    justify-content: center;margin-top: 1rem;
}
		.codedropz-upload-inner {
    overflow: hidden;
    width: 100%;
    white-space: break-spaces;
    text-align: center;
    text-overflow: ellipsis;
    font-weight: inherit;
    line-height: 1 !important;
}
		.codedropz-upload-inner .codedropz-label {
    margin: 5px 0;
    line-height: 1.5 !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}.dnd-upload-status .dnd-upload-image {
    width: 40px;
    height: 40px;
    border: 1px solid #a5a5a5;
    text-align: center;
    border-radius: 9999px !important;
    position: relative;
	overflow:hidden;
}
	
.woocommerce .product .post-nav {
    display: none;
}
		
	}