/* **** Paston Activities Applets CSS **** */

.dndbox
{
	position: absolute;
	padding: 1px 5px 0 5px;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	background-color: #f8f8f8;
	box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.dndbox:hover
{
	cursor: pointer;
}

.dndlandingpad
{
	position: absolute;
	box-sizing: content-box;
	border: 2px solid black;
}

#dndcheckbtn, #wecheckbtn
{
	padding: 2px 18px;
}

#dndpopup, #wepopup
{
	display: none;
    position: fixed;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    z-index: 1000;
    padding: 10px;
    border: 1px solid black;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5);
    background-color: #f6f1e2;
    width: 350px;
    border-radius: 10px;
}

#dndpopbtns, #wepopbtns
{
	display: flex;
	justify-content: space-between;
}

#dndpopbtns input, #wepopbtns input
{
	padding: 2px 18px;
}

/*#dndpopbtns input:first-of-type,
#wepopbtns input:first-of-type
{
	margin-right: 20px;
}
*/
