/* you can add your own custom css here if you don't want to worry about SASS/SCSS */

/* Fonts */
@font-face
{
	font-family: notosansReg;
	src: url('/ddassets/fonts/NotoSansRegular.ttf');
}

@font-face
{
	font-family: notosansBlack;
	src: url('/ddassets/fonts/NotoSansBlack.ttf');
}

@font-face
{
	font-family: notosansBold;
	src: url('/ddassets/fonts/NotoSansBold.ttf');
}

/* Globals */
*
{
	font-family: notosansReg;
 	color: white;
}

a
{
 	text-decoration: none;  
}

a:link
{
 	text-decoration: none;    
}

a:visited
{
 	text-decoration: none;    
}

/* No arrows/spinners. Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* No arrows/spinners. Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* DD content */
.ddcontent
{
    width: 100%;
    background-color: black;
    padding-right: 20px;
    padding-left: 20px;
}

/* Toggle switch */
.ddswitch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.ddswitch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* Toggle slider */
.ddslider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.ddslider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .ddslider {
	background-color: #2196F3;
}

input:focus + .ddslider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .ddslider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

.ddslider.ddround {
	border-radius: 34px;
}

.ddslider.ddround:before {
	border-radius: 50%;
}

/* Blur overlay */
.ddblur
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	backdrop-filter: blur(4px);
	z-index: 5;
}

/* Popup boxes */
.ddpopupbox {
	width: 50%;
	text-align: center;
    padding: 5px;
	position: absolute;
	top: 53%;
	left: 50%;
	transform: translate(-50%, -50%);
    background-color: #000;
}
