body, html{
	height:auto;
	font-family:"Open Sans";
	background-color: #f3f3f3;
}
.table input,#table textarea, #table input:not([type='checkbox']){
	width:100%;
}

.card {
	border: none !important;
    box-shadow: 0px 15px 40px rgb(0 0 0 / 8%);
    border-radius: 14px;
    background: #064A91;
    color: #fff;
    max-width: 700px;
	margin-bottom: 20px;
}

select, input, textarea{
	font-family: Open Sans;
    font-size: 16px;
}

#form {
	background-color: #fff;
	border-radius: 10px;
}

.container {
	display: flex;
    flex-direction: column;
	max-width: 1100px;
	margin: 0 auto;
    padding: 30px;
}

.form_title,.form_title2, .form_title_0{
	background: #064A91;
    color: #fff;
    padding: 8px 16px;
    margin: 15px 0px;
    font-weight: bold;
    border-radius: 10px;
    display: flex;
	width: 100%;
    box-sizing: border-box;
}
.h1{
	/*font-size: 24px;
    text-align: center;
    padding-bottom: 10px;
    color: #D70015;
    font-weight: bold;
    margin-top: 0px;*/
	color: rgb(33, 37, 41);
	display: block;
	font-family: Montserrat, sans-serif;
	font-size: 42px;
}

.party{
	display: flex;
    flex-direction: column;
    align-items: center;
}

.NewParty, .deletePart{
	text-align:center;

	cursor:pointer;
	margin:0 10px;

}

.NewParty:hover, #AddPart:hover{
	cursor:pointer;
}
#AddPart, #buttonblock{
	width: 100%;
    box-sizing: border-box;
	/* border:1px solid #cccccc; */
}


#na{    
	background-color: #064A91;
    color: white !important;
    padding: 10px 20px;
    border: 0px;
    border-radius: 15px;
	width: 250px;
}

#na:hover{
	cursor:pointer;
}

.partOf{
	display: flex;
}
td .power{
	background:none !important;
}
.inline-link:hover {
	color: #F17400;
}

.link-black {
	color: #000;
	cursor: pointer;
}
.link-black:hover {
	text-decoration: underline;
	color: #F17400;
}

/* Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
  }
  
  /* Modal Content/Box */
  .modal-content {
	background-color: #fefefe;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 500px;
	border-radius: 10px;
	animation-name: animatetop;
  	animation-duration: 0.4s
  }
  
  /* The Close Button */
  .close-button-modal {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
  }
  
  .close-button-modal:hover,
  .close-button-modal:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }

  @keyframes animatetop {
	from {top: -300px; opacity: 0}
	to {top: 0; opacity: 1}
  }