@charset "UTF-8";
@keyframes show {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes image {
  0% {
    transform: rotate(360deg);
  }
}

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins-Light" , sans-serif;
  box-sizing: border-box;
  font-size: 1rem;
  outline: none;
  text-decoration: none;
  transition: all .2s linear;
}

.cookies_box {
  display: none; /*fejlesztes alatt*/
  width: 350px;
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 15px rgba(0,0,0,0.2);
  text-align: center;
  padding: 30px;
  animation: show 2s;
}

.cookies_box img {
  height: 110px;
  animation: image 10s linear infinite;
}

.cookies_box h3 {
  color: #333;
  font-size: 23px;
  padding: 5px 0;
}

.cookies_box p {
  color: #666;
  font-size: 18px;
  padding: 5px 0;
  line-height: 1.8
}

.cookies_box .cookie_accept {
  background: #FBB45F;
  color: #fff;
  border-radius: 5px;
  display: block;
  margin: 15px 0;
  padding: 15px;
}

.cookies_box .cookie_info {
  color: #999;
}

.cookies_box .cookie_accept:hover {
  letter-spacing: 1px;
  opacity: 0.8;
}

.cookies_box .cookie_info:hover {
  color: #FBB45F;
}

.cookies_box .cookie_close_btn {
  position: absolute;
  top: -2px;
  right: 12px;
  font-size: 40px;
  color: #999;
  cursor: pointer;
}

.cookies_box .cookie_close_btn:hover {
  color: #333;
}

.top_container {
  display: flex;
  justify-content: space-between;
  background: #f2f3f5;
  padding: 20px 0px;
  border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.logo {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-left: 4rem;
}

.logo a h3 {
  margin: 0px;
}

.logo span {
  font-size: 1.1rem;
  font-weight: 300;
  margin-left: 10px;
}

.top_menu {
  margin-right: 4rem;
}

.top_menu a {
  cursor: pointer;
}

.hamburger_line1, .hamburger_line2, .hamburger_line3 {
  width: 35px;
  height: 5px;
  background: #fff;
  margin: 6px 0;
  transition: 0.4s;
}


#menu_dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.93);
  color: #fff;
  border: 0;
  animation: show 1s;
}

.menu_header {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5rem 10rem 10rem 10rem;
}

a.menu_dialog_close .hamburger_close_line {
  position: absolute;
  display: block;
  right: 11rem;
  cursor: pointer;
}

a.menu_dialog_close .hamburger_close_line .close_line1 {
  transform: translate(0, 11px) rotate(-45deg);
}

a.menu_dialog_close .hamburger_close_line .close_line2 {
  opacity: 0;
}

a.menu_dialog_close .hamburger_close_line .close_line3 {
  transform: translate(0, -11px) rotate(45deg);
}

#menu_dialog menu {
  position: absolute;
  width: 300px;
  top: calc(50% - 150px);
  left: calc(75% - 150px);
}

#menu_dialog menu a {
  color: #fff;
  text-decoration: none;
  display: block;
  font-size: 1.3rem;
  margin-bottom: 20px;
  animation: show 3s;
}

#menu_dialog menu a:hover {
  letter-spacing: 1px;
  opacity: 0.8;
}


.color_invert {
  background: #000;
}

.container {
  width: 100%;
  height: 100vh;
  /*background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../img/bg.jpg);*/
  background-image: linear-gradient(rgba(9,0,77,0.65),rgba(9,0,77,0.65)), url(../img/bg.png);
  background-size: cover;
  background-position: center;
  padding: 5rem 10rem 10rem 10rem;
  color: #fff;
}

.container .top_container {
  background: transparent;
  padding: 0px 0px 20px 0px;
  border-bottom: 0px;
}

.container .logo {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-left: 0rem;
}

.container .top_menu {
  margin-right: 0rem;
}

.container h3 {
  margin-top: 15rem;
  font-weight: 400;
  font-size: 2rem;
}

.container h1 {
  margin-top: 1rem;
  font-size: 3rem;
}

.container h4 {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #ccc;
}

.content_details_container {
  background: #fff;
}

.content_container:nth-child(odd) {
  background: #f2f3f5;
}

.content_box {
  padding: 3rem 4rem;
}

.content_box h3 {
  font-size: 1.6rem;
  font-weight: bold;
}

.content_box h4 {
  font-size: 1.2rem;
  font-weight: 300;
}

.content_box h5 {
  font-size: 1rem;
  font-weight: 300;
}

.content_box button,
button.btn_active {
  display: block;
  padding: 0.6rem 1rem;
  background-color: #FBB45F;
  font-size: 1.5rem;
  color: #fff;
  margin: 10px 0;
  border: 0;
  border-radius: 5px;
  cursor: pointer;
  width: 350px;
}

button.btn_disabled,
button.btn_disabled:hover {
  background-color: #ccc !important;
  color: #000;
  cursor: not-allowed;
}

.content_box button:hover,
button.btn_active:hover {
  letter-spacing: 1px;
  opacity: 0.8;
}

.content_box code {
  background-color: #FFFF66;
  padding: 0.2rem 1rem;
  display: inline-block;
  margin: 5px 0;
}

.content_box sup {
  font-size: 1rem;
  font-weight: 300;
  color: #666;
}

.content_box dfm {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
}

.content_box b {
  font-size: 1.5rem;
  font-weight: bold;
}

.content_box span {
  font-weight: bold;
}

.content_box img {
  display: inline-block;
  width: 200px;
  margin: 20px 5px 10px 5px;
}

.version_history {
  margin: 20px 0;
}

.version_history span {
  font-size: 1.2rem;
  color: #666;
}

.version_history p {
  font-size: 1.3rem;
}

.history_down_link {
  display: block;
  text-decoration: none;
  color: #6666FF;
  margin: 10px 0;
}

.comments_container {
  margin: 20px 0;
}

.comments_container b a {
  color: #FBB45F;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: 10px;
  cursor: pointer;
}

.comment_box {
  margin: 10px;
  padding: 20px;
  background-color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 0 2px 1px #ccc;
}

.comment_box_header {
  font-size: 1.2rem;
  font-weight: 600;
}

.comment_box_header span {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 10px;
}

#new_comments,
#new_comments_info {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  animation: show 1s;
}

.dialog_head {
  display: flex;
  justify-content: space-between;

}

.hr {
  background: rgba(200, 200, 200, 0.3);
  margin-top: 0px;
  margin-bottom: 20px;
  height: 1px;
  width: 100%;
}

a.info_open {
  color: #FBB45F;
  font-size: 1.1rem;
  text-decoration: none;
  margin-left: 10px;
  cursor: pointer;
}

a.dialog_close {
  position: absolute;
  top: 26px;
  right: 25px;
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  color: #ccc;
  border: 0px;
  cursor: pointer;
}

a.dialog_close:hover {
  color: #FF3333;
}

.dialog_box {
  position: absolute;
  background: #fff;
  width: 50vw;
  left: calc((100% - 50vw) / 2);
  top: 10px;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  animation: show 2s;
}

.dialog_box h4 b {
  font-size: 1.1rem;
  font-weight: bold;
}

.dialog_box textarea {
  min-height: 200px;
  resize: none;
}

.dialog_box b {
  margin: 10px 0;
  display: block;
}

.checkbox_container {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #eee;
}

/* On mouse-over, add a grey background color */
.checkbox_container:hover input ~ .checkmark {
  background-color: #eee;
}

/* When the checkbox is checked, add background */
.checkbox_container input:checked ~ .checkmark {
  background-color: #FBB45F;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_container .checkmark:after {
  left: 8px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.comments_input {
  width: 100%;
  margin: 10px 0;
  padding: 5px;
  border: 0;
}

@media only screen and (max-height: 880px) {
  .container {
    padding: 5rem;
  }

  .container h3 {
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 835px) {
  .logo {
    margin-left: 2rem;
  }

  .top_menu {
    margin-right: 2rem;
  }

  .content_box {
    padding: 1.5rem 2rem;
  }

  .container {
    padding: 5rem;
  }

  .container h1 {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 4rem;
  }

  .container h1 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 520px) {
  .container {
    padding: 2rem;
  }

  .container h1 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 1360px) {
  .dialog_box {
    width: 80vw;
    left: calc((100% - 80vw) / 2);
  }
}
