.elementor-10370 .elementor-element.elementor-element-0c46a4e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-10370 .elementor-element.elementor-element-4b001e7{text-align:center;}.elementor-10370 .elementor-element.elementor-element-4b001e7 .elementor-heading-title{font-family:"Black Diamond", Sans-serif;font-size:4.5em;color:#222222;}.elementor-10370 .elementor-element.elementor-element-89f6e75{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget .tippy-tooltip .tippy-content{text-align:center;}@media(max-width:1024px){.elementor-10370 .elementor-element.elementor-element-4b001e7 > .elementor-widget-container{margin:40px 0px 0px 0px;}}@media(max-width:767px){.elementor-10370 .elementor-element.elementor-element-0c46a4e{--margin-top:20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-10370 .elementor-element.elementor-element-4b001e7 > .elementor-widget-container{margin:0px 0px 0px 0px;}}/* Start custom CSS for html, class: .elementor-element-bd197f6 *//* =========================
   ROOT
========================= */

.repro-text-drag {
  /*max-width: 1200px;*/
  margin: auto;
  font-family: 'Cera Pro', sans-serif;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}


/* =========================
   INTRO
========================= */

.repro-text-drag .rtd-intro {
  position: relative;
  display: inline-block;
}

.repro-text-drag .rtd-intro__image {
  width: 200px;
}

/* bubble */
.repro-text-drag .rtd-intro__bubble {
  position: absolute;
  left: 87%;
  top: 80px;
  margin-left: 15px;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
 font-family: sans-serif;
  background: #5a6eb4;
  color: #fff;
  text-align: left;
  font-size:18px;
  min-width: 290px;
    background: #ac70a2 !important;
}

/* arrow */
.repro-text-drag .rtd-intro__bubble::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 80px;
  border: 10px solid transparent;
  border-right-color: #ac70a2;
}


/* =========================
   BUTTON SYSTEM
========================= */

.repro-text-drag .rtd-btn {
  margin-top: 40px;
  padding: 22px 25px;
  border: none;
  background: #b66da4;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  width: 250px;
  font-size: clamp(14px, 1.4vw, 18px);
  font-family: 'Cera Pro', sans-serif;
 
  transition: 0.2s;
}

.repro-text-drag .rtd-btn:hover {
  transform: translateY(-2px);
}

.repro-text-drag .rtd-btn--check {
  margin-top: 50px;
  font-size: clamp(14px, 1.4vw, 18px);
}


/* =========================
   CHOICE
========================= */

.repro-text-drag .rtd-choice__grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.repro-text-drag .rtd-choice__card {
  cursor: pointer;
  transition: 0.2s;
}

.repro-text-drag .rtd-choice__card:hover {
  transform: scale(1.05);
}

.repro-text-drag .rtd-choice__image {
  width: 180px;
  border-radius: 12px;
}


/* =========================
   SCREEN SYSTEM
========================= */

.repro-text-drag .rtd-screen {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.repro-text-drag .rtd-screen.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}


/* =========================
   BACK BUTTON
========================= */

.repro-text-drag .rtd-btn--back {
  position: absolute;
  top: -120px;
  left: 10px;
  background: #eee;
  color: #222;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}


/* =========================
   ACTIVITY
========================= */

.repro-text-drag .rtd-activity {
  margin-top: 40px;
}

.repro-text-drag .rtd-result {
  margin-top: 20px;
  font-weight: bold;
}


/* =========================
   DIAGRAM
========================= */

.repro-text-drag .rtd-diagram {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  aspect-ratio: 2207 / 2560;
}

.repro-text-drag .rtd-diagram__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}


/* =========================
   DROPZONES
========================= */

.repro-text-drag .rtd-dropzone {
  position: absolute;
  width: 22%;
  min-height: 40px; /* FIX για text */
  padding: 4px;
  transform: translate(-50%, -50%);
  border: 2px dashed #bbb;
  border-radius: 6px;
  background: rgba(255,255,255,0.85);
  transition: 0.2s;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-align: center;
}

.repro-text-drag .rtd-dropzone.is-hover {
  border-color: #b66da4;
  background: rgba(182,109,164,0.1);
}


/* =========================
   INFO PANEL (NEW)
========================= */

.repro-text-drag .rtd-info-box {
  display: none;
  margin-top: 25px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: left;
  line-height: 1.6;
  font-size: 16px;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.repro-text-drag .rtd-info-box.show {
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   LABELS (DRAG TEXT)
========================= */

.repro-text-drag .rtd-labels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.repro-text-drag .rtd-drag {
  background: #fff;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: grab;
  text-align: center;

  touch-action: none;
  user-select: none;

  font-size: clamp(14px, 1.4vw, 18px);
}


/* =========================
   STATES
========================= */

.repro-text-drag .is-dragging {
  transform: scale(1.05);
  cursor: grabbing;
  z-index: 1000;
}

.repro-text-drag .is-correct {
  border: 2px solid green;
}

.repro-text-drag .is-wrong {
  border: 2px solid red;
}

.repro-text-drag .is-completed {
  opacity: 0.6;
  pointer-events: none;
}

.rtd-screen--female .rtd-info-box{background: #606aac!important;
    color: #fff;}
.rtd-screen--male .rtd-info-box{background: #ba71a8!important;
    color: #fff;}
.next-to-choice {
  display: inline-flex;
  align-items: center;
  gap: 2px;
   justify-content: center;
    position: fixed;

  right: 30px;
  bottom: 30px;

  z-index: 9999;

  padding: 16px 22px;
  width: auto;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
   
  
}
/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
    .next-to-choice{right:150px!important;}
}
@media (max-width: 1024px) {
     .repro-text-drag .rtd-btn {
    width: 100%;
    max-width: 180px;
  }
  
   .repro-text-drag .rtd-btn--back{ max-width: 80px;top:-50px;}
}
@media (max-width: 768px) {

  .repro-text-drag .rtd-choice__grid {
    flex-direction: column;
    align-items: center;
  }

  .repro-text-drag .rtd-intro__bubble {
    position: static;
    margin-top: 20px;
    min-width: auto;
  }

 

}

.rtd-activity {
  position: relative;
}



.ra-btn__icon svg {
  width: 32px;
  height: 32px;
  padding-top: 5px;
  display: block;
}

@media (max-width: 600px) {
 
 .ra-intro-cta {
    justify-content: center;
  }

.next-to-choice{margin-top:80px;position: relative;right:0;bottom:0}

}

@media (max-width: 480px) {
 
.next-to-choice{
    display: inline-flex;
  align-items: center;
  gap: 2px;
   justify-content: center;
   

  right: 0;
  bottom: 0;

  z-index: 9999;

  padding: 16px 22px;
  width: auto;

  box-shadow: 0 10px 30px rgba(0,0,0,0.2);margin-top:80px;position: relative;}
}



/* =========================
   2 COLUMN LAYOUT
========================= */

.repro-text-drag .rtd-layout{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:60px;

  width:100%;
  margin-top:40px;
}

/* LEFT */
.repro-text-drag .rtd-left{
  flex:0 0 520px;
}

/* RIGHT */
.repro-text-drag .rtd-right{
  flex:1;
  max-width:500px;

  display:flex;
  flex-direction:column;
  gap:24px;
}

/* diagram λίγο μεγαλύτερο */
.repro-text-drag .rtd-diagram{
  max-width:520px;
  margin:0;
}

/* labels */
.repro-text-drag .rtd-labels{
  margin-top:0;

  display:grid;
  grid-template-columns:repeat(2,minmax(140px,1fr));
  gap:14px;
}

/* πιο compact cards */
.repro-text-drag .rtd-drag{
  min-height:60px;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:14px;
}

/* info panel */
.repro-text-drag .rtd-info-box{
  margin-top:0;
}

@media (max-width: 1024px){

  .repro-text-drag .rtd-layout{
    flex-direction:column;
    align-items:center;
  }

  .repro-text-drag .rtd-left,
  .repro-text-drag .rtd-right{
    width:100%;
    max-width:700px;
  }

  .repro-text-drag .rtd-right{
    margin-top:30px;
  }

}

@media (max-width: 600px){

  .repro-text-drag .rtd-labels{
    grid-template-columns:1fr;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9547829 */.repro-activity{
max-width:900px;
margin:auto;
font-family: 'Comic Sans MS', cursive;
text-align:center;
}

.diagram{
position:relative;
margin:30px auto;
}

.base-image{
width:100%;
max-width:500px;
}

.dropzone{
position:absolute;
width:120px;
height:40px;
border:2px dashed #bbb;
border-radius:6px;
background:#ffffffaa;
}

.labels{
margin-top:30px;
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
}

.drag{
padding:10px 15px;
background:#b66da4;
color:white;
border-radius:6px;
cursor:grab;
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Black Diamond';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://digital.web2social.gr/wp-content/uploads/2026/03/Black-Diamond.ttf') format('truetype');
}
@font-face {
	font-family: 'Black Diamond';
	font-style: normal;
	font-weight: bold;
	font-display: auto;
	src: url('https://digital.web2social.gr/wp-content/uploads/2026/03/Black-Diamond.woff') format('woff');
}
/* End Custom Fonts CSS */