.white-font {
  color: #FFFFFF;
}
.gray-l-font {
  color: #EEEEEE;
}
.gray-font {
  color: #CCCCCC;
}
.gray-d-font {
  color: #333333;
}
.blue-font {
  color: #52B7C3;
}
html {
  background-color: #FFFCF8;
  font-family: 'Fira Sans';
  font-weight: 500;
  color: #333333;
}
body {
  margin: 0;
  padding: 0;
}
.clra {
  clear: both;
}
.clra:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
h1,
h2,
h2,
h4,
h5,
h6 {
  font-size: inherit;
  padding: 0;
  margin: 0;
  font-weight: inherit;
}
a {
  outline: none;
  text-decoration: none;
  color: #333333;
}
table {
  display: table;
  width: 100%;
}
table .tableCell {
  display: table-cell;
  vertical-align: middle;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.table {
  display: table;
  width: 100%;
}
.table .tableCell {
  display: table-cell;
  vertical-align: middle;
}
.left {
  float: left;
}
.right {
  float: right;
}
.center-align {
  text-align: center;
}
.left-align {
  text-align: left;
}
.right-align {
  text-align: right;
}
.justify-align {
  text-align: justify;
}
.inputContainer {
  margin-bottom: 30px;
}
.inputContainer label {
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select {
  display: block;
  width: 100%;
  border: none;
  height: 80px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: #333333;
  background-color: #EEEEEE;
  font-size: 20px;
  margin-top: 10px;
  border-radius: 10px;
  border: 3px solid transparent;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  outline: none;
}
input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus {
  border: 3px solid #52B7C3;
  background-color: rgba(82,183,195,0.1);
  outline: none;
}
input[type="submit"] {
  cursor: pointer;
  outline: none;
}
select::-ms-expand {
  display: none;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(/images/icon/select_bg.svg);
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding: 0 60px 0 20px;
}
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  cursor: pointer;
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  right: 0;
  top: -1px;
  width: 30px;
  height: 30px;
  background: #EEEEEE;
  border-radius: 5px;
}
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  right: 0;
  top: -1px;
  width: 30px;
  height: 30px;
  transition: all .2s;
  background-image: url('/images/icon/checkbox.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
  border-radius: 5px;
}
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative;
  cursor: pointer;
  display: block;
  margin-bottom: 15px;
  font-size: 20px;
  padding-left: 40px;
  font-weight: normal;
}
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 30px;
  background: #EEEEEE;
  border-radius: 5px;
}
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: -3px;
  width: 30px;
  height: 30px;
  transition: all .2s;
  background-image: url('/images/icon/checkbox.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
  border-radius: 5px;
}
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.contentSize {
  max-width: 1280px;
  width: 95%;
  margin: 0px auto;
}
.contentSize .pageTitle {
  font-size: 25px;
  color: #333333;
  font-weight: 700;
  text-align: center;
  margin: 60px auto 80px;
}
.btn {
  padding: 17px 45px;
  background-color: #52B7C3;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  border-radius: 30px;
  display: inline-block;
  transition: all 300ms;
  border: 3px solid transparent;
  margin: 0 2% 20px;
  min-width: 120px;
  -webkit-appearance: none;
}
.btn:hover {
  background-color: #FFFFFF;
  color: #52B7C3;
  box-shadow: 0px 0px 6px 0px rgba(51,51,51,0.3);
}
.btn.whiteBtn {
  background-color: #FFFFFF;
  color: #52B7C3;
}
.btn.whiteBtn:hover {
  background-color: #52B7C3;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
}
.btn.orangeBtn {
  background-color: #FFB04F;
  color: #FFFFFF;
}
.btn.orangeBtn:hover {
  background-color: #FFFFFF;
  color: #FFB04F;
  border: 3px solid #FFB04F;
}
.btn.borderBtn {
  border: 3px solid #52B7C3;
}
.btn2 {
  padding: 3px 14px;
  background-color: #52B7C3;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
  transition: all 300ms;
  border: 3px solid transparent;
  margin: 0 0% 7px;
  min-width: 120px;
  -webkit-appearance: none;
}
.btn2:hover {
  background-color: #FFFFFF;
  color: #52B7C3;
  box-shadow: 0px 0px 6px 0px rgba(51,51,51,0.3);
}
.btn2.whiteBtn {
  background-color: #FFFFFF;
  color: #52B7C3;
}
.btn2.whiteBtn:hover {
  background-color: #52B7C3;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
}
.btn2.orangeBtn {
  background-color: #FFB04F;
  color: #FFFFFF;
}
.btn2.orangeBtn:hover {
  background-color: #FFFFFF;
  color: #FFB04F;
  border: 3px solid #FFB04F;
}
.btn2.borderBtn {
  border: 3px solid #52B7C3;
}
.info {
  position: relative;
  float: right;
}
.info .tooltipContent {
  display: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 120px;
  background-color: #FFFFFF;
  color: #333333;
  padding: 10px 4px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  z-index: 5;
  box-shadow: 0 0 4px 1px rgba(119,119,119,0.4);
}
.info .tooltipContent.show {
  display: block;
}
header {
  height: 120px;
  background-color: #FFFFFF;
  box-shadow: 5px 0 5px 2px rgba(204,204,204,0.5);
  position: fixed;
  width: 100%;
  z-index: 100;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header.animHeader {
  height: 100px;
}
header.animHeader #logo {
  margin-top: 30px;
}
header.animHeader #menu {
  padding: 20px 0;
}
header #menu {
  height: 60px;
  padding: 30px 0;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header #menu li {
  display: inline-block;
  padding-left: 20px;
  font-weight: 400;
}
header #menu li a {
  line-height: 60px;
  display: inline-block;
  font-size: 22px;
}
header #menu li a:hover {
  font-weight: 700;
}
header #menu li a.active {
  font-weight: 700;
}
header #menu select {
  padding: 0 60px 0 30px;
  border: none;
  width: 100%;
  height: auto !important;
  font-size: 22px;
  background-position: center left 0px;
  cursor: pointer;
  background-color: white;
}
header #menu select:focus {
  outline: none;
}
header #logo {
  margin-top: 40px;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header .open {
  display: none;
  position: fixed;
  top: 10px;
  right: 15px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: opacity 0.2s linear;
  z-index: 100;
  -webkit-transition: all .3s ease 0s;
  -moz-transition: all .3s ease 0s;
  -ms-transition: all .3s ease 0s;
  -o-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
}
header .open .close {
  display: none;
}
header .open span {
  display: block;
  float: left;
  clear: both;
  height: 4px;
  width: 40px;
  border-radius: 40px;
  background-color: #52B7C3;
  position: absolute;
  right: 3px;
  top: 3px;
  overflow: hidden;
  transition: all 0.4s ease;
}
header .open span:nth-child(1) {
  margin-top: 10px;
  z-index: 9;
}
header .open span:nth-child(2) {
  margin-top: 25px;
}
header .open span:nth-child(3) {
  margin-top: 40px;
}
header .sub-menu {
  transition: all 0.8s cubic-bezier(0.68,-0.55,0.265,1.55);
  height: 0;
  width: 0;
  right: 0;
  top: 0;
  position: absolute;
  border-radius: 50%;
  z-index: 18;
  overflow: hidden;
}
header .sub-menu li {
  display: block;
  float: right;
  clear: both;
  height: auto;
  margin-right: -160px;
  transition: all 0.5s cubic-bezier(0.68,-0.55,0.265,1.55);
}
header .sub-menu li:first-child {
  margin-top: 190px;
}
header .sub-menu li:nth-child(1) {
  -webkit-transition-delay: 0.05s;
}
header .sub-menu li:nth-child(2) {
  -webkit-transition-delay: 0.10s;
}
header .sub-menu li:nth-child(3) {
  -webkit-transition-delay: 0.15s;
}
header .sub-menu li:nth-child(4) {
  -webkit-transition-delay: 0.20s;
}
header .sub-menu li:nth-child(5) {
  -webkit-transition-delay: 0.25s;
}
header .sub-menu li a {
  color: #fff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  width: 100%;
  display: block;
  float: left;
  line-height: 40px;
}
header .sub-menu li select {
  padding: 0 12px 0 36px;
  border: none;
  width: auto !important;
  height: auto !important;
  font-size: 16px;
  color: #fff;
  background-image: url("/images/icon/arrow_active_down.svg");
  background-position: center left 6px;
  cursor: pointer;
  background-color: #52B7C3;
}
header .sub-menu li select:focus {
  outline: none;
}
header .opened .closeMenu {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 12px;
  background-color: transparent;
  display: block;
  left: 7px;
  z-index: 150;
  cursor: pointer;
}
header .opened .sub-menu {
  opacity: 1;
  height: 400px;
  width: 400px;
}
header .opened span:nth-child(2) {
  overflow: visible;
}
header .opened span:nth-child(1),
header .opened span:nth-child(3) {
  z-index: 100;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}
header .opened span:nth-child(1) {
  transform: rotate(45deg) translateY(12px) translateX(12px);
}
header .opened span:nth-child(2) {
  height: 400px;
  width: 400px !important;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background-color: #52B7C3;
  box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.4);
}
header .opened span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px) translateX(10px);
}
header .opened li {
  margin-right: 168px;
}
footer {
  background-color: #565466;
}
footer .contentSize {
  height: 300px;
  background-image: url('/images/footer_bg.png');
  background-repeat: no-repeat;
  background-size: 650px auto;
  background-position: bottom left;
}
footer ul {
  float: right;
  margin-top: 30px;
}
footer ul li {
  display: inline-block;
  margin-left: 50px;
}
footer ul li a {
  font-size: 22px;
  color: #FFFFFF;
  font-weight: 400;
}
footer .imgContainer {
  position: absolute;
  bottom: 0;
  right: 0;
}
footer .imgContainer img {
  display: inline-block;
  max-width: 210px;
  vertical-align: bottom;
}
#content {
  min-height: 800px;
  padding-top: 120px;
}
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.65);
  overflow: hidden;
  z-index: 100;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}
.modal {
  background: #FFFFFF;
  padding: 85px 30px;
  box-shadow: 0 0 4px 1px rgba(119,119,119,0.4);
  max-width: 680px;
  width: 90%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 101;
  visibility: hidden;
  opacity: 0;
  border-radius: 10px;
  text-align: center;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: visibility .2s, opacity .2s, transform .2s;
  -moz-transition: visibility .2s, opacity .2s, transform .2s;
  transition: visibility .2s, opacity .2s, transform .2s;
}
.modal.show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: visibility .5s, opacity .5s, transform .5s;
  -moz-transition: visibility .5s, opacity .5s, transform .5s;
  transition: visibility .5s, opacity .5s, transform .5s;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.modal .close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
}
.modal h1 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}
.modal h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 50px;
}
#successRegModal {
  padding: 100px 30px 130px;
  background-image: url('/images/success_reg_modal_top_bg.png'), url('/images/success_reg_modal_bottom_bg.png');
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom left 40px;
  background-size: 100%, auto;
}
.indexPage {
  background: #4da3c4;
  background: -moz-linear-gradient(top,#4da3c4 0%,#56bcc1 65%);
  background: -webkit-linear-gradient(top,#4da3c4 0%,#56bcc1 65%);
  background: linear-gradient(to bottom,#4da3c4 0%,#56bcc1 65%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4da3c4',endColorstr='#56bcc1',GradientType=0);
}
.indexPage .contentSize {
  padding: 100px 0;
}
.indexPage .title {
  font-size: 45px;
  color: #FFFFFF;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
}
.indexPage .btn {
  margin-top: 40px;
}
.indexPage .indexBg {
  display: block;
  margin: 50px auto;
  max-width: 100%;
}
.indexPage .boxContainer {
  text-align: center;
  margin-top: 100px;
}
.indexPage .boxContainer .box {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 5px;
  line-height: 160%;
  color: #333333;
  text-align: center;
  display: inline-block;
  width: 30%;
  padding: 60px 15px 30px;
  font-size: 20px;
  font-weight: 400;
  box-sizing: border-box;
  margin: 0 1%;
}
.indexPage .boxContainer .box:hover .icon {
  -webkit-animation: example 1s linear 0s infinite alternate;
  -o-animation: example 1s linear 0s infinite alternate;
  animation: example 1s linear 0s infinite alternate;
}
.indexPage .boxContainer .box .icon {
  position: absolute;
  width: 90px;
  height: 90px;
  background-color: #FF7A84;
  top: -45px;
  left: 50%;
  margin-left: -45px;
  border-radius: 50%;
}
.indexPage.loggedIn {
  background-image: url('/images/index_login_bg.png');
  background-size: 1200px auto;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.indexPage.loggedIn#content {
  min-height: 900px;
}
.indexPage.loggedIn .textContainer {
  max-width: 600px;
  width: 100%;
}
.indexPage.loggedIn .textContainer h1 {
  color: #333333;
  font-size: 25px;
  margin-bottom: 30px;
}
.indexPage.loggedIn .textContainer .text {
  font-size: 22px;
  line-height: 140%;
  font-weight: 400;
}
.page404 {
  background-color: #F2BC59;
}
.page404 .contentSize {
  text-align: center;
  height: 70vw;
  background-image: url('/images/404_bg.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top left;
}
.page404 .contentSize .title {
  margin-top: 50px;
  max-width: 40%;
}
.page404 .contentSize h3 {
  font-size: 3.3vw;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 130%;
  max-width: 70%;
  margin: 30px auto;
}
.loginPage .contentSize {
  max-width: 470px;
}
.loginPage .forgPass {
  font-size: 20px;
}
.regPage {
  padding-bottom: 100px;
}
.regPage .contentSize {
  max-width: 1060px;
}
.regPage .left,
.regPage .right {
  width: 48%;
}
.regPage .alert {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  margin: 40px 0 60px;
}
.regPage .alert strong {
  font-weight: 700;
  font-size: 25px;
}
.regPage .alert .inputContainer label {
  font-size: 20px;
  font-weight: 400;
  display: inline-block;
  padding-right: 40px;
}
.textPage {
  min-height: auto !important;
  padding: 50px 0 100px;
}
.textPage .contentSize {
  max-width: 840px;
  padding: 50px 0 100px;
}
.textPage h1 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 30px;
}
.textPage .textContent {
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
}
.textPage .textContent a {
  color: #52B7C3;
}
.textPage .textContent p {
  margin: 10px 0;
}
.textPage .textContent ul,
.textPage .textContent ol {
  list-style-type: none;
}
.textPage .textContent ul li,
.textPage .textContent ol li {
  padding-left: 20px;
  position: relative;
}
.textPage .textContent ul li:before,
.textPage .textContent ol li:before {
  content: "•";
  color: #52B7C3;
  font-size: 30px;
  position: absolute;
  left: 0;
}
@keyframes btnRotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes btnRotate {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.TPage {
  padding-bottom: 150px;
}
.TPage .contentSize {
  max-width: 1090px;
}
.TPage .top {
  padding-bottom: 50px;
  background: #4da3c4;
  background: -moz-linear-gradient(top,#4da3c4 0%,#56bcc1 65%);
  background: -webkit-linear-gradient(top,#4da3c4 0%,#56bcc1 65%);
  background: linear-gradient(to bottom,#4da3c4 0%,#56bcc1 65%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4da3c4',endColorstr='#56bcc1',GradientType=0);
}
.TPage .top .table {
  height: 200px;
}
.TPage .top .table .tableCell:first-child {
  width: 34%;
}
.TPage .top .name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 30px;
  margin-bottom: 30px;
}
.TPage .top .text {
  font-weight: 400;
  font-size: 22px;
  color: #FFFFFF;
}
.TPage .top .text p {
  margin-top: 13px;
  margin-left: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  line-height: 1.2;
}
.TPage .top .btn {
  width: 290px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.TPage .top #next {
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  background-image: url("/images/icon/irany_a_tanulas.svg");
  background-repeat: no-repeat;
  background-size: 30px;
  background-position: left 20px center;
  padding: 17px 45px 17px 60px;
}
.TPage .top #next:hover {
  background-image: url("/images/icon/irany_a_tanulas_white.svg");
}
.TPage .top #next.anim {
  background-color: #52B7C3;
  color: #FFFFFF;
  border: 3px solid #FFFFFF;
  position: relative;
}
.TPage .top #next.anim:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #52B7C3;
  top: 0;
  left: 0;
  border-radius: 30px;
}
.TPage .top #next.anim:after {
  width: 30px;
  height: 30px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  -webkit-animation: btnRotate 1s infinite;
  -o-animation: btnRotate 1s infinite;
  animation: btnRotate 1s infinite;
  content: " ";
  border-bottom: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  position: absolute;
  left: calc(50% - 17px);
  top: calc(50% - 17px);
}
.TPage .top #filter {
  cursor: pointer;
}
.TPage .top #filter span {
  width: 25px;
  height: 25px;
  display: inline-block;
  vertical-align: top;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 90%;
  -webkit-transition: transform .3s;
  -moz-transition: transform .3s;
  -ms-transition: transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
}
.TPage .top #filter span.active {
  background-image: url("/images/icon/arrow_active_down.svg");
}
.TPage .top #filter span.active.up {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.TPage .top #filter span.inactive {
  background-image: url("/images/icon/arrow_inactive_down.svg");
}
.TPage .top #filter span.inactive.up {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.TPage .top #filterText {
  display: none;
  margin-top: 30px;
}
.TPage .top #filterText #filterContent {
  text-align: center;
  max-width: 800px;
  margin: 30px auto 0;
}
.TPage .top #filterText .checkboxContainer {
  width: 250px;
  display: inline-block;
  margin-bottom: 30px;
  text-align: left;
}
.TPage .top #filterText .checkboxContainer [type="checkbox"]:not(:checked) + label,
.TPage .top #filterText .checkboxContainer [type="checkbox"]:checked + label {
  padding-left: 50px;
  font-size: 22px;
}
.TPage .top #filterText .checkboxContainer [type="checkbox"]:not(:checked) + label:before,
.TPage .top #filterText .checkboxContainer [type="checkbox"]:not(:checked) + label:after,
.TPage .top #filterText .checkboxContainer [type="checkbox"]:checked + label:before,
.TPage .top #filterText .checkboxContainer [type="checkbox"]:checked + label:after {
  left: 0;
  right: auto;
  top: -2px;
}
.TPage .bottom h1 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 40px;
}
.TPage .bottom .search {
  margin: 20px 0 40px;
}
.TPage .bottom .search .searchText {
  font-weight: 400;
  font-size: 22px;
}
.TPage .bottom .search .right {
  width: 460px;
}
.TPage .bottom .search .inputContainer {
  position: relative;
  margin-bottom: 0;
}
.TPage .bottom .search .inputContainer input[type="text"] {
  height: 60px;
  font-style: italic;
  margin: 0;
  display: inline-block;
  max-width: 460px;
}
.TPage .bottom .search .inputContainer input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 75px;
  background-color: #52B7C3;
  border: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background-image: url('/images/icon/search.svg');
  background-repeat: no-repeat;
  background-size: 45%;
  background-position: center center;
}
.TPage .bottom .openAll {
  cursor: pointer;
}
.TPage .bottom .comments .comment {
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: #333333;
  display: inline-block;
}
.TPage .bottom .comments .comment img {
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
}
.TPage .bottom .comments .comment:first-child {
  margin-right: 20px;
}
.TPage .bottom #tartalomjegyzek >ul {
  background-image: url('/images/line_bg.png');
  background-repeat: repeat;
  margin-bottom: 30px;
}
.TPage .bottom #tartalomjegyzek ul li {
  padding-left: 20px;
  line-height: 150%;
  font-size: 20px;
  font-weight: 400;
}
.TPage .bottom #tartalomjegyzek ul li.T {
  font-weight: 700;
}
.TPage .bottom #tartalomjegyzek ul li .toggle {
  cursor: pointer;
}
.TPage .bottom #tartalomjegyzek ul li .type {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.TPage .bottom #tartalomjegyzek ul li .status {
  float: right;
}
.TPage .bottom #tartalomjegyzek ul li .status .tudasszint,
.TPage .bottom #tartalomjegyzek ul li .status .keszultseg {
  vertical-align: middle;
}
.TPage .bottom #tartalomjegyzek ul li .status .keszultseg {
  margin-left: 8px;
  padding-right: 4px;
}
.TPage .bottom #tartalomjegyzek ul li .status .tooltipContent {
  width: 280px;
  line-height: 100%;
}
.TPage .bottom #tartalomjegyzek ul li .status .tooltipContent span {
  font-size: 11px;
}
.TPage .bottom #tartalomjegyzek ul li a.searchResult {
  color: #52B7C3;
  text-decoration: underline;
}
.TPage .bottom #tartalomjegyzek ul.level0 >li {
  padding-left: 0;
}
@keyframes example {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
  }
}
@-webkit-keyframes example {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
  }
}
.kerdoivPage .contentSize {
  max-width: 800px;
}
.kerdoivPage [type="checkbox"]:not(:checked) + label:before,
.kerdoivPage [type="checkbox"]:checked + label:before,
.kerdoivPage [type="checkbox"]:not(:checked) + label:after,
.kerdoivPage [type="checkbox"]:checked + label:after {
  left: 0;
  right: auto;
}
.kerdoivPage [type="checkbox"]:not(:checked) + label,
.kerdoivPage [type="checkbox"]:checked + label {
  line-height: 30px;
  padding-left: 35px;
}
@media screen and (max-width: 1200px) {
  .indexPage.loggedIn#content {
    min-height: 65vw;
    background-size: 75% auto;
  }
  footer .imgContainer img {
    display: block;
  }
  footer .imgContainer img:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1000px) {
  footer .contentSize {
    background-size: calc(100% - 250px) auto;
  }
  footer .imgContainer img {
    display: block;
  }
  footer .imgContainer img:first-child {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 927px) {
  header {
    height: 80px;
  }
  header #logo {
    margin-top: 20px;
  }
  header #menu {
    display: none;
  }
  header .open {
    display: block;
  }
  header.animHeader {
    height: 70px;
  }
  header.animHeader #logo {
    margin-top: 15px;
  }
  header.animHeader .open {
    top: 5px;
  }
  footer .contentSize {
    background-size: calc(100% - 250px) auto;
  }
  #content {
    padding-top: 80px;
  }
  .indexPage .title {
    font-size: 6vw;
  }
  .indexPage .boxContainer .box {
    width: 46%;
    margin-bottom: 80px;
  }
  .indexPage.loggedIn#content {
    min-height: 80vw;
  }
  .indexPage.loggedIn#content .textContainer {
    max-width: 100%;
  }
  .page404 .contentSize {
    background-image: none;
  }
  .page404 .contentSize h3 {
    max-width: 100%;
    font-size: 7vw;
  }
  .TPage .top .btn {
    width: 250px;
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .btn {
    padding: 10px 35px;
    font-size: 20px;
  }
  .inputContainer label {
    font-size: 3.7vw;
  }
  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  select {
    height: 60px;
    padding: 0 10px;
  }
  .modal {
    padding: 35px 20px;
  }
  .modal h1 {
    font-size: 4.3vw;
  }
  .modal h3 {
    font-size: 3.8vw;
  }
  header {
    height: 50px;
  }
  header #logo {
    margin-top: 7px;
  }
  header .open {
    top: -5px;
  }
  header.animHeader {
    height: 45px;
  }
  header.animHeader #logo {
    margin-top: 7px;
    height: 30px;
  }
  header.animHeader .open {
    top: -4px;
  }
  header.animHeader .open span {
    width: 32px;
  }
  header.animHeader .open span:nth-child(2) {
    margin-top: 21px;
  }
  header.animHeader .open span:nth-child(3) {
    margin-top: 32px;
  }
  header.animHeader .open.opened span:nth-child(1) {
    transform: rotate(45deg) translateY(8px) translateX(8px);
  }
  header.animHeader .open.opened span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px) translateX(8px);
  }
  footer .contentSize {
    background: none;
  }
  footer ul li {
    margin-left: 20px;
  }
  footer ul li a {
    font-size: 16px;
  }
  footer ul li:first-child {
    margin-left: 0;
  }
  #content {
    padding-top: 50px;
  }
  .indexPage .boxContainer .box {
    width: 100%;
    margin: 0 0 80px;
  }
  .indexPage.loggedIn#content {
    min-height: 600px;
  }
  .indexPage.loggedIn#content .btn {
    margin-top: 20px;
  }
  .regPage .left,
  .regPage .right {
    float: none;
    width: 100%;
  }
  .textPage .textContent {
    font-size: 3.7vw;
    text-align: justify;
  }
  .TPage .table .tableCell {
    display: block;
    width: 100% !important;
    padding-top: 20px;
  }
  .TPage .table .tableCell.right-align {
    text-align: center;
  }
  .TPage .top {
    text-align: center;
    height: auto;
  }
  .TPage .top .table {
    height: auto;
  }
  .TPage .top .name {
    font-size: 5.2vw;
  }
  .TPage .top .text {
    font-size: 3.7vw;
  }
  .TPage .top .btn {
    margin-bottom: 20px;
    padding: 10px 35px !important;
  }
  .TPage .bottom .search .searchText {
    font-size: 17px;
  }
  .TPage .bottom .search .inputContainer input[type="text"] {
    max-width: 100%;
    height: 50px;
  }
  .TPage .bottom .comments .comment {
    font-size: 17px;
  }
  .TPage .bottom .comments .comment img {
    margin: 0 2px;
  }
  .TPage .bottom #tartalomjegyzek ul {
    background-size: auto 50px;
  }
  .TPage .bottom #tartalomjegyzek ul li {
    padding-left: 10px;
    font-size: 16px !important;
    line-height: 160%;
  }
  .TPage .bottom #tartalomjegyzek ul li .status .keszultseg {
    width: 25px;
  }
  .TPage .bottom #tartalomjegyzek ul li .status .tudasszint {
    height: 16px;
  }
}
@media screen and (max-width: 450px) {
  .modal h1 {
    font-size: 5.4vw;
  }
  .modal h3 {
    font-size: 4.5vw;
  }
  .inputContainer label {
    font-size: 3.7vw;
  }
  .textPage .textContent {
    font-size: 4.1vw;
  }
  .TPage .bottom .comments .comment {
    display: block;
    margin-right: 0 !important;
  }
  .TPage .bottom #tartalomjegyzek >ul {
    background-size: auto 38px;
  }
  .TPage .bottom #tartalomjegyzek >ul li {
    font-size: 12px !important;
    padding-left: 5px !important;
    line-height: 160%;
  }
  .TPage .bottom #tartalomjegyzek >ul li .status .keszultseg {
    width: 17px;
  }
  .TPage .bottom #tartalomjegyzek >ul li .status .tudasszint {
    height: 14px;
  }
  .TPage .bottom #tartalomjegyzek >ul li .status .tooltipContent {
    width: 250px;
  }
  .TPage .bottom #tartalomjegyzek >ul li .type {
    height: 13px;
  }
  footer .contentSize {
    height: 340px;
  }
  footer ul li {
    display: block;
  }
}
