/* CONTENT STYLE */
.content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ROUND SWITCH CHECKBOX */

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.checkboxSlider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f56e28;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.checkboxSlider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .checkboxSlider {
  background-color: #1e73be;
}

input:focus + .checkboxSlider {
  box-shadow: 0 0 1px #1e73be;
}

input:checked + .checkboxSlider:before {
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
}

/* round sliders */
.checkboxSlider.round {
  border-radius: 34px;
}

.checkboxSlider.round:before {
  border-radius: 50%;
}


/* COOKIE PAGE */

.cookieClose {
  text-decoration: none;
  float: right;
  color:#000;
}

.cookieDialog {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1010;
  width: 100%;
  height: 100%;
  display: none;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  display: none;
}

.cookieIn {
  width: 100%;
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.cookieBox h2 {
  margin: 10px 40px 15px 0;
}

.cookieBox {
  background: #fff;
  border-radius: 10px;
  margin: 30px;
  padding: 15px;
  margin: 0 auto;
  max-width: 700px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  position: relative;



}

@media only screen and (max-width:767px){
.cookieBox {
    position:absolute;
    top:10%;
    left:0;
    right:0;
    overflow-y:scroll;
    height:80%;
}
}

.cookieDialog td {
  padding-right: 20px;
}

.cookieOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1009;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0, 0.8);
  display: none;
}

/* cookie page - buttons */
.cookieNoticeButton { margin-bottom:10px;}

.cookieNoticeButton.gray {
    border:none;
    padding:10px 30px;
  color: #fff;
  background: #1032cf;
}

.buttonbar {text-align:right}

#cookieConsentDialog .maintext {text-align:center;font-weight:500;font-size:14px;text-transform:uppercase;}
#cookieConsentDialog p.intro {font-size:12px; margin: 20px 0;line-height:18px;}

.cookieNoticeButton.blue {
  color: #fff;
  background: #1e73be;
  border: 1px solid #1e73be;
  padding:10px 0;
  width:100%;
  font-size:15px;
  text-transform:uppercase;
  border-radius:10px;
  font-weight:600;
  cursor:pointer;
  padding:10px 0;
}

.cookieNoticeButton.gray {
  color: #222222;
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
  padding:10px 0;
  width:100%;
  font-size:15px;
  text-transform:uppercase;
  border-radius:10px;
  font-weight:600;
  transition: box-shadow 0.5s ease;
  cursor:pointer;
  padding:10px 0;
}
.cookieNoticeButton.gray:hover{
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}


#cookieConsentDialog {position:relative; z-index:999999;line-height:normal;}
#cookieConsentDialog .links {text-align:center;margin-top:20px;}
#cookieConsentDialog .links a {font-size:12px; color:#1e73be;text-decoration:underline;}
#cookieConsentDialog .links a:hover {text-decoration:underline;color:#144d7f}
#cookieConsentDialog table {margin-bottom:20px;display:none;}
#cookieConsentDialog table tr {border-bottom:5px solid #fff;}
#cookieConsentDialog table td {background-color:rgba(239, 239, 239, 0.5);}
#cookieConsentDialog table td {font-size:14px;}
#cookieConsentDialog table td .main {font-weight:600;text-transform:uppercase;font-size:13px;margin:0;line-height:normal;}
#cookieConsentDialog table td p.leiras {font-size:12px;line-height:16px;margin:0;padding-bottom:10px;}
#cookieConsentDialog table td p.leiras .zold {color:green;}
#cookieConsentDialog p {color:#000;}
#cookieDialog_buttonbar { margin-top:30px;}

.showCookieDialog {position:fixed;bottom:0;left:40px;padding:15px;cursor:pointer;border-radius:15px 15px 0 0; background:#fff;border:1px solid #eaeaea;line-height:normal;}
.showCookieDialog p {font-size:14px;margin:0;}


@media (max-width: 768px) {
  .showCookieDialog {
    display: none;
    left:0;
    padding:5px;
    border-radius:10px 10px 0 0;
  }
}