* {
	font-family: "Rubik", "sans-serif";
	direction: rtl;
}
body {
	font-family: "Rubik";
	margin: 3vmin;
}
.main-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	
}
.main-header img {
	margin-top: 30px;
	width: 5%;
}
.cal-cal {
	display: flex;
	justify-content: center;
	align-items: right;
	flex-wrap: wrap;
}

.main-logo {
	object-fit: contain;
	min-width: 80px;
}
.main-logo:hover {
	cursor: pointer;
}
legend {
	padding: 10px;
}

.ui-selectmenu-icon.ui-icon {
	float: left;
	margin-top: 2px;
}
.ui-selectmenu-menu .ui-menu {
	margin-top: 10px;
	border-radius: 10px;
}
.ui-widget.ui-widget-content {
	border-radius: 5px;
}

#screensize-handle, #distance-handle, #bezel-handle {
	width: 40px;
	height: 1.5em;
	top: 50%;
	margin-top: -.75em;
	margin-left: -1em;
	text-align: center;
	line-height: 1.5em;
	background-color: white;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

label {
	display: block;
	margin: 1em 0 0.3em 0;
	font-weight: bold;
}

fieldset label:first-of-type {
	margin-top: 0;
}

.ui-slider {
	margin-top: 0.7em;
}

fieldset {
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	border: 1px solid rgb(21, 0, 255);
	padding: 1em 1.3em;
	min-width: 350px;
	border-radius: 20px;
}
.ui-selectmenu-button.ui-button {
	background-color: white;
	border-radius: 10px;
	text-align: right;

}

ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ul li {
	margin-bottom: 0.6em;
	display: grid;
}

ul li span:first-child {
	display: block;
	margin-bottom: 0.2em;
}

ul li span:first-child::after {
	content: ':';
}

ul li span:last-child {
	font-weight: bold;
	padding-left: 1.5em;
}
button {
	width: 120px;
	height: 45px;
	color: white;
	font-weight: bold;
	background-color: red;
	border-radius: 10px;
	border-width: 1px;
	border: none;
	border-color: none;
}
button:hover {
	cursor: pointer;
	color: red;
	background-color: white;
	border: solid;
	border-color: red;
	transition: 0.2s;
}
.last-part {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}
@media (max-width: 1056px) {
	.cal-cal {
		flex-direction: column;
	}
	
}