.modal {
  position: fixed;
  inset: 0;
  background: rgb(55, 27, 70,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-box {
  background: transparent;
  padding: 0;
  max-width: 500px;
  width: 100%;
}


* {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  background: rgb(55, 27, 70);
  padding: 40px;
}

.window {
  	width: 90%;
	max-width: 400px;
  	background: #d6d2c8;
  	border-top: 2px solid #F6F0E5;
  	border-left: 2px solid #F6F0E5;
  	border-right: 2px solid #939089;
  	border-bottom: 2px solid #939089;
	margin: auto ;
}

.window.small {
  width: 420px;
}

.title-bar {
  background: #0a2a6a;
  color: #fff;
  padding: 6px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.close {
  background: #d6d2c8;
  border: 1px solid #454341;
  width: 22px;
  height: 22px;
  cursor: pointer;
  padding:  2px 2px !important;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #454341;;
}

.window-content {
  padding: 10px;
	text-align: center;
}

h1 {
  color: #ff1212;
  text-align: center;
  font-size: 26px;
  margin-bottom: 0;
	font-weight: 500;
}

p.prize{
	color: #ff1212;
  	text-align: center;
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 600;
	margin: 0 0 2rem 0
	padding: 0;
}

input {
  width: 100%;
  height: 34px;
  margin-top: 18px;
  border-top: 2px solid #939089;
  border-left: 2px solid #939089;
  border-right: 2px solid #F6F0E5;
  border-bottom: 2px solid #F6F0E5;
  background: #D3CFC6;
font-size: 16px;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.buttons.right {
  justify-content: flex-end;
  
}




button {
  padding: 6px 18px;
  background: #d6d2c8;
  border: 1px solid #454341;
  box-shadow:
	/* borde externo */
	/* borde interno */
	inset 1px 1px 0 #E3E1DA,
	inset -1px -1px 0 #E3E1DA;
  cursor: pointer;
}

button.primary {
  background: #0a2a6a;
  color: white;
}

button.primary.center {
  	margin: auto;
	display: block;
}

.progress-content {
  display: flex;
  justify-content: space-around;
	margin-bottom: 15px;
}

.transfer {
  position: relative;
  width: calc(100% - 40px);
  height: 120px;
  margin: 0 auto;
overflow: hidden;
margin: 0 20px;
}
.folder {
  position: absolute;
  bottom: 20px;
  width: 48px;
  height: 48px;
  /*border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  border-right: 3px solid #666;
  border-bottom: 3px solid #666;*/
}

.folder.left {
  background: url('/images/directory_open_file_mydocs-5.png') no-repeat;
  left: 0px;
}

.folder.right {
  right: 0px;
  background: url('/images/directory_open_cool-0.png') no-repeat;
}
.paper {
  position: absolute;
  width: 36px;
  height: 28px;
  background: white;
  top: -12px;
  left: 18px;
  border: 1px solid #999;
  transform-origin: bottom left;
  animation: flyPaper 1.6s linear infinite;
}
@keyframes flyPaper {
  0% {
	transform: translate(0, 0) rotate(0deg);
	opacity: 1;
  }

  20% {
	transform: translate(20px, -10px) rotate(-10deg);
  }

  60% {
	transform: translate(260px, -10px) rotate(6deg);
	opacity: 1;
  }

  80% {
	transform: translate(280px, -10px) rotate(12deg);
	opacity: 0;
  }

  100% {
	transform: translate(0, 0) rotate(0deg);
	opacity: 0;
  }
}


.status {
  padding: 0 0 10px;
  font-size: 14px;
}

.progress {
  width: 260px;
  height: 22px;
  background: #d6d2c8;
  border: 2px solid #808080;
  box-shadow: inset 1px 1px 0 #fff;
  padding: 3px;
  overflow: hidden;
}

.marquee {
  height: 100%;
  width: 120px; /* ancho del grupo de bloques */
  background:
	repeating-linear-gradient(
	  90deg,
	  #0a2a6a 0 20px,
	  transparent 20px 26px
	);
  animation: marqueeMove 1.4s linear infinite;
}

@keyframes marqueeMove {
  from {
	transform: translateX(-120px);
  }
  to {
	transform: translateX(260px);
  }
}

@media (max-width: 768px) {
    .progress-content {
        flex-direction: column;
	align-items: center;
    }
}