@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700&subset=latin-ext');
.innerPages {
  line-height: 1.5;
}
.innerPages .h1,
.innerPages .h2,
.innerPages .h3,
.innerPages h1,
.innerPages h2,
.innerPages h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
#container {
  display: flex;
  flex-direction: column;
}
#container > * {
  width: 100%;
}
.grecaptcha-badge {
  z-index: 1;
}
/**
 * GENERAL HINT
 *
 * Usage:
 * ===============
 *  <div class="l-hint">
 *    <a class="hint-icon"></a>
 *    <div class="hint-content">
 *      <div class="hint-title">Title visible in mobile popup</div>
 *      This will be the content of the hint.
 *    </div>
 *  </div>
 *
 *
 * Options:
 * ===============
 * Sides: onTop (default), onRight, onBottom, onLeft, onBottomCenter
 *
 *
 */
.l-hint {
  display: inline-block;
  position: relative;
  margin: -18px 0;
  margin-left: 8px;
  vertical-align: -4px;
}
.l-hint .hint-icon {
  display: block;
  text-decoration: none;
}
.l-hint .hint-icon:before {
  display: block;
  font-family: "FontAwesomeRegular";
  font-size: 24px;
  color: #FF6630;
  content: "\f05a";
}
.l-hint .hint-title {
  display: none;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  text-align: center;
  color: #FFFFFF;
}
.l-hint .hint-img {
  display: block;
  width: 100%;
  margin: 10px 0;
}
.l-hint .hint-closeButton {
  display: none;
}
.l-hint .hint-content {
  display: flex;
  position: absolute;
  flex-direction: column;
  width: 315px;
  min-height: 80px;
  left: -65px;
  bottom: 100%;
  margin-bottom: 18px;
  justify-content: center;
  box-sizing: border-box;
  padding: 15px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: normal;
  color: #303030;
  text-align: left;
  text-decoration: none;
  box-shadow: 10px 15px 75px rgba(0, 0, 0, 0.3);
  background: #FFFFFF;
  border-radius: 3px;
  transition: all .2s;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  z-index: 10;
}
.l-hint .hint-content:after {
  display: block;
  position: absolute;
  content: "";
  top: 100%;
  left: 24%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-top: 8px solid #FFFFFF;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}
.l-hint:hover .hint-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.l-hint.onRight .hint-content {
  left: auto;
  top: -20px;
  bottom: auto;
  right: 100%;
  margin-right: 20px;
}
.l-hint.onRight .hint-content:after {
  left: 100%;
  top: 30px;
  margin-left: 0;
  border: 0;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.l-hint.onBottom .hint-content {
  left: auto;
  right: -65px;
  top: 100%;
  bottom: auto;
  margin: 0;
  margin-top: 18px;
}
.l-hint.onBottom .hint-content:after {
  bottom: 100%;
  right: 67px;
  left: auto;
  top: auto;
  border: 0;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
.l-hint.onBottomCenter .hint-content {
  left: 0;
  top: 100%;
  bottom: auto;
  transform: translateX(-50%);
  margin: 0;
  margin-top: 18px;
  margin-left: 50%;
}
.l-hint.onBottomCenter .hint-content:after {
  bottom: 100%;
  left: 50%;
  top: auto;
  margin-left: -8px;
  border: 0;
  border-bottom: 8px solid #fff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}
@media screen and (max-width: 500px) {
  .l-hint .hint-content {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    background: rgba(36, 41, 49, 0.9);
    border-radius: 0;
    z-index: 1000;
  }
  .l-hint .hint-content:after {
    display: none;
  }
  .l-hint .hint-content:before {
    display: block;
    content: "\f05a";
    margin-bottom: 30px;
    font-family: 'FontAwesomeRegular';
    font-size: 50px;
    text-align: center;
    color: #F5F5F5;
  }
  .l-hint:hover .hint-content {
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
  }
  .l-hint.hintIsVisible .hint-content {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .l-hint .hint-content {
    width: 100%;
    color: #fff;
    text-align: left;
  }
  .l-hint .hint-title {
    display: block;
  }
  .l-hint .hint-img {
    margin: 20px 0;
  }
  .l-hint .hint-closeButton {
    display: inline-flex;
    margin-top: 50px;
  }
}
/**
 * TEXT
 *
 * Title types:
 * ===============
 * Title:     .l-title
 * Subtitle:  .l-subtitle
 * Desc:      .l-desc
 * Spacing:   .l-spacing
 *
 */
.l-title {
  position: static;
  margin-bottom: 38px;
  font-family: 'Open Sans', sans-serif;
  font-size: 32px;
  color: #404040;
  text-align: center;
}
.l-sectionTitle {
  margin: 50px 0 10px 0;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  font-size: 20px;
  color: #404040;
  line-height: 1.5;
}
.l-sectionTitle:first-child {
  margin-top: 0;
}
.l-subtitle {
  margin: 30px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  color: #404040;
  line-height: 1.5;
}
.l-subtitle:first-child {
  margin-top: 0;
}
.l-desc {
  margin: 30px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #303030;
}
.l-desc:first-child {
  margin-top: 0;
}
.l-spacing {
  display: block;
  width: 100%;
  height: 1px;
  margin: 25px 0;
}
/**
 * GENERAL FORM ERROR ELEM
 *
 * Usage:
 * ===============
 * <div class="l-error">This is a general error message.</div>
 *
 */
.l-error {
  display: inline-block;
  padding: 8px 12px;
  margin: 10px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  color: #FFFFFF;
  background: #FF3838;
  border-radius: 6px;
}
/**
 * BACK BUTTON ELEM
 *
 * Usage:
 * ===============
 * WITH TEXT:     <a class="l-back" href="#">Back</a>
 * WITHOUT TEXT:  <a class="l-back" href="#"></a>
 *
 */
.l-back {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #404040;
  text-decoration: none;
  transition: all .2s;
}
.l-back:before {
  display: inline-block;
  content: "\f060";
  margin-right: 15px;
  vertical-align: -1px;
  font-family: 'FontAwesomeRegular';
  font-size: 20px;
  color: #404040;
  transition: all .2s;
}
.l-back:hover,
.l-back:focus {
  color: #FF6630;
  text-decoration: none;
}
.l-back:hover:before,
.l-back:focus:before {
  color: #FF6630;
}
/**
 * BUTTON ELEM
 *
 * Usage:
 * ===============
 * LINK:          <a class="l-button" href="#">Link button</a>
 * BUTTON:        <button class="l-button" type="submit"><span class="button-text">Submit button</span></button>
 * WITH HOLDER:   <div class="l-buttonHolder center">
 *                  <a class="l-button" href="#">Centered button</a>
 *                </div>
 *
 * Options:
 * ===============
 * COLORS:  primary, secondary, transparent, mostszamlazz
 * STATES:  disabled (both class and attribute)
 * SIZES:   large, wide
 */
.l-buttonHolder {
  margin-top: 30px;
}
.l-buttonHolder.smallMargin {
  margin-top: 20px;
}
.l-buttonHolder.largeMargin {
  margin-top: 80px;
}
.l-buttonHolder.center {
  text-align: center;
}
.l-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 135px;
  height: 38px;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0px;
  white-space: nowrap;
  text-decoration: none !important;
  background: #666;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  flex-shrink: 0;
}
.l-button:hover,
.l-button:focus,
.l-button:active {
  color: #fff;
}
.l-button:not(:disabled):not(.disabled):hover {
  background: #808080;
}
.l-button:not(:disabled):not(.disabled):active {
  background: #4d4d4d;
}
.l-button.large {
  min-width: 180px;
  height: 48px;
}
.l-button.wide {
  width: 100%;
  height: 48px;
  border-radius: 24px;
}
.l-button.transparent {
  background: transparent;
  color: #fff;
}
.l-button.transparent:not(:disabled):not(.disabled):hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.l-button.transparent:not(:disabled):not(.disabled):active {
  background: rgba(0, 0, 0, 0.2);
}
.l-button.cancel {
  background: transparent;
  color: #404040;
}
.l-button.cancel:not(:disabled):not(.disabled):hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.l-button.cancel:not(:disabled):not(.disabled):active {
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 500px) {
  .l-button.cancel {
    color: #fff;
  }
}
.l-button.primary {
  background: #FF6630;
  color: #fff;
}
.l-button.primary:not(:disabled):not(.disabled):hover {
  background: #ff8c63;
}
.l-button.primary:not(:disabled):not(.disabled):active {
  background: #fc4200;
}
.l-button.secondary {
  background: #3B4657;
  color: #fff;
}
.l-button.secondary:not(:disabled):not(.disabled):hover {
  background: #505e75;
  color: #fff;
}
.l-button.secondary:not(:disabled):not(.disabled):active {
  background: #262e39;
  color: #fff;
}
.l-button.mostszamlazz {
  background: #00AEFF;
  color: #fff;
}
.l-button.mostszamlazz:not(:disabled):not(.disabled):hover {
  background: #33beff;
}
.l-button.mostszamlazz:not(:disabled):not(.disabled):active {
  background: #008bcc;
}
.l-button.disabled,
.l-button:disabled {
  cursor: default !important;
  opacity: .6;
}
.l-button .button-text {
  display: block;
  width: 100%;
  text-align: center;
}
/**
 * INPUT ELEM
 *
 * Usage:
 * ===============
 *
 *  WITHOUT HINT:
 *  -------------
 *
 *  <div class="l-input">
 *    <div class="input-label">Label of the input</div>
 *    <input class="input-input" type="text" placeholder="Placeholder" />
 *    <div class="input-errorMessage">Optional input validation error</div>
 *  </div>
 *
 *
 *  MORE INPUTS IN ONE ROW:
 *  ----------------------
 *
 *  <div class="l-inputRow">
 *    <div class="l-input">
 *      <div class="input-label">Label of the input</div>
 *      <input class="input-input" type="text" placeholder="Placeholder" />
 *      <div class="input-errorMessage">Optional input validation error</div>
 *    </div>
 *
 *    <div class="l-input">
 *      <div class="input-label">Label of the input</div>
 *      <input class="input-input" type="text" placeholder="Placeholder" />
 *      <div class="input-errorMessage">Optional input validation error</div>
 *    </div>
 *  </div>
 *
 *
 *  WITH HINT:
 *  ----------
 *
 *  <div class="l-input">
 *    <div class="input-label">Label of the input</div>
 *    <div class="input-main">
 *      <input class="input-input" type="text" placeholder="Placeholder" />
 *      <div class="l-hint">
 *        <a class="hint-icon"></a>
 *        <div class="hint-content">This will be the content of the hint.</div>
 *      </div>
 *    <div>
 *    <div class="input-errorMessage">Optional input validation error</div>
 *  </div>
 *
 *
 * Options:
 * =========
 * SIZES: small
 *
 *
 * More info:
 * ===========
 * - ERROR STATE: To show error message and state, toggle "error" class to the container element (.l-input)
 * - TEXTAREA: You can use a <textarea> tag instead of an <input /> tag, but still have to apply the "input-input" class
 *
 */
.l-inputHolder {
  display: block;
  width: 100%;
  margin: 14px 0;
}
.l-inputHolder:first-child {
  margin-top: 0;
}
.l-inputHolder:last-child {
  margin-bottom: 0;
}
.l-inputRow {
  display: flex;
  width: 100%;
}
.l-inputRow > * {
  margin: 0 5px;
}
.l-inputRow > *:first-child {
  margin-left: 0;
}
.l-inputRow > *:last-child {
  margin-right: 0;
}
.l-input {
  display: block;
  width: 100%;
}
.l-input .input-main {
  display: block;
  position: relative;
}
.l-input .input-label {
  display: block;
  padding: 0 12px;
  margin-bottom: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  color: #404040;
  font-size: 14px;
}
.l-input .input-input {
  display: block;
  width: 100%;
  height: 44px;
  box-sizing: border-box;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #C8CDD0;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: #565656;
  box-shadow: none !important;
  -webkit-appearance: none;
  outline: 0;
  transition: all .2s;
}
.l-input .input-input:hover {
  border-color: #7E7E7E;
}
.l-input .input-input:focus {
  border-color: #FF6630;
}
.l-input textarea.input-input {
  min-height: 150px;
  padding-top: 15px;
  padding-bottom: 15px;
  resize: none;
}
.l-input .input-errorMessage {
  display: none;
  margin-top: 4px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: normal;
  color: #FA6969;
}
.l-input.error .input-input {
  border: 2px solid #FA6969;
}
.l-input.error .input-errorMessage {
  display: block;
}
.l-input .l-hint {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -18px;
}
.l-input.small {
  max-width: 130px;
}
/**
 * SWITCH BUTTON ELEM
 *
 * Usage:
 * ===============
 *
 */
.l-switchButton-holder {
  margin: 30px 0;
  text-align: center;
}
.l-switchButton {
  display: inline-flex;
  height: 55px;
}
.l-switchButton .switchButton-item {
  display: flex;
  position: relative;
  cursor: pointer;
}
.l-switchButton .switchButton-item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.l-switchButton .switchButton-item:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.l-switchButton .switchButton-input {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.l-switchButton .switchButton-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  border: 1px solid #3B4657;
  transition: all .2s;
}
.l-switchButton .switchButton-item:not(:last-child) .switchButton-button {
  border-right: 0;
}
.l-switchButton .switchButton-item:first-child .switchButton-button {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.l-switchButton .switchButton-item:last-child .switchButton-button {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.l-switchButton .switchButton-input:checked + .switchButton-button {
  background: #3B4657;
}
.l-switchButton .switchButton-input:checked + .switchButton-button .switchButton-text {
  color: #ffffff;
}
.l-switchButton .switchButton-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 14px;
  color: #404040;
  text-transform: uppercase;
  transition: all .2s;
}
.l-switchButton .switchButton-smallText {
  font-size: 11px;
  font-weight: normal;
}
/**
 * CHECKBOX ELEM
 *
 * Usage:
 * ===============
 *
 *  WITHOUT HINT:
 *  -------------
 *
 *  <label class="l-checkbox">
 *    <input class="checkbox-input" type="checkbox" name="CHECKBOX_NAME" value="CHECKBOX_VALUE" required>
 *    <span class="checkbox-icon"></span>
 *    <span class="checkbox-label">Here comes the text of the checkbox with a clickable <span data-href="https://example.com" class="checkbox-labelLink">link</span> included.</span>
 *  </label>
 *
 *
 *  WITH HINT:
 *  ----------
 *
 *  <div class="l-inputHolder">
 *    <label class="l-checkbox">
 *      <input class="checkbox-input" type="checkbox" name="CHECKBOX_NAME" value="CHECKBOX_VALUE" required>
 *      <span class="checkbox-icon"></span>
 *      <span class="checkbox-label">This is a short label.</span>
 *    </label>
 *    <div class="l-hint">
 *      <a class="hint-icon"></a>
 *      <div class="hint-content">This will be the content of the hint.</div>
 *    </div>
 *  </div>
 *
 */
.l-checkbox {
  display: inline-flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.l-checkbox .checkbox-input {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
}
.l-checkbox .checkbox-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 1px solid #8E8E8E;
  border-radius: 4px;
  transition: background .2s, border .2s;
}
.l-checkbox .checkbox-icon:after {
  display: block;
  content: "\f00c";
  flex-shrink: 0;
  font-family: 'FontAwesomeRegular';
  font-size: 15px;
  color: #FF6630;
  visibility: hidden;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  transition: transform .3s, opacity .2s, visibility .2s;
}
.l-checkbox:hover .checkbox-icon,
.l-checkbox:active .checkbox-icon {
  border-color: #FF6630;
}
.l-checkbox .checkbox-input:checked + .checkbox-icon {
  border-color: #FF6630;
}
.l-checkbox .checkbox-input:checked + .checkbox-icon:after {
  visibility: visible;
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
.l-checkbox:hover .checkbox-input:checked + .checkbox-icon,
.l-checkbox:active .checkbox-input:checked + .checkbox-icon {
  border-color: #ff8c63;
}
.l-checkbox .checkbox-label {
  display: inline-block;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  font-weight: normal;
}
.l-checkbox .checkbox-labelLink {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  font-weight: normal;
  text-decoration: underline;
  transition: all .2s;
}
.l-checkbox .checkbox-labelLink:hover,
.l-checkbox .checkbox-labelLink:active {
  color: #FF6630;
}
.l-checkbox .l-hint {
  margin-left: 10px;
  vertical-align: -10px;
}
/**
 * RADIO ELEM
 *
 * Usage:
 * ===============
 *
 *  WITHOUT HINT:
 *  -------------
 *
 *  <label class="l-radio">
 *    <input class="radio-input" type="radio" name="RADIO_NAME" value="RADIO_VALUE" required>
 *    <span class="radio-icon"></span>
 *    <span class="radio-label">Here comes the text of the radio with a clickable <span data-href="https://example.com" class="radio-labelLink">link</span> included.</span>
 *  </label>
 *
 *
 *  WITH HINT:
 *  ----------
 *
 *  <div class="l-inputHolder">
 *    <label class="l-radio">
 *      <input class="radio-input" type="radio" name="RADIO_NAME" value="RADIO_VALUE" required>
 *      <span class="radio-icon"></span>
 *      <span class="radio-label">This is a short label.</span>
 *    </label>
 *    <div class="l-hint">
 *      <a class="hint-icon"></a>
 *      <div class="hint-content">This will be the content of the hint.</div>
 *    </div>
 *  </div>
 *
 */
.l-radio {
  display: inline-flex;
  position: relative;
  align-items: center;
  cursor: pointer;
}
.l-radio .radio-input {
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
}
.l-radio .radio-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border: 1px solid #8E8E8E;
  border-radius: 50%;
  transition: background .2s, border .2s;
}
.l-radio .radio-icon:after {
  display: block;
  content: '';
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: #FF6630;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: transform .3s, opacity .2s, visibility .2s;
}
.l-radio:hover .radio-icon:not(.no-hover),
.l-radio:active .radio-icon {
  border-color: #FF6630;
}
.l-radio .radio-input:checked + .radio-icon {
  border-color: #FF6630;
}
.l-radio .radio-input:checked + .radio-icon:after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.l-radio:hover .radio-input:checked + .radio-icon,
.l-radio:active .radio-input:checked + .radio-icon {
  border-color: #ff8c63;
}
.l-radio .radio-label {
  display: inline-block;
  margin-left: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  font-weight: normal;
}
.l-radio .radio-labelLink {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  font-weight: normal;
  text-decoration: underline;
  transition: all .2s;
}
.l-radio .radio-labelLink:hover,
.l-radio .radio-labelLink:active {
  color: #FF6630;
}
.l-radio .l-hint {
  margin-left: 10px;
  vertical-align: -10px;
}
/**
 * IMAGE UPLOAD ELEM
 *
 * Usage:
 * ===============
 *
 *  <div class="l-imageUpload">
 *    <div class="imageUpload-dropzone">
 *      <img class="imageUpload-preview" src="//:0" alt="Image preview">
 *    </div>
 *    <div class="imageUpload-content">
 *      <input class="imageUpload-input" type="file" accept="image/*">
 *      <a class="l-button secondary" href="#" data-imageUpload-uploadButton>Kép feltöltése</a>
 *      <div class="imageUpload-text">
 *        <b>Opcionális</b>, png vagy jpg formátumban tölthető fel
 *        <div class="l-hint">
 *          <a class="hint-icon"></a>
 *          <div class="hint-content">Súgó a képek feltöltéséhez</div>
 *        </div>
 *      </div>
 *      <a href="#" class="imageUpload-deleteButton">Kép törlése</a>
 *      <div class="imageUpload-errorMessage">Túl nagy képméret! Maximum 10MB tölthető fel!</div>
 *    </div>
 *  </div>
 *
 */
.l-imageUpload {
  display: flex;
  align-items: center;
}
.l-imageUpload .imageUpload-dropzone {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  margin-right: 30px;
  background: #FFFFFF;
  border: 1px dashed #979797;
  border-radius: 4px;
  cursor: pointer;
}
.l-imageUpload .imageUpload-dropzone:before {
  display: block;
  position: absolute;
  content: "\f030";
  left: 50%;
  top: 50%;
  margin-left: -20px;
  margin-top: -32px;
  font-family: 'FontAwesomeRegular';
  font-size: 41px;
  color: #4E6685;
}
.l-imageUpload.imageUploaded .imageUpload-dropzone:before {
  display: none;
}
.l-imageUpload .imageUpload-dropzone:hover {
  opacity: 0.8;
}
.l-imageUpload .imageUpload-preview {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 100px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center center;
}
.l-imageUpload:not(.imageUploaded) .imageUpload-preview {
  display: none;
}
.l-imageUpload .imageUpload-content {
  display: block;
}
.l-imageUpload .imageUpload-input {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 0;
  opacity: 0;
  overflow: hidden;
}
.l-imageUpload .imageUpload-text {
  display: block;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #303030;
}
.l-imageUpload .imageUpload-deleteButton {
  display: inline-block;
  margin: 8px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  font-weight: normal;
  text-decoration: underline;
  transition: all .2s;
}
.l-imageUpload .imageUpload-deleteButton:hover,
.l-imageUpload .imageUpload-deleteButton:active {
  color: #FF6630;
}
.l-imageUpload:not(.imageUploaded) .imageUpload-deleteButton {
  display: none;
}
.l-imageUpload .imageUpload-errorMessage {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: normal;
  color: #FA6969;
}
@media screen and (max-width: 500px) {
  .l-imageUpload {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .l-imageUpload .imageUpload-dropzone {
    margin: 0 0 30px 0;
  }
}
@media screen and (max-width: 400px) {
  .l-imageUpload {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .l-imageUpload .imageUpload-dropzone {
    width: 110px;
    height: 110px;
  }
}
/**
 * FLOATING BOX
 *
 * Usage:
 * ===============
 * NORMAL:                <div class="l-floatingBox">This is the <b>formatted</b> content of the floating box.</div>
 * WITH OPTIONAL BUTTON:  <div class="l-floatingBox withButton">This includes a CTA as well <a class="l-button">Click me!</a></div>
 *
 * Options:
 * ===============
 * TYPO MDOES:  light
 * SIZES:       small
 */
.l-floatingBox {
  position: relative;
  display: block;
  width: 100%;
  max-width: 575px;
  margin: 0 auto;
  padding: 22px;
  background: #FFFFFF;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  color: #000000;
  letter-spacing: 0;
  line-height: 22px;
}
.l-floatingBox.small {
  max-width: 500px;
}
.l-floatingBox.light {
  color: #303030;
  font-size: 14px;
}
.l-floatingBox.withButton {
  padding: 12px 2px 12px 22px;
}
.l-floatingBox .l-button {
  margin: 10px 20px;
}
/**
 * POPUP ELEM
 *
 * Usage:
 * ===============
 *  <div class="l-popup" data-popupType="POPUP_TYPE_NAME">
 *    <div class="popup-bg"></div>
 *    <div class="popup-window">
 *      <a class="popup-close" href="#"></a>
 *      { POPUP CONTENT COMES HERE... }
 *    </div>
 *  </div>
 *
 * Available built-in popup content elements:
 * ===============
 * CONTENT:         .popup-content (options: tiny, small, center)
 * ICONS:           .popup-icon (types: success, fail, sick)
 * TITLE:           .popup-title (options: small)
 * SUBTITLE:        .popup-subtitle
 * LINK:            .popup-link
 * TEXT:            .popup-text
 * BUTTON HOLDER:   .popup-buttonHolder
 * TABLE:           .popup-table
 * INFO TABLE:      .popup-infoTable
 * TOP BAR:         .popup-topBar
 * FEATURE LIST:    .popup-featureList > .popup-feature
 *
 */
.l-popup {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 30px;
  color: #404040;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all .4s;
  visibility: hidden;
  opacity: 0;
}
.l-popup.popupIsVisible {
  visibility: visible;
  opacity: 1;
}
.l-popup .popup-bg {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(36, 41, 49, 0.75);
}
.l-popup.noWindowBackground .popup-bg {
  background: rgba(36, 41, 49, 0.9);
}
.l-popup .popup-window {
  position: relative;
  display: block;
  width: 100%;
  max-width: 700px;
  box-sizing: border-box;
  margin: 8px auto;
  padding: 35px 35px;
  background: #fff;
  border-radius: 4px;
  transition: all .4s;
  transform: translateY(-20px);
}
.l-popup .popup-window.banner {
  display: flex;
  align-items: center;
  padding: 18px 30px;
}
.l-popup .popup-window.banner .popup-text {
  margin: 0;
}
.l-popup .popup-window.banner .l-button {
  margin-left: 20px;
}
.l-popup .popup-window.noPadding {
  padding: 0 !important;
}
.l-popup .popup-window.flexible {
  width: auto;
  max-width: 100%;
}
.l-popup.noWindowBackground .popup-window {
  background: none;
  color: #fff;
}
.l-popup.popupIsVisible .popup-window {
  transform: translateY(0);
}
.l-popup .popup-topBar + .popup-window {
  padding-top: 10px;
}
.l-popup.small .popup-window {
  max-width: 470px;
}
.l-popup .popup-close {
  display: block;
  position: absolute;
  right: 20px;
  top: 14px;
  font-family: "FontAwesomeRegular";
  font-size: 25px;
  color: #404040;
  text-decoration: none;
  transition: all .2s;
}
.l-popup .popup-close:before {
  content: "\f00d";
}
.l-popup .popup-close:hover {
  color: #FF6630;
}
.l-popup .popup-content {
  width: 100%;
  margin: 0 auto;
}
.l-popup .popup-content.tiny {
  max-width: 510px;
}
.l-popup .popup-content.small {
  max-width: 550px;
}
.l-popup .popup-content.center {
  text-align: center;
}
.l-popup .popup-row {
  display: flex;
  align-items: center;
}
.l-popup .popup-topBar {
  padding: 15px;
  background: #aaa;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.l-popup .popup-topBar.success {
  background: #98D956;
}
.l-popup .popup-topBar .popup-topBar-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-popup .popup-topBar .popup-topBar-main > * {
  margin: 0 6px;
}
.l-popup .popup-topBar .popup-topBar-main > *:first-child {
  margin-left: 0;
}
.l-popup .popup-topBar .popup-topBar-main > *:last-child {
  margin-bottom: 0;
}
.l-popup .popup-topBar .popup-topBar-icon {
  font-family: 'FontAwesomeRegular';
  color: #fff;
  font-size: 24px;
}
.l-popup .popup-topBar .popup-topBar-icon.success:before {
  content: "\f00c";
}
.l-popup .popup-topBar .popup-topBar-icon.fail:before {
  content: "\f00d";
}
.l-popup .popup-topBar .popup-topBar-title {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #FFFFFF;
}
.l-popup .popup-topBar .popup-topBar-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: underline;
}
.l-popup .popup-topBar.popup-topBar-open .popup-topBar-linkText-show {
  display: none;
}
.l-popup .popup-topBar:not(.popup-topBar-open) .popup-topBar-linkText-hide {
  display: none;
}
.l-popup .popup-topBar:not(.popup-topBar-open) .popup-topBar-details {
  display: none;
}
.popup-topBar .popup-infoTable {
  margin: 15px auto;
  font-size: 12px;
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.1);
}
.l-popup .popup-icon {
  display: block;
  width: 100%;
  height: 75px;
  margin: 35px auto;
  text-align: center;
}
.l-popup .popup-icon:first-child {
  margin-top: 0;
}
.l-popup .popup-icon:before {
  font-family: 'FontAwesomeRegular';
}
.l-popup .popup-icon.success:before {
  content: "\f00c";
  font-size: 50px;
  color: #98D956;
}
.l-popup .popup-icon.exclamation-triangle:before {
  content: "\f071";
  font-size: 50px;
  color: #FF6630;
}
.l-popup .popup-icon.fail:before {
  content: "\f00d";
  font-size: 50px;
  color: #F53737;
}
.l-popup .popup-icon.creditCard:before {
  content: "\f09d";
  font-size: 60px;
  color: #3B4657;
}
.l-popup .popup-icon.envelope-open-dollar:before {
  content: "\f657";
  font-size: 60px;
  color: #3B4657;
}
.l-popup .popup-icon.refresh:before {
  content: "\f021";
  font-size: 60px;
  color: #3B4657;
}
.l-popup .popup-icon.clone:before {
  content: "\f24d";
  font-size: 60px;
  color: #3B4657;
}
.l-popup .popup-icon.sad:before {
  content: "\f119";
  font-size: 70px;
}
.l-popup .popup-icon.happy:before {
  content: "\f118";
  font-size: 70px;
}
.l-popup .popup-icon.sick:before {
  display: inline-block;
  content: "";
  width: 126px;
  height: 92px;
  background: url('../images/registration/mostszamlazz-emoji.svg') no-repeat center center;
}
.l-popup .popup-icon.id-card:before {
  content: "\f2c2";
  font-size: 60px;
  color: #F53737;
}
.l-popup .popup-icon.eye:before {
  content: "\f06e";
  font-size: 60px;
  color: #F53737;
}
.l-popup .popup-icon.success-eye:before {
  content: "\f06e";
  font-size: 48px;
  color: #60BD68;
}
.l-popup .popup-icon.smallMargin {
  margin: 20px auto;
}
.l-popup .popup-loading {
  position: relative;
  width: 40px;
  height: 40px;
  margin: 40px auto 50px auto;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}
.l-popup .popup-loading:before,
.l-popup .popup-loading:after {
  display: inline-block;
  position: absolute;
  content: '';
  width: 60%;
  height: 60%;
  top: 0;
  background-color: #FF6630;
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}
.l-popup .popup-loading:after {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

.l-popup .addon-attention-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 20px;
  padding: 15px;
  gap: 15px;
  background: #FFFDF5;
  box-shadow: 1px 2px 4px rgba(59, 70, 87, 0.35);
  border-radius: 4px;
}

.l-popup .addon-attention-container .content {
  display: flex;
  flex-direction: row;
  padding: 0px;
  gap: 5px;
}

.addon-attention-container i {
  color: #FFAB00;
}
.addon-attention-container p {
  text-align: left;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  margin: 0px;
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.l-popup .popup-title {
  display: block;
  position: static;
  margin: 0;
  margin-bottom: 40px;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 31px;
  line-height: 1.4;
}
.l-popup .popup-title.small {
  font-size: 26px;
}
.l-popup .popup-title.smallMargin {
  margin-bottom: 15px;
}
.l-popup .popup-subtitle {
  display: block;
  margin: 6px 0;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  font-size: 21px;
  line-height: 1.2;
}
.l-popup .popup-link {
  display: inline-block;
  margin-top: 5px;
  font-family: 'Open Sans', sans-serif;
  color: inherit;
  font-weight: normal;
  text-decoration: underline;
  transition: all .2s;
}
.l-popup .popup-link:hover,
.l-popup .popup-link:active {
  color: #FF6630;
}
.popup-text {
  display: block;
  margin: 30px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: normal;
}
.popup-text a {
  font-family: inherit;
  text-decoration: none;
  font-weight: normal;
  color: inherit;
}
.popup-text a:hover,
.popup-text a:active {
  text-decoration: underline;
}
.popup-text a.mostszamlazz {
  color: #00AEFF;
}
.popup-text.smallMargin {
  margin: 10px 0;
}
.l-popup .popup-buttonHolder {
  display: flex;
  justify-content: center;
  margin: 50px 0;
}
.l-popup .popup-buttonHolder-20 {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.l-popup .popup-buttonHolder-20 > a {
  margin-left: 4px;
  margin-right: 4px;
}

.l-popup .popup-buttonHolder:first-child {
  margin-top: 0;
}
.l-popup .popup-buttonHolder:last-child {
  margin-bottom: 0;
}
.l-popup .popup-buttonHolder > * {
  margin: 0 10px;
}
.l-popup .popup-buttonHolder > *:first-child {
  margin-left: 0;
}
.l-popup .popup-buttonHolder > *:last-child {
  margin-right: 0;
}
.l-popup .popup-buttonHolder.vertical {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-popup .popup-buttonHolder.vertical > * {
  margin: 10px 0;
}
.l-popup .popup-buttonHolder.vertical > *:first-child {
  margin-top: 0;
}
.l-popup .popup-buttonHolder.vertical > *:last-child {
  margin-bottom: 0;
}
.l-popup .popup-table {
  width: 100%;
  max-width: 460px;
  margin: 40px auto;
  table-layout: fixed;
}
.l-popup .popup-table .infoTable-cell {
  padding: 10px 0;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
  font-weight: normal;
  font-size: 13px;
  color: #404040;
  border-bottom: 1px solid rgba(151, 151, 151, 0.6);
}
.l-popup .popup-table .infoTable-cell:last-child {
  text-align: right;
}
.l-popup .popup-table .infoTable-row:last-child .infoTable-cell {
  border-bottom: 0;
}
.popup-infoTable {
  width: 100%;
  max-width: 510px;
  margin: 30px auto;
  table-layout: fixed;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  background: #F6F6F6;
  border-radius: 4px;
  overflow: hidden;
}
.popup-infoTable .long-text {
  word-wrap: break-word;
}
.popup-infoTable .infoTable-row:first-child .infoTable-cell {
  padding-top: 15px;
}
.popup-infoTable .infoTable-row:last-child .infoTable-cell {
  padding-bottom: 15px;
}
.popup-infoTable .infoTable-cell {
  padding: 2px 7px;
  color: #404040;
}
.popup-infoTable .infoTable-cell:first-child {
  text-align: right;
}
.popup-infoTable .infoTable-cell:last-child {
  text-align: left;
}
.popup-infoTable .infoTable-cell.bright {
  font-weight: normal;
  color: #888888;
}
.popup-infoTable .infoTable-cell.strong {
  font-weight: bold;
  color: #404040;
}
.l-popup .popup-featureList {
  display: block;
  max-width: 500px;
  margin: 35px auto;
  list-style: none;
  column-count: 2;
  column-gap: 40px;
}
.l-popup .popup-feature {
  position: relative;
  display: block;
  margin: 5px 0;
  padding-left: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: left;
}
.l-popup .popup-featureIcon {
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
  font-family: FontAwesomeRegular;
  font-style: normal;
  color: #F53737;
  font-size: 15px;
}

.circle-error:before {
  display: block;
  content: "\f057" !important;
}

.l-popup .popup-featureIcon:before {
  display: block;
  content: "\f00d";
}

@media screen and (max-width: 600px) {
  .l-popup .popup-window.banner {
    flex-direction: column;
  }
  .l-popup .popup-window.banner .l-button {
    margin: 10px 0 0 0;
  }
}
@media screen and (max-width: 500px) {
  .l-popup:not(.disable-mobile-view) {
    padding-left: 0;
    padding-right: 0;
    color: #fff;
    -webkit-backdrop-filter: blur(10px);
  }
  .l-popup:not(.disable-mobile-view) .popup-window {
    background: none;
  }
  .l-popup:not(.disable-mobile-view) .popup-window.banner {
    border-top: 1px solid #fff;
    border-radius: 0;
  }
  .l-popup:not(.disable-mobile-view) .popup-close {
    color: #fff;
  }
  .l-popup:not(.disable-mobile-view) .popup-icon.creditCard:before {
    color: #fff;
  }
  .l-popup:not(.disable-mobile-view) .popup-icon.envelope-open-dollar:before {
    color: #fff;
  }
  .l-popup:not(.disable-mobile-view) .popup-icon.refresh:before {
    color: #fff;
  }
  .l-popup:not(.disable-mobile-view) .popup-bg {
    background: rgba(36, 41, 49, 0.9);
  }
  .l-popup:not(.disable-mobile-view) .popup-topBar {
    margin: 0 25px;
    border-radius: inherit;
  }
  .l-popup:not(.disable-mobile-view) .l-input .input-label {
    color: #fff;
    font-weight: normal;
  }
  .l-popup:not(.disable-mobile-view) .popup-table .infoTable-cell {
    color: #fff;
  }
}
@media screen and (max-width: 400px) {
  .l-popup .popup-window {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-height: 800px) {
  .l-popup {
    display: block;
  }
  .l-popup .poup-window.flexible {
    border-radius: 0;
  }
}
/**
 * BASKET ITEM ELEM
 *
 * Usage:
 * ===============
 * <div class="l-basketItem">
 *   <div class="basketItem-main">
 *     <div class="basketItem-title">Prémium</div>
 *     <div class="basketItem-duration">1 hónapra előfizetés</div>
 *   </div>
 *   <div class="basketItem-price">990 Ft/hó</div>
 * </div>
 *
 *
 * Holders:
 * ===============
 * <div class="l-basketItemList">
 *   ...
 * </div>
 *
 *
 * Options:
 * ===============
 * - small
 *
 */

.basket {
  display: table;
  width: 100%;
  padding-top: 30px;
}

.grid-basket {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
}

.grid-basket-top-left-corner {
  background:  #F7F8F8;
  border-radius: 10px 0 0 0;
  border-left: 1px solid #C8CDD0;
  border-top: 1px solid #C8CDD0;
  margin-left: 0px;
  margin-top: 8px;
}

.grid-basket-left-full-corner {
  background:  #F7F8F8;
  border-radius: 10px 0px 0px 10px;
  border-left: 1px solid #C8CDD0;
  border-top: 1px solid #C8CDD0;
  border-bottom: 1px solid #C8CDD0;
  margin-left: 0px;
  margin-top: 8px;
}

.grid-basket-top-right-corner {
  background:  #F7F8F8;
  border-radius: 0 10px 0 0;
  border-right: 1px solid #C8CDD0;
  border-top: 1px solid #C8CDD0;
  margin-left: 0px;
  margin-top: 8px;
}

.grid-basket-right-full-corner {
  background:  #F7F8F8;
  border-radius: 0px 10px 10px 0px;
  border-right: 1px solid #C8CDD0;
  border-top: 1px solid #C8CDD0;
  border-bottom: 1px solid #C8CDD0;
  margin-left: 0px;
  margin-top: 8px;
}

.selectedKeretAddonDiv {
  display: none;
}

.grid-basket-middle {
  background:  #F7F8F8;
}

.grid-basket-left {
  background:  #F7F8F8;
  border-left: 1px solid #C8CDD0;
  margin-left: 0px;
}

.grid-basket-right {
  background:  #F7F8F8;
  border-right: 1px solid #C8CDD0;
  margin-left: 0px;
}

.grid-basket-top {
  background: #F7F8F8;
  border-top: 1px solid #C8CDD0;
  margin-top: 8px;
}

.grid-basket-top-bottom {
  background: #F7F8F8;
  border-top: 1px solid #C8CDD0;
  border-bottom: 1px solid #C8CDD0;
  margin-top: 8px;
}

.grid-basket .basketItem-price {
  margin-left: 0px;
}

.grid-basket-detail {
  color: #42526E;
  grid-column: span 4;
}

.grid-basket-detail .fa-info-circle::before {
  font-size: 14px;
}

.grid-basket-detail .price-warning {
  border: 1px solid #C8CDD0;
  border-radius: 0 0 10px 10px;
  box-shadow: none;
  background: #ffffff;
}

.basketHeader, .basketRow {
  display: table-row;
}

.basketRow {
  background: #F7F8F8;
}

.basketRowEmpty {
  background: #FFFFFF;
  height: 10px;
}

.basketCol {
  display: table-cell;
  padding: 10px 20px;
  vertical-align: middle;
}

.l-basketItemList {
  margin: 40px 0;
}
.l-basketItem {
  display: flex;
  align-items: center;
  width: 100%;
  height: 70px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 10px 0;
}

.l-basketItem .basketItem-main {
  display: flex;
  align-items: center;
  flex-grow: 1;
  margin-right: 20px;
}
.l-basketItem .basketItem-main:last-child {
  margin-right: 0;
}
.basketItem-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #404040;
  letter-spacing: 0;
}
.basketItem-duration {
  margin-left: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
  letter-spacing: 0;
}
.basketItem-price {
  margin-left: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
  letter-spacing: 0;
  text-align: right;
}
.l-basketItem .basketItem-info {
  display: inline-block;
  margin: 0 5px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
  letter-spacing: 0;
}
.l-basketItem .basketItem-info:first-child {
  margin-left: 0;
}
.l-basketItem .basketItem-info:last-child {
  margin-right: 0;
}
.l-basketItem.small {
  height: 50px;
}
.l-basketItem.small .basketItem-title {
  font-size: 16px;
  font-weight: normal;
}
.l-basketItem.small .basketItem-price {
  font-size: 16px;
}
/**
 * BASKET EDIT EDIT ELEM
 *
 * Usage:
 * ===============
 * <div class="l-basketItemEdit">
 *   <a href="#" class="basketItemEdit-link">Csomag vagy időszak módosítása</a>
 * </div>
 *
 */
.l-basketItemEdit {
  margin: 10px 0;
  text-align: right;
}
.l-basketItemEdit .basketItemEdit-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  text-decoration: underline;
  transition: all .2s;
}
.l-basketItemEdit .basketItemEdit-link:hover {
  color: #FF6630;
}
/**
 * BASKET SUMMARY ELEM
 *
 * Usage:
 * ===============
 * <div class="l-basketSummary">9.745 Ft</div>
 *
 */
.l-basketSummary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 10px 0;
}
.l-basketItemList + .l-basketSummary {
  margin-top: -20px;
}
.l-basketSummary .basketSummaryLabel {
  margin-right: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #404040;
  letter-spacing: 0;
  font-weight: bold;
}
.l-basketSummary .basketSummaryValue {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #FF6630;
  letter-spacing: 0;
}
.m-header {
  position: relative;
  height: 70px;
  background: #FF6630;
}
.m-header .grid {
  display: flex;
  align-items: center;
  height: 70px;
}
.m-header .space {
  flex-grow: 1;
}
.m-header .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.m-header .menu > * {
  margin: 0 5px;
}
.m-header .menu > *:first-child {
  margin-left: 0;
}
.m-header .menu > *:last-child {
  margin-right: 0;
}
.m-header .hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  width: 45px;
  align-self: stretch;
}
.m-header .hamburgerIcon {
  fill: #fff;
}
.m-header .mobileMenu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  margin-top: -1px;
  background: #FF6630;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.15);
  transition: all .2s;
  transform: translateY(-10px);
  visibility: hidden;
  opacity: 0;
}
.m-header.mobileMenuIsVisible .mobileMenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.m-header .mobileMenu-item {
  display: flex;
  align-items: center;
  height: 48px;
  box-sizing: border-box;
  padding: 0 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all .2s;
}
.m-header .mobileMenu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 600px) {
  .m-header .menu {
    display: none;
  }
  .m-header .mobileMenu {
    display: block;
  }
  .m-header .hamburger {
    display: flex;
  }
}
.m-main {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 0;
  flex-grow: 1;
  overflow: hidden;
}
.m-main .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.m-main .container.small {
  width: 100%;
  max-width: 850px;
}
.m-main .container.tiny {
  width: 100%;
  max-width: 500px;
}
.m-footer {
  height: 103px;
  background: #3B4657;
}
.m-footer .grid {
  display: flex;
  align-items: center;
  height: 103px;
  box-sizing: border-box;
  padding: 20px 0;
}
.m-footer .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.m-footer .menu > * {
  margin: 0 15px;
}
.m-footer .menu > *:first-child {
  margin-left: 0;
}
.m-footer .menu > *:last-child {
  margin-right: 0;
}
.m-footer .link {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.m-footer .link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .m-footer {
    height: auto;
  }
  .m-footer .grid {
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .m-footer .menu {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    margin-left: 8px;
  }
  .m-footer .menu > * {
    margin: 5px 0;
  }
  .m-footer .menu > *:first-child {
    margin-top: 0;
  }
  .m-footer .menu > *:last-child {
    margin-bottom: 0;
  }
}
.m-paymentMethods .paymentMethods-list {
  position: relative;
  display: flex;
  justify-content: flex-start;
  margin: 20px 0;
}
.m-paymentMethods .paymentMethods-radio {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.m-paymentMethods .paymentMethods-item {
  margin: 0 7px;
}
.m-paymentMethods .paymentMethods-item:first-child {
  margin-left: 0;
}
.m-paymentMethods .paymentMethods-item:last-child {
  margin-right: 0;
}
.m-paymentMethods .paymentMethods-box {
  position: relative;
  display: flex;
  width: 150px;
  height: 92px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border: 1px solid #979797;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  color: #404040;
  cursor: pointer;
  transition: all .2s;
}
.m-paymentMethods .paymentMethods-box > * {
  margin: 5px 0;
}
.m-paymentMethods .paymentMethods-box:hover {
  border-color: #FF6630;
}
.m-paymentMethods .paymentMethods-box:before {
  display: flex;
  content: "\f00c";
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  right: -13px;
  top: -13px;
  border-radius: 50%;
  background: #FF6630;
  flex-shrink: 0;
  font-family: 'FontAwesomeRegular';
  font-size: 15px;
  color: #fff;
  visibility: hidden;
}
.m-paymentMethods .paymentMethods-radio:checked + .paymentMethods-content .paymentMethods-box {
  border-color: #FF6630;
  box-shadow: 0 0 0 1px #FF6630;
}
.m-paymentMethods .paymentMethods-radio:checked + .paymentMethods-content .paymentMethods-box:before {
  visibility: visible;
  animation: paymentMethodsTick 1s;
  animation-direction: normal;
}
.m-paymentMethods .paymentMethods-title {
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: normal;
  text-align: center;
  color: #404040;
}
.m-paymentMethods .paymentMethods-subOptions {
  display: none;
  margin: 40px 0;
}
.m-paymentMethods .paymentMethods-savedCard {
  margin: 12px 0;
}

.m-paymentMethodsBox {
  background: #FFFFFF;
  border: 1px solid #607A9E;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
}

.m-paymentMethodsBox.open .paymentMethods-item:first-child {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.m-paymentMethodsBox .paymentMethods-item:not(:last-child) {
  border-bottom: 1px solid #C8CDD0;
}

.m-paymentMethodsBox.close .paymentMethods-item:not(.onlyselected) {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.m-paymentMethodsBox .paymentMethods-item {
  padding: 20px;
}

.m-paymentMethodsBox .paymentMethods-title-security {
  padding-top: 5px;
  padding-bottom: 15px;
}

.m-paymentMethodsBox .onlyselected {
  display: none;
}

.m-paymentMethodsBox .paymentImage {
  width: 64px;
}

.m-paymentMethodsBox .bankcard-alias {
  font-style: italic;
  color: #757575;
}

.paymentMethods-selectedItem {
  background-color: #F7F8F8;
}

#paymentOptionsClose, #paymentOptionsOpen {
  justify-content: center;
  font-weight: 600;
}

.egyenlegAmount-custom {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #626A99;
  padding-right: 25px;
  padding-left: 25px;
  text-align: left;
}

.egyenlegAmount-customPlus {
  font-size: 20px;
  padding: 0 5px 0 0;
}

.egyenlegAmountCustomValueData {
  width: 260px;
  height: 28px;
  border: 1px solid #7892B6;
}

.egyenlegAmountCustomValueData:focus {
  outline: none;
}


.egyenlegAmountCustomFt {
  width: 32px;
  height: 32px;
  background: #7892B6;
  color: #FFFFFF;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.egyenlegAmountCustomValueError {
  color: #CF1111;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  max-width: 310px;
  padding-top: 5px;
}

@keyframes paymentMethodsTick {
  0% {
    opacity: 0;
    transform: scale(2) translateX(-36px) translateY(23px);
  }
  20% {
    opacity: 1;
  }
  40% {
    transform: scale(2) translateX(-36px) translateY(23px);
  }
  100% {
    transform: scale(1);
  }
}
.m-pricing {
  text-align: center;
  padding: 0;
  overflow-x: hidden;
}
.m-pricing .popup-window {
  margin: 0 auto;
  overflow: hidden;
}
.m-pricing .pricing-balance {
  margin-top: -15px;
  margin-bottom: -10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  color: #FF6630;
}
.m-pricing .pricing-balance:before {
  display: inline-block;
  content: "\f09d";
  font-family: 'FontAwesomeRegular';
  font-weight: normal;
  font-size: 20px;
  vertical-align: -3px;
  margin-right: 4px;
}
.m-pricing .pricing-itemList {
  display: inline-flex;
  justify-content: center;
  margin: 40px -20px -10px -20px;
  padding: 30px 20px;
  text-align: left;
}
.m-pricing .pricing-item {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 284px;
  box-sizing: border-box;
  margin: 0 15px;
  padding: 10px 20px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid #979797;
  border-radius: 4px;
}
.m-pricing .pricing-item > * {
  width: 100%;
  flex-shrink: 0;
}
.m-pricing .pricing-item.pricing-item-popular {
  border: 1px solid #FF6630;
}
.m-pricing .pricing-item.pricing-item-current {
  border: 1px solid #E6EAF0;
}
.m-pricing .pricing-item.pricing-item-highligh {
  box-shadow: 0 5px 50px rgba(0, 0, 0, 0.5);
  border: 0;
}
.m-pricing .pricing-current {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  box-sizing: content-box;
  bottom: 100%;
  margin-bottom: -5px;
  margin-left: -1px;
  left: 0;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #E6EAF0;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: #283342;
  text-transform: uppercase;
  border: 1px solid #E6EAF0;
}

.m-pricing .pricing-popular {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  height: 30px;
  box-sizing: content-box;
  bottom: 100%;
  margin-bottom: -5px;
  margin-left: -1px;
  left: 0;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: #FF6630;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  width: 100%;
  border: 1px solid #FF6630;
}
.m-pricing .pricing-title {
  margin-bottom: 6px;
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  color: #404040;
}
.m-pricing .pricing-price {
  display: block;
  position: relative;
}
.m-pricing .pricing-price:before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 24px;
  background: rgba(151, 151, 151, 0.4);
}
.m-pricing .pricing-amount {
  position: relative;
  display: block;
  width: 115px;
  margin: 0 auto;
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  text-align: center;
  font-size: 32px;
  color: #FF6630;
}
.m-pricing .pricing-currency {
  margin: -5px 0 12px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  color: #404040;
}
.m-pricing .pricing-desc {
  margin: 10px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
}
.m-pricing .pricing-featureListHolder {
  display: block;
  width: calc(100% + 20px);
  overflow: hidden;
  margin: 10px -10px 70px -10px;
  padding: 0;
}
.m-pricing .pricing-featureList {
  display: block;
  width: 100%;
  box-sizing: content-box;
  margin: 0;
  margin-bottom: -20px;
  padding: 0;
  padding-right: 50px;
  padding-bottom: 85px;
  flex-shrink: 1;
  overflow-y: auto;
}
.m-pricing .pricing-feature {
  display: block;
  position: relative;
  margin: 10px 0;
  padding-left: 38px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
}

.m-pricing .pricing-yearlybox {
  display: flex;
  flex-direction: column;
  margin: 10px 0px;

}
.m-pricing .pricing-yearlysum {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFE8E0;
  border-radius: 4px;
  padding: 5px 0px;

  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
}

.m-pricing .pricing-yearly-gap {
  margin-top: 56px;
}

.m-pricing .tofree-box {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
  padding: 10px;
}

.m-pricing .tofree-box a {
  color: #7AA3DD;
  font-weight: bold;
  line-height: 17px;
}

.m-pricing .tofree-box a:hover {
  color: #626a99;
}

.dijcsmod-info .payment-time #switchElofizido
{
  color: #626a99;
  font-weight: bold;
  line-height: 17px;
  text-decoration: none;
}

.dijcsmod-info .payment-time #switchElofizido:hover {
  color: #626a99;
}

.m-pricing .zarokata-feature {
  display: block;
  position: relative;
  margin: 10px 0;
  padding-left: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #404040;
}

.m-pricing .pricing-feature:first-child {
  margin-top: 0;
}
.m-pricing .pricing-feature:last-child {
  margin-bottom: 0;
}
.m-pricing .pricing-feature:before {
  position: absolute;
  left: 10px;
  top: -4px;
  font-family: 'FontAwesomeRegular';
  font-size: 20px;
}

.m-pricing .pricing-feature-tick:before {
  content: "\f00c";
  color: #98D956;
}

.m-pricing .pricing-feature-cross:before {
  content: "\f00d";
  color: #757575;
}

.m-pricing .pricing-feature.pricing-feature-highlight {
  padding-top: 8px;
  padding-bottom: 8px;
  background: #FF6630;
  border-radius: 4px;
  color: #fff;
}
.m-pricing .pricing-feature.pricing-feature-highlight:before {
  top: 5px;
  color: #fff;
}
.m-pricing .pricing-ctaHolder {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding-bottom: 18px;
  left: 0;
  bottom: 0;
  text-align: center;
  background-image: linear-gradient(-180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 41%);
  border-radius: inherit;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.m-pricing .pricing-priceyoupay {
  font-family: Open-Sans, sans-serif;
  font-size: 15px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding-bottom: 80px;
  left: 0;
  bottom: 0;
}

.m-pricing .pricing-current .icon-freeze {
  background: url(../images/payment/freeze-darkblue.svg) no-repeat center;
  display: inline-block;
  width: 16px;
  height: 16px;
  padding-right: 5px;
}

@media screen and (max-width: 1400px) {
  .m-pricing .popup-window {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1300px) {
  .m-pricing .pricing-item {
    margin: 0 8px;
  }
}
@media screen and (max-width: 1200px) {
  .m-pricing .pricing-itemList {
    justify-content: flex-start;
    overflow-x: auto;
  }
}
@media screen and (max-height: 1100px) {
  .m-pricing .pricing-featureList {
    height: 250px;
  }
  .m-pricing .popup-title {
    margin-bottom: 20px;
  }
  .m-pricing .l-switchButton-holder {
    margin: 20px 0;
  }
  .m-pricing .popup-buttonHolder {
    margin: 25px 0;
  }
  .m-pricing .pricing-balance {
    margin: -10px 0 -5px 0;
  }
}
@media screen and (max-height: 1000px) {
  .m-pricing {
    display: block;
  }
  .m-pricing .poup-window.flexible {
    border-radius: 0;
  }
  .m-pricing .pricing-featureList {
    height: 150px;
  }
  .m-pricing .pricing-itemList {
    margin-top: 20px;
  }
}
@media screen and (max-height: 900px) {
  .m-pricing .popup-window {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .m-pricing .pricing-itemList {
    margin-top: 0;
  }
  .m-pricing .m-pricing .popup-buttonHolder {
    margin-top: 10px;
  }
}
.m-registration {
  margin: 50px 0;
}
.m-registration .grid {
  display: flex;
}
.m-registration .gridPanel {
  width: 100%;
  margin: 0 25px;
}
.m-registration .gridPanel.verticalCenter {
  align-self: center;
}
.m-registration .gridPanel:first-child {
  margin-left: 0 !important;
}
.m-registration .gridPanel:last-child {
  margin-right: 0 !important;
}
.m-registration .gridSeparator {
  position: relative;
  display: block;
  width: 1px;
  height: auto;
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 25px;
  padding: 0;
  border: 0;
  background: #979797;
}
.m-registration .gridSeparator-text {
  position: absolute;
  display: none;
  width: 60px;
  height: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  color: #303030;
  left: 50%;
  top: 50%;
  margin-left: -30px;
  margin-top: -8px;
  background: #fff;
}
.m-registration .desc {
  display: block;
  margin: 30px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #303030;
}
.m-registration .companyLogoUploadHolder {
  margin-bottom: 35px;
}
.m-registration .forgottenPasswordLink {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
  font-weight: normal;
  text-decoration: underline;
  transition: all .2s;
}
.m-registration .forgottenPasswordLink:hover,
.m-registration .forgottenPasswordLink:active {
  color: #FF6630;
}
.m-registration .policyCheckboxHolder {
  margin: 15px 0;
}
.m-registration .policyText {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: #303030;
}
.m-registration .socialButton {
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 15px;
  margin: 10px 0;
  border-radius: 4px;
  background: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: all .2s;
}
.m-registration .socialButton:first-child {
  margin-top: 0;
}
.m-registration .socialButton:last-child {
  margin-bottom: 0;
}
.m-registration .socialButton:before {
  display: block;
  content: "";
  width: 20px;
  height: 30px;
  margin-right: 15px;
  background: none no-repeat center center;
}
@media screen and (max-width: 360px) {
  .m-registration .socialButton:before {
    display: none;
  }
}
.m-registration .socialButton.mostszamlazz:before {
  background-image: url('../images/registration/mostszamlazz.png');
}
.m-registration .socialButton.facebook:before {
  background-image: url('../images/registration/facebook.svg');
}
.m-registration .socialButton.google:before {
  background-image: url('../images/registration/google.svg');
}
.m-registration .socialButton.mostszamlazz {
  background: #174461;
}
.m-registration .socialButton.mostszamlazz:not(:disabled):not(.disabled):hover {
  background: #21618a;
}
.m-registration .socialButton.mostszamlazz:not(:disabled):not(.disabled):active {
  background: #0d2738;
}
.m-registration .socialButton.facebook {
  background: #486BA6;
}
.m-registration .socialButton.facebook:not(:disabled):not(.disabled):hover {
  background: #6585bc;
}
.m-registration .socialButton.facebook:not(:disabled):not(.disabled):active {
  background: #395482;
}
.m-registration .socialButton.google {
  background: #DF4F40;
}
.m-registration .socialButton.google:not(:disabled):not(.disabled):hover {
  background: #e6776c;
}
.m-registration .socialButton.google:not(:disabled):not(.disabled):active {
  background: #ca3222;
}
@media screen and (max-width: 800px) {
  .m-registration .gridSeparator {
    margin: 0 12px;
  }
  .m-registration .gridPanel {
    margin: 0 12px;
  }
}
@media screen and (max-width: 700px) {
  .m-registration .mobileHidden {
    display: none;
  }
  .m-registration .grid {
    max-width: 450px;
    margin: 0 auto;
    flex-direction: column;
  }
  .m-registration .gridPanel {
    margin: 20px 0;
  }
  .m-registration .gridSeparator {
    width: 100%;
    height: 1px;
    margin: 20px 0;
  }
  .m-registration .gridSeparator-text {
    display: block;
  }
  .m-registration .gridPanel.form {
    order: 3;
  }
  .m-registration .gridSeparator {
    order: 2;
  }
  .m-registration .gridPanel.socialButtons {
    order: 1;
  }
}

.password-eye-icon {
  margin-left: -30px;
  cursor: pointer;
}

.input-input.input-password {
  display: inline;
  padding-right: 32px;
}

.input-password::-ms-reveal {
  display: none;
}

/*# sourceMappingURL=style.css.map */
