<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.ays_quiz_fc_buttons{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 80%;
    margin-top: 3.9em !important;
    padding: 10px 12px;
    margin: auto;
    background-color: #fff;
	z-index: 90;

}
.ays_quiz_fc_buttons button{
    flex: 1;
    font-size: 0.95em;
    background-color: #3e3b56;
    padding: 8px 25px;
    border: none;
    border-radius: 2px;
	word-break: keep-all;
	white-space: nowrap;
}
.ays_quiz_fc_buttons button:hover{
    /* Hacemos que, independientemente del color de fondo, el fondo se vea mas oscuro, solo el fondo, el texto no */
    filter: brightness(0.9);
}
.ays_quiz_fc_buttons button.disabled{
    background-color: #ccc !important;
    cursor: not-allowed !important;
}
.ays_quiz_fc_buttons button.ays_quiz_fc_again{
    background-color: #e63133;
}
.ays_quiz_fc_buttons button.ays_quiz_fc_easy{
    background-color: #3e3b56;
}
.ays_quiz_fc_buttons button.ays_quiz_fc_hard{
    background-color: #e8c557;
}
.ays_quiz_fc_buttons button.ays_quiz_fc_good{
    background-color: #009444;
}
.ays_quiz_fc_buttons .ays_quiz_fc_button_time{
    display: block;
    font-size: 0.8em;
    color: #f1f1f1;
}

.ays_quiz_fc_next_prev_btn{
    font-size: 0.95em;
    min-width: 120px;
    background-color: #3e3b56;
    padding: 8px 25px;
    border: none;
    border-radius: 2px;
}

/*------------------------*/
/* Spinner                */
/*------------------------*/
.loader-container{
	position: fixed;
	top: 0;
	left: 0;
	background: rgba( 0, 0, 0, 0.3);
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 1000;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	display: flex;
}
.loader-container .loader{
	width: 48px;
	height: 48px;
	border-radius: 50%;
	position: relative;
	animation: rotate 2s linear infinite;
}
.loader-container .loader::before,
.loader-container .loader::after{
	content: '';
	box-sizing: border-box;
	position: absolute;
	inset: 0px;
	border-radius: 50%;
	border: 5px solid #fff;
	animation: spinner 2s linear infinite;
}
.loader-container .loader::after{
	border-color: #3e3b56;
	animation: spinner 2s linear infinite , rotate 0.5s linear infinite reverse;
	inset: 6px;
}
@keyframes spinner {
	0%   { clip-path:polygon( 50% 50%,0 0,0 0,0 0,0 0,0 0 ) }
	25%  { clip-path:polygon( 50% 50%,0 0,100% 0,100% 0,100% 0,100% 0 ) }
	50%  { clip-path:polygon( 50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100% ) }
	75%  { clip-path:polygon( 50% 50%,0 0,100% 0,100% 100%,0 100%,0 100% ) }
	100% { clip-path:polygon( 50% 50%,0 0,100% 0,100% 100%,0 100%,0 0 ) }
}

/* Timer */
.ays_quiz_flash_card_time_limit{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px auto;
	font-size: 18px;
}

/* Dialogo modal para cuando se acaba el tiempo */
.ays-flashcards-time-up-container{
	position: fixed;
	top: 0;
	left: 0;
	background: rgba( 0, 0, 0, 0.4);
	overflow: hidden;
	width: 100%;
	height: 100%;
	z-index: 1000;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	display: none;
}
.ays-flashcards-time-up-content{
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	max-width: 450px;
	width: 100%;
	max-height: 30vh;
	overflow-y: auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.ays-flashcards-time-up-text{
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
	margin-top: 20px;
}
.ays-flashcards-time-up-buttons{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
}
a.ays-flashcards-time-up-button{
	background-color: #3e3b56;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	margin: 0 10px;
	cursor: pointer;
	text-decoration: none !important;
}
a.ays-flashcards-time-up-button:hover{
	filter: brightness(0.9);
}

.ays_quiz_fc_restart_btn_container{
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 15px auto;
}
a.ays_quiz_fc_restart_btn{
	background-color: #3e3b56;
	color: #fff;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none !important;

}

/* Dos media queries: 768px y 480px */
@media (max-width: 1024px){
	.ays_quiz_fc_buttons{
		width: 80%;
	}
}
@media (max-width: 768px){
	.ays_quiz_flash_card_main_container .ays_quiz_back{
		padding: 10px !important;
	}
	.ays_quiz_fc_buttons{
		width: 75%;
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width: 480px){
	.ays_quiz_flash_card_main_container .ays_quiz_back{
		padding: 10px !important;
	}
	.ays_quiz_fc_buttons{
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 5px;
	}
}
@media (max-width: 360px){
	.ays_quiz_flash_card_main_container .ays_quiz_flash_card{
		padding: 10px;
	}
	.ays_quiz_fc_buttons{
		width: 100%;
		display: grid;
		grid-template-columns: 1fr;
		gap: 5px;
	}
}</pre></body></html>