<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#ponte_del_diavolo {
	width:100%;
	height:100%;
}

#board {
}

#score {
}

.coor_top, .coor_bottom {
	display: flex;
	flex-direction: row;
}
.coor_left_right {
	display: flex;
	flex-direction: column;
	padding-right: 0px !important;
}

.coor_cell {
	display: block;
	flex-grow: 1;
	text-align: center;
}

.coor_cell span {
	position: relative;
	display: inline-block;
	top: -0.5em;
}
.btn_block {
	display: flex;
	flex-direction: column;
}
 .btn_n {
	border: 1px solid #b48378;
	width:100%;
	color: '#333';
	text-align: center;
	padding: 5px 5px;
	text-decoration: none;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: inset 0 0 15px RGBA(234, 105, 81, 0.2);
	background-color: #ffffff;
	font-weight: bold;
	z-index: 1001;
	position: relative;
}
.btn_n:hover {
	background-color: RGBA(234, 105, 81, 0.2);
}
.move_pointer {
	border-radius: 6px;
	padding: 5px 5px;
	border: 1px solid #b48378;
	width: 100%;
	text-align: center;
	display: block;
	flex-grow: 1;
	color: white;
	font-weight: bold;
	margin: 0 -10px;
}
.white {
	background-color: #ea6951;
}
.black {
	background-color: #543a3b;
}

.white, .black {
	color: #ffffff;
}
#white_p, #black_p {
	text-align: center;
	padding: 5px 0;
	font-weight: bold;
	font-size: 18px;
}
.points {
	padding: 0 15px;
}
.move {
	display: block;
	text-align: left;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
}
@media (max-width: 480px) {
	.move {
		font-size: 12px;
	}
}

.moves {
	padding-top: 5px;
	padding-left: 5px;
}
.move_conntrol {
	text-align: center;
	border: 1px solid #543a3b; 
	border-radius: 6px;
}
.close {
	display: none !important;
}
.grey { 
	color: #777;
	font-weight: lighter;
}
#move_control {
	padding-bottom: 5px;
}
#white_p {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
#black_p {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

/* ========================== MODAL
================================ */
.modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 999;
}

.modal-dialog-1 {
	max-width: 780px;
	min-width: 360px;
    width: 95%;
    background: #ffffff;
    border-radius: 5px;
    margin: auto;
	padding: 20px 10px 0 10px
}

.modal-dialog-reload-1 {
    width: auto;
    position: relative;
}

.is_open {
    display: flex;
}
.save_load {
	padding-top: 5px;
}
.close_modal {
    font-size: 36px;
    border: none;
    background-color: transparent;
    position: absolute;
    top: 10px;
	right: 20px;
	z-index: 1001;
}
.date {
}
.remove_icon {
	color: red;
}
.div_in_list {
	cursor: pointer;
}</pre></body></html>