:root{
	--background-color: #36393F;
	--background-color-alt: rgb(47, 49, 54);
	--background-color-alt2: rgb(40, 41, 46);
	--heading-color: #fff;
	--subheading-color: #ccc;
	--text-color: white;
	--link-color: #7289da;
	--link-hover-color: #0060d2;
	--primary-color: #7289da;
	--secondary-color: #e5e5e5;
	--delete-color: #e74c3c;
	--confirm-color: #2ecc71;
	--main-margin: 1vh;


}

body {
	margin: 0;
	font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: var(--background-color);
	background-color: var(--background-color);
}

p{
	color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
	color: var(--heading-color)
}

h1 {
	font-size: 2em;
}


input{
	background-color: rgba(32, 34, 37, 0);
	padding: 10px 10px;
	border-radius: 0px;
	color:white;
	border:none;
	border-bottom: 1px solid rgb(99, 99, 99);
	min-width: 50px;
	width: 100%;
	box-sizing: border-box;
}

input:focus{
	outline: none;
	border-bottom: 1px solid rgb(255, 255, 255);
}

select{
	background-color: rgba(32, 34, 37, 0);
	padding: 10px 10px;
	border-radius: 0px;
	color:white;
	border:none;
	border-bottom: 1px solid rgb(99, 99, 99);
	min-width: 50px;
	width: 100%;
}

select:focus{
	outline: none;
	border-bottom: 1px solid rgb(255, 255, 255);
	background-color: var(--background-color-alt2);
}

button{
	background-color: var(--background-color);
	color: var(--primary-color) ;
	border-radius: 4px;
	padding: 13px 10px;
	text-align: center;
	border:none;
	transition: all 0.2s ease-in-out;
}

button:hover{
	cursor: pointer;
	color:  white;
	background-color: var(--primary-color);
	transition: all 0.2s ease-in-out;
}

a {
	color: var(--link-color);
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

engage{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	width: 100%;
	margin: 20px 0;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}

/* LOADER */

.loader{
	height: 100%;
	display: flex;
	box-sizing: border-box;
	overflow: hidden;
	justify-content: center;
	align-items: center;
	padding: 20px;
	flex-direction: column;
}

.spinner {
   width: 56px;
   height: 56px;
   display: grid;
   color: #ffffff;
   background: radial-gradient(farthest-side, currentColor calc(100% - 6.7px),#0000 calc(100% - 5.6px) 0);
   -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 14.6px),#000 calc(100% - 13.4px));
   border-radius: 50%;
   animation: spinner-sm4bhi 2s infinite linear;
}

.spinner::before,
.spinner::after {
   content: "";
   grid-area: 1/1;
   background: linear-gradient(currentColor 0 0) center,
          linear-gradient(currentColor 0 0) center;
   background-size: 100% 11.2px,11.2px 100%;
   background-repeat: no-repeat;
}

.spinner::after {
   transform: rotate(45deg);
}

@keyframes spinner-sm4bhi {
   100% {
      transform: rotate(1turn);
   }
}
 /*Checkboxes styles*/
 input[type="checkbox"] { display: none; }
 
 input[type="checkbox"] + label {
   display: block;
   position: relative;
   padding-left: 35px;
   margin-bottom: 20px;
   font: 14px/20px 'Open Sans', Arial, sans-serif;
   color: #ddd;
   cursor: pointer;
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
 }
 
 input[type="checkbox"] + label:last-child { margin-bottom: 0; }
 
 input[type="checkbox"] + label:before {
   content: '';
   display: block;
   width: 20px;
   height: 20px;
   border: 1px solid var(--primary-color);
   position: absolute;
   left: 0;
   top: 0;
   opacity: .6;
   -webkit-transition: all .12s, border-color .08s;
   transition: all .12s, border-color .08s;
 }
 
 input[type="checkbox"]:checked + label:before {
   width: 10px;
   top: -5px;
   left: 5px;
   border-radius: 0;
   opacity: 1;
   border-top-color: transparent;
   border-left-color: transparent;
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
 }
 
 .editCategorie {
	display: flex;
	flex-direction: column;
 }