.wcsa-rtl, .wcsa-rtl * {
    direction: rtl;
    text-align: right;
}
.wcsa-image-container {
    position: relative;
    width: 260px;
    margin: 20px auto;
     display: inline-block;
}

.wcsa-image-container img {
    max-width: 100%;
    display: block;
}
select#wcsa-language {
    border: 2px solid #ff718a;
    color: #9b1b31;
    border-radius: 0 !important;
    font-size: 18px;
}
.wcsa-image-container canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    mix-blend-mode: color-dodge;
}


#wcsa-preview-image {
    width: 100%;
    border-radius: 12px;
}

.wcsa-scanner {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
}

.scanner-line {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(
        to bottom,
        rgba(0,255,200,0),
        rgba(0,255,200,0.6),
        rgba(0,255,200,0)
    );
    animation: scanMove 1.6s linear infinite;
}

@keyframes scanMove {
    0% {
        top: -40px;
    }
    100% {
        top: 100%;
    }
}

.wcsa-scanning-text {
    text-align: center;
    font-weight: 500;
    color: #00a8a8;
    margin-top: 8px;
}
.wcsa-scanner ~ #wcsa-preview-image {
    filter: blur(1px);
}
.wcsa-image-container {
  position: relative;
}

.wcsa-heatmap {
  position: absolute;
  pointer-events: none;
  display:none !important;
}

.wcsa-zone {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    rgba(255, 0, 0, 0.80),
    rgba(255, 0, 0, 0)
  );
  animation: pulse 2.5s infinite;
}
.wcsa-heatmap-svg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}


@keyframes pulse {
  0% { opacity: 0.4; }
  50% { opacity: 0.7; }
  100% { opacity: 0.4; }
}
.giform {
    display: flex;
    gap: 20px;
 background: #f3f3f3;
}
.form.col {
    padding: 50px;
    background: #f3f3f3;
    border-radius: 10px;
}
.scanner.col {
    text-align: center;
    padding: 5px;
}
div#wcsa-result {
    padding: 25px;
    margin-top: 20px;
    background: #ffa5b82e;
    border-radius: 10px;
}
.form.col button {
  background: #ffa5b8;
    color: #fff;
}
form#wcsa-form input.inputwcsa {
    border: 2px solid #ff718a;
    color: #9b1b31;
    border-radius: 0 !important;
    padding: 20px 10px !important;
    font-size: 18px;
}
form#wcsa-form label.wcsa-upload {
  cursor:pointer;
}
form#wcsa-form input#skin_image{

}

.wcsa-scanning-text{
	color: #b40c48 !important;
  text-transform: uppercase;
  font-weight: bold;
}
.scanner-line {
    background: linear-gradient(rgba(241, 12, 76, 0.52),rgba(238, 24, 84, 0.58),rgba(206, 10, 47, 0.29));
}
.wcsa-image-container {
    box-shadow: none !important;
}
.wcsa-products a {
    display: inline-block;
    width: 33%;
    margin: 10px 0px;
    vertical-align: top;
    text-align: center;
}
.wcsa-products a p {
    color: #000;
    padding: 10px 15px;
}
div#wcsa-result table{
border:none !important;
}
div#wcsa-result table tr{

}
div#wcsa-result table tr td{
border: none !important;
    padding: 10px 10px 10px 0;
    width: 25%;
    vertical-align: top;
}
div#wcsa-result * {
    color: #000;
}
.wcsa-products h2 {
    margin-bottom: 35px;
}
@media(max-width:500px){
	.giform {
    display: block;
}
div#wcsa-result table tr td{
display:block !important;
width:100% !important;
}
.form.col {
    padding: 20px;
}
.wcsa-products a {
    display: block;
    width: 100%;
    margin: 10px 0px;
}
}
.wcsa-upload-status {
    margin-top: 10px;
    padding: 8px 14px;
    display: block;
    color: #1e7f4f;
    font-size: 14px;
    font-weight: 500;
    animation: wcsaFadeIn 0.4s ease-in-out;
}

@keyframes wcsaFadeIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.wcsa-rtl .wcsa-products a, .wcsa-rtl .wcsa-products a * {
    text-align: center !important;
}