/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal Puncs.hu specific theme, based on original Remodal theme.
   Created by: Zoltan Borsos <borsos.zoltan@dace.hu>
   ========================================================================== */
.remodal-overlay {
  background-color: rgba(33, 33, 33, 0.48);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
.remodal-wrapper {
  padding: 10px 10px 0;
}
.remodal {
  box-sizing: border-box;
  width: 90%;
  margin-bottom: 10px;
  padding: 0;
  box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
  color: #3b3b3b;
  background: #ffffff;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
.remodal .boxHeader {
  color: #181818;
  padding: 24px 24px 20px 24px;
  position: relative;
}
.remodal .boxHeader p {
  margin: 0;
  font-size: 20px;
  line-height: 24px;
  text-align: left;
  font-weight: 500;
}
.remodal .boxHeader .closeButton {
  display: none;
  position: absolute;
  top: 9px;
  right: 14px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  color: #181818;
}
.remodal .boxHeader .closeButton:hover {
  cursor: pointer;
}
.remodal .boxHeader .closeButton:after {
  color: #181818;
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  display: block;
  content: "\00d7";
  text-align: center;
  width: 35px;
  border-radius: 3px;
  border: 1px solid #181818;
}
.remodal .content .messageContainer {
  padding: 0 24px 24px 24px;
}
.remodal .content .messageContainer p {
  color: #3c3c3c;
  margin: 0;
  line-height: 18px;
  text-align: left;
}
.remodal .content .buttonContainer {
  padding: 8px 8px 8px 24px;
}
.remodal .content .buttonContainer button {
  float: right;
  border-radius: 2px;
  padding: 8px;
  min-width: initial;
  margin-left: 8px;
}
.remodal .content .buttonContainer button:nth-last-child(1) {
  margin-left: 0;
}
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 8px 0;
  cursor: pointer;
  -webkit-transition: all 0.2 backgrounds ease-in-out;
  -moz-transition: all 0.2 backgrounds ease-in-out;
  -ms-transition: all 0.2 backgrounds ease-in-out;
  -o-transition: all 0.2 backgrounds ease-in-out;
  -khtml-transition: all 0.2 backgrounds ease-in-out;
  transition: all 0.2 backgrounds ease-in-out;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #ffffff;
  background: #369c6d;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #2c7e58;
}
.remodal-cancel {
  color: #ffffff;
  background: #d43d5a;
}
.remodal-cancel:hover,
.remodal-cancelfocus {
  background: #b32640;
}
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
@media only screen and (min-width: 480px) {
  .remodal {
    max-width: 350px;
  }
}
.lt-ie9 .remodal-overlay {
  background: #808080;
}
.lt-ie9 .remodal {
  width: 350px;
}
