@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Quicksand", sans-serif;
    font-size: 62.5%;
    font-size: 10px;
	background-color: #222;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 1rem 1.5rem;
    flex-direction: row-reverse;
}

.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #fff;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    margin-right: 5.2rem;
}

.nav-link{
    font-weight: bold;
    color: #fff;
    line-height: 65px;
    font-size: 2.4rem;
	text-decoration: none;
}

.nav-link:hover{
    color: #c94576;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
}

.navbar .nav-menu {
	list-style: none;
	text-decoration: none;
}

.home {
    width: 100%;
    height: 100vh;
	background-image: url(https://ubec.hu/teszt.jpg);
    background-position: center top;
	background-size:cover;
}

.navTrigger {
    cursor: pointer;
    width: 30px;
    height: 25px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
}

.navTrigger i {
    background-color: #fff;
    border-radius: 2px;
    content: '';
    display: block;
    width: 100%;
    height: 4px;
}

.navTrigger i:nth-child(1) {
    -webkit-animation: outT 0.8s backwards;
    animation: outT 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(2) {
    margin: 5px 0;
    -webkit-animation: outM 0.8s backwards;
    animation: outM 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger i:nth-child(3) {
    -webkit-animation: outBtm 0.8s backwards;
    animation: outBtm 0.8s backwards;
    -webkit-animation-direction: reverse;
    animation-direction: reverse;
}

.navTrigger.active i:nth-child(1) {
    -webkit-animation: inT 0.8s forwards;
    animation: inT 0.8s forwards;
}

.navTrigger.active i:nth-child(2) {
    -webkit-animation: inM 0.8s forwards;
    animation: inM 0.8s forwards;
}

.navTrigger.active i:nth-child(3) {
    -webkit-animation: inBtm 0.8s forwards;
    animation: inBtm 0.8s forwards;
}

@-webkit-keyframes inM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes inM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes outM {
    50% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(45deg);
    }
}

@keyframes outM {
    50% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(45deg);
    }
}

@-webkit-keyframes inT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes inT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes outT {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(9px) rotate(135deg);
    }
}

@keyframes outT {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(9px) rotate(0deg);
    }
    100% {
        transform: translateY(9px) rotate(135deg);
    }
}

@-webkit-keyframes inBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes inBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

@-webkit-keyframes outBtm {
    0% {
        -webkit-transform: translateY(0px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateY(-9px) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-9px) rotate(135deg);
    }
}

@keyframes outBtm {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-9px) rotate(0deg);
    }
    100% {
        transform: translateY(-9px) rotate(135deg);
    }
}

.affix {
    padding: 0;
    background-color: #111;
}


.h1 {
    position: relative;
	text-align:center;
	font-size: 4rem;
	color: #fff;
}

.h2 {
    position: relative;
	text-align:center;
	font-size: 3rem;
	color: #fff;
}

.h3 {
	font-size: 2.5rem;
	color: #fff;
	left: 400px;
}

.p {
    position: relative;
	text-align: center;
	padding-left:15%;
	padding-right:15%;
	font-size: 20px;
	color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
::-webkit-scrollbar-thumb {
  background: #9c2752; 
  border-radius: 10px;
  max-height: 5px;
  overflow: auto;
}

::-webkit-scrollbar-thumb:hover {
  background: #c94576; 
}

::-webkit-scrollbar-button {
  width: 50px; //for horizontal scrollbar
  height: 50px; //for vertical scrollbar
}

#footer {
	font-size: 1.5rem;
	clear: both;
	color: #919191;
    text-align: center;
    position: fixed;
    height: 50px;
    background-color: #38322c;
    bottom: 0px;
    left: 0px;
    right: 0px;
	margin-top: 40px;
    margin-bottom: 0px;
	padding: 10px 0 10px 0;
    width: 100%;
}
#footer span {
	line-height: 20px;
}

/* ADMIN */
ul.li{
	background: #cce5ff;
	margin: 5px;
	font-size: 16px;
}



input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

.block {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

.block:hover {
  background-color: #45a049;
}

li {
	color: #fff;
	margin: 5px;
	font-size: 16px;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.containerforone {
    display: grid;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
  
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); /* this adds the "card" effect */
    padding: 16px;
    text-align: center;
    background-color: #252321;
}

.card .content {
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
}

.card .content .details {
    display: flex;
    flex-direction: column;
    align-items: center; /* Ezt a sort adtam hozzá az elemek középre igazításához */
}

.card .content .details h2 {
	font-size: 1.75em;
	font-weight: 600;
	color: #fff;
	line-height: 1.2em;
}

.card .content .details h2 span {
	font-size: 1em;
	font-weight: 500;
	opacity: 0.5;
}

.card .content .details .data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 20px 0;
}

.card .content .details .data h3 {
	font-size: 16px;
	color: #fff;
}

.card .content .details .data h3 span {
	font-size: 18px;
}

.card .content .details .actionBtn {
	display: flex;
	justify-content: space-between;
	margin-left: 65px;
}

.card .content .details .actionBtn button {
	padding: 10px 30px;
	border-radius: 5px;
	border: none;
	outline: none;
	font-size: 1.25em;
	font-weight: 500;
	background: #9c2752;
	color: #fff;
	cursor: pointer;
}

.card .content .details .actionBtn button:nth-child(2){
	border: 1px solid #999;
	color: #999;
	background: #fff;
}

.card .content .details .actionBtnVIP button {
	padding: 10px 30px;
	border-radius: 5px;
	border: none;
	outline: none;
	font-size: 1.25em;
	font-weight: 500;
	background: #9c2752;
	color: #fff;
	cursor: pointer;
}

.card .content .details .actionBtnVIP button:nth-child(2){
	border: 1px solid #999;
	color: #999;
	background: #fff;
}

.card.enough {
    position: relative;
}

.card.enough::before {
    content: "TELJESÍTETT ÓRASZÁM";
	font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.card.notenough {
    position: relative;
}

.card.notenough::before {
    content: "NEM TELJESÍTETT ÓRASZÁM";
	font-size: 15px;
    background-color: #8B0000;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.card.accepted {
    position: relative;
}

.card.accepted::before {
    content: "ELFOGADÁSRA ÁLL";
	font-size: 15px;
    background-color: #4CAF50;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.card.refused {
    position: relative;
}

.card.refused::before {
    content: "ELUTASÍTÁSRA ÁLL";
	font-size: 15px;
    background-color: #8B0000;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.card.draw {
	position: relative;
}

.card.draw::before {
    content: "UGYANANNYI SZAVAZATOT KAPOTT";
	font-size: 15px;
    background-color: #B58B00;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.card.novote {
	position: relative;
}

.card.novote::before {
    content: "NEM KAPOTT SZAVAZATOT";
	font-size: 15px;
    background-color: #B58B00;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.card.expired {
	position: relative;
}

.card.expired::before {
    content: "LEJÁRT";
	font-size: 15px;
    background-color: #8B0000;
    color: white;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
}

.reaction-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 50px;
}

.columnsteamid {
  margin-top: 6px;
  padding: 20px;
  height: 350px;
}

.columnbutton {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
  height: 100px;
  position: relative;
  margin-left: 820px;
  margin-right: 820px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

ul.left, ol.left {
	position: relative;
	left: 500px;
}

.jelentkezes {
	height: 800px;
	text-align: center;
}

label {
	color: #fff;
	font-weight: bold;
	display: block;
	font-size: 1.75rem;
}

a {
	color: #c94576;
}

.dropdown {
    padding: 8px;
    font-size: 14px;
    color: #fff;
    background-color: #333;
    cursor: pointer;
    outline: none;
}

.dropdown option {
    background-color: #333;
    color: #fff;
}

.dropdown option:checked {
    background-color: #fff;
    color: #333;
}

input[type=text], select, textarea {
    width: 60%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    color: #fff;
    background-color: #333;
  }
  
  input[type=number], select, textarea {
    width: 50%;
    padding: 12px;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    color: #fff;
    background-color: #333;
  }

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .containerforone {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

	.navbar .logo {
		display: none;
	}

	.nav-menu {
        position: fixed;
        display: none;
        top: 5rem;
        flex-direction: column;
        background-color: #222;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 9999;
    }

    .nav-menu.active {
        left: 0;
        display: block;
    }

    .nav-item {
        margin: 2.5rem 0;
        margin-right: 7.5em;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
	
	.p {
		position: relative;
		text-align: center;
		padding-left:15%;
		padding-right:15%;
		font-size: 1.9rem;
		color: #fff;
	}
	
	.column {
		float: left;
		width: 50%;
		margin-top: 6px;
		padding: 20px;
		height: 1200px;
	}
	
	
	.columnbutton {
	  float: left;
	  width: 50%;
	  margin-top: 6px;
	  padding: 20px;
	  height: 150px;
	  position: relative;
	  top: 150px;
      margin-left: 0px;
      margin-right: 0px;
	}
	
	.h2 {
		position: relative;
		text-align: center;
		font-size: 2.8rem;
		color: #fff;
	}
	
	.h3 {
		font-size: 2.5rem;
		color: #fff;
		left: 0px;
	}
	
	ul.left, ol.left {
		position: relative;
		left: 0px;
	}
}

@media screen and (max-width:768px) {
    .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .containerforone {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .navbar .logo {
        display: none;
    }

	.nav-menu {
        position: fixed;
        display: none;
        top: 5rem;
        flex-direction: column;
        background-color: #222;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 9999;
    }

    .nav-menu.active {
        left: 0;
        display: block;
    }

    .nav-item {
        margin: 2.5rem 0;
        margin-right: 7.5em;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
    }
	
	.p {
		position: relative;
		text-align: center;
		padding-left:15%;
		padding-right:15%;
		font-size: 1.9rem;
		color: #fff;
	}
	
	.column {
		float: left;
		width: 50%;
		margin-top: 6px;
		padding: 20px;
		height: 1200px;
	}
	
	.columnbutton {
	  float: left;
	  width: 50%;
	  margin-top: 6px;
	  padding: 20px;
	  height: 100px;
	  position: relative;
	  top: 50px;
      margin-left: 0px;
      margin-right: 0px;
	}
	
	.h2 {
		position: relative;
		text-align:center;
		font-size: 2.8rem;
		color: #fff;
	}
	
	.h3 {
		font-size: 2.5rem;
		color: #fff;
		left: 0px;
	}
	
	ul.left, ol.left {
		position: relative;
		left: 0px;
	}
}

@media screen and (min-height: 600px) and (max-height: 740px) {
    .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .containerforone {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

	.p {
		position: relative;
		text-align: center;
		padding-left:15%;
		padding-right:15%;
		font-size: 1.5rem;
		color: #fff;
	}
	
	.column {
		float: left;
		width: 50%;
		margin-top: 6px;
		padding: 20px;
		height: 1200px;
	}
	
	
	.columnbutton {
	  float: left;
	  width: 50%;
	  margin-top: 6px;
	  padding: 20px;
	  height: 100px;
	  position: relative;
	  top: 150px;
      margin-left: 0px;
      margin-right: 0px;
	}
	
	.h2 {
		position: relative;
		text-align:center;
		font-size: 2.8rem;
		color: #fff;
	}
	
	.h3 {
		font-size: 2.5rem;
		color: #fff;
		left: 0px;
	}
	
	ul.left, ol.left {
		position: relative;
		left: 0px;
	}
}

@media screen and (max-width: 600px) {
    .container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }

    .containerforone {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .column {
      width: 100%;
      display: block;
      margin-bottom: 20px;
    }

    .card.enough::before, .card.notenough::before, .card.accepted::before, .card.refused::before, .card.draw::before {
        font-size: 14px;
        padding: 3px;
    }
}

.swal2-popup {
  font-size: 1.6rem !important;
  font-family: Georgia, serif;
}