/* Enter Your Custom CSS Here */
.main-navigation
{
	border:none;
}
.GreenLink{
		font-weight:bold;
		color:#40761a;
		font-size:18px;
}


.OlNum1 { counter-reset: item }
.liNum1{ display: block }
.liNum1:before { content: counters(item, ".") " "; counter-increment: item }

.center {
  text-align: center;
  list-style-position: inside;
}

.MyTable
{
  border-collapse: collapse;
}

.MyTable td, .Mytable th {
  border: 1px solid black;
	padding:5px;
vertical-align:middle;
}

.vertinimolentele
{
	font-size:13px!important;
}


/*
Modal - PopUp stilius - Jokubas
*/
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 200ms ease-in-out;
  border: 1px solid black;
  border-radius: 10px;
  z-index: 10;
  background-color: white;
  width: 1000px;
  max-width: 80%;
}

.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

.modal-header {
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}

.modal-header .title {
  font-size: 1.25rem;
  font-weight: bold;
}

.modal-header .close-button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-size: 1.25rem;
  font-weight: bold;
  color:black;
}

.modal-body {
  padding: 10px 15px;
}

#overlay {
  position: fixed;
  opacity: 0;
  transition: 200ms ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .5);
  pointer-events: none;
}

#overlay.active {
  opacity: 1;
  pointer-events: all;
}
/*
Modal - PopUp stilius End
*/

