@font-face {
	font-family: "Flama Book";
	src: url(../fonts/Flama-Book.otf);
	src: url(../fonts/Flama-Book.otf) format("opentype");
}

@font-face {
	font-family: "Flama Light";
	src: url(../fonts/Flama-Light.otf);
	src: url(../fonts/Flama-Light.otf) format("opentype");
}

@font-face {
	font-family: "Flama Light Italic";
	src: url(../fonts/Flama-LightItalic.otf);
	src: url(../fonts/Flama-LightItalic.otf) format("opentype");
}

@font-face {
	font-family: "Flama Light";
	src: url(../fonts/Flama-Light.otf);
	src: url(../fonts/Flama-Light.otf) format("opentype");
}


@font-face {
	font-family: "Flama Medium";
	src: url(../fonts/Flama-Medium.otf);
	src: url(../fonts/Flama-Medium.otf) format("opentype");
}

:root {
	--lightgray: #efefef;
	--blue: steelblue;
	--white: #fff;
	--black: rgba(0, 0, 0, 0.8);
	--bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

* {
	padding: 0;
	margin: 0;
}

#modalButton {
	cursor: pointer;
	background: transparent;
	border: none;
	outline: none;
	font-size: inherit;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font: 16px/1.5 sans-serif;
	/* background:#FFF; */
	font-family: "Flama Book";
}

i {
	font-family: "Flama Light Italic";
}

b {
	font-family: "Flama Medium";
}

.bodyMain {
	background-image: url(../images/Interfaz-inicial-fondo.png);
	background-size: cover;
	font-family: "Flama Book";
}

@media only screen and (max-height: 490px) {
	.bodyMain {
		height: 100%;
	}
}

#intro-text {
	opacity: 0.6;
    color: #2d2d2d;
    font-size: 20px;
}

.bodyRuleta {
	display: flex;
	flex-direction: column;
	background-image: url(../images/Fondo-ruleta.png);
}

.btn-group {
	text-align: center;
}

.open-modal {
	font-weight: bold;
	background: var(--blue);
	color: var(--white);
	padding: .75rem 1.75rem;
	margin-bottom: 1rem;
	border-radius: 5px;
}

#square {
	width:592px;
	/* margin:auto; */
	display:flex;
	flex-direction:column;
	align-items:center;  
}

#box {
	width:592px;
	height:192px;
	/* margin:5em auto 0 auto; */
	background:#FFF;
	overflow:hidden;
	/* border:8px solid #516989;
	border-radius: 5px; */
}

#roulette {
	width:400px;
	height:192px;
	display:inline-flex;
}

#roulette div {
	min-width:192px;
	height:192px;
	display:inline-flex;
	flex-direction:column;
	align-items:center;
	border-right:8px solid #516989;
	/* border-left:4px solid #516989; */
}

#roulette div i {
	font-size:72px;
}

#roulette div span {
	font-family:Montserrat;
	letter-spacing:-1px;
	font-size:32px;
}

#arrow-top {
	width:0;
	height:0;
	border-left:25px solid transparent;
	border-right:25px solid transparent;
	border-top:60px solid #a51820;
	position:relative;
	top:-220px;
}

#arrow {
	width:0;
	height:0;
	border-left:25px solid transparent;
	border-right:25px solid transparent;
	border-bottom:60px solid #a51820;
	position:relative;
	top:-110px;
}

#roulette-btn {
	width:150px;
	height:50px;
	font-size:22px;
	background:#516989;
	border:0;
	color:#ebdbbb;
	border-radius: 15px;
}

button:hover {
	cursor:pointer;
}

#txt {
	margin-top:1em;
	font-family:Montserrat;
	color:#FFF;
}

.open-modal {
	font-weight: bold;
	background: var(--blue);
	color: var(--white);
	padding: 0.75rem 1.75rem;
	margin-bottom: 1rem;
	border-radius: 5px;
}


/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: var(--black);
	cursor: pointer;
	visibility: hidden;
	opacity: 0;
	transition: all 0.35s ease-in;
}

.modal.is-visible {
	visibility: visible;
	opacity: 1;
}

.modal-dialog {
	position: relative;
	max-width: 800px;
	max-height: 80vh;
	border-radius: 5px;
	background: transparent;
	overflow: auto;
	cursor: default;
	transform: scale(1.3);
}

.modal-dialog > * {
	padding: 1rem;
}

.modal-header,
.modal-footer {
	/* background: #fff; */
	text-align: right;
	direction: rtl;
}

.modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.close-modal {
	font-size: 1.3rem;
	background-color: transparent;
	border: 0px;
	color: #575756;
	opacity: 0.6;
}

.modal-container {
	width: 640px;
	height: 283px;
	background-size: cover;
}

.modal-text {
	font-family: "Flama Light";
	font-size: 9.6px;
	color: #575756;
}

#modal-title {
	width: 80%;
}

.modal-content-more-left {
	padding-left: 25px;
	padding-right: 250px;
}


.modal-content-left {
	padding-left: 50px;
	padding-right: 190px;
}

.modal-content-more-right {
	padding-left: 250px;
	padding-right: 25px;
}

.modal-content-right {
	padding-left: 190px;
	padding-right: 50px;
}

#modal-subtitle {
	color:#575756;
	opacity: 0.6;
}

.row {
	width: 100%;
	display: inline-flex;
}

.column {
	width: 50%;
}

#column1 {
	padding-right: 10px;
	text-align: justify;
}

#column2 {
	padding-right: 10px;
	text-align: justify;
}