﻿@charset "UTF-8";
/*
Custom styles
*/

:root {
  --nyb-gold: #b99039;
  --nyb-light-gold: #f3efe7;
}

/* colors */
.color-gold {
  color: var(--nyb-gold);
}

.color-light-gold {
  color: var(--nyb-light-gold);
}

.color-black {
  color: #000000;
}

.color-light-black {
  color: #262c3c;
}

.color-white {
  color: #ffffff;
}

.color-red {
  color: #cc0000;
}

.bgcolor-gold {
  background-color: var(--nyb-gold);
}

.bgcolor-light-gold {
  background-color: var(--nyb-light-gold);
}

/* topbar */
#topbar {
  position: relative;
  z-index: 200;
  background-color: #fff; /*colored*/
}

  #topbar .top-menu-right {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    float: right;
  }

    #topbar .top-menu-right > li {
      display: inline-block;
      height: 40px;
      line-height: 40px;
    }

      #topbar .top-menu-right > li > a {
        color: #3c4043;
        display: block;
        font-size: 12px;
        font-weight: 500;
        height: 40px;
        margin-right: 16px;
      }

/* Slider */
.inspiro-slider {
  width: 100%;
  height: 72vh;
  overflow: hidden;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  min-height: 100%;
  width: 100%;
}

  .inspiro-slider.slider-halfscreen {
    height: 72vh;
  }

  .inspiro-slider.slider-fullscreen {
    height: 100vh;
  }

  .inspiro-slider.is-fade .slide {
    opacity: 0 !important;
    -webkit-transition: opacity 0.5s ease !important;
    transition: opacity 0.5s ease !important;
  }

    .inspiro-slider.is-fade .slide.is-selected {
      opacity: 1 !important;
    }

  .inspiro-slider .slide {
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 20%;
    width: 100%;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

    .inspiro-slider .slide .container, .inspiro-slider .slide .container-wide {
      padding-top: 120px;
      padding-bottom: 100px;
      -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
      align-self: center !important;
    }

    .inspiro-slider .slide .slide-captions {
      position: relative;
      text-align: left;
    }

      .inspiro-slider .slide .slide-captions h1 {
        font-size: 80px;
        font-weight: 700;
        line-height: 80px;
        margin-bottom: 30px;
        color: #fff;
      }

      .inspiro-slider .slide .slide-captions h2 {
        font-size: 60px;
        font-weight: 700;
        line-height: 68px;
        margin-bottom: 30px;
        color: #fff;
      }

      .inspiro-slider .slide .slide-captions h3, .inspiro-slider .slide .slide-captions h4, .inspiro-slider .slide .slide-captions h5, .inspiro-slider .slide .slide-captions h6 {
        color: #fff;
      }

      .inspiro-slider .slide .slide-captions .strong {
        color: #fff;
        display: block;
        font-size: 14px !important;
        font-weight: 500;
        letter-spacing: 2px;
        line-height: 18px;
        margin-bottom: 20px;
        position: relative;
        text-transform: uppercase;
      }

        .inspiro-slider .slide .slide-captions .strong::after {
          /*border-top: 3px solid #fff;*/
          border-top: none;
          content: "";
          display: block;
          margin-bottom: 0;
          margin-top: 8px;
          width: 26px;
        }

/* Button */
button.btn:hover, button.btn:focus, button.btn:not(:disabled):not(.disabled):active, button.btn:not(:disabled):not(.disabled).active, .btn:not(.close):not(.mfp-close):hover, .btn:not(.close):not(.mfp-close):focus, .btn:not(.close):not(.mfp-close):not(:disabled):not(.disabled):active, .btn:not(.close):not(.mfp-close):not(:disabled):not(.disabled).active, a.btn:not([href]):not([tabindex]):hover, a.btn:not([href]):not([tabindex]):focus, a.btn:not([href]):not([tabindex]):not(:disabled):not(.disabled):active, a.btn:not([href]):not([tabindex]):not(:disabled):not(.disabled).active {
  /* background-color: #0333e8; dark blue */
  /* border-color: #0333e8; dark blue */
  /* color: #fff; white */
  text-decoration: none;
  background-color: #000000; /* black */
  border-color: #000000; /* black */
  color: #b99039; /* gold */
  border-width: 1px;
  border-style: solid;
  min-width: 120px;
  min-height: 40px;
}

button.btn.btn-outline, .btn:not(.close):not(.mfp-close).btn-outline, a.btn:not([href]):not([tabindex]).btn-outline {
  background-color: transparent;
  /* border-width: 2px; */
  border-width: 1px;
  border-style: solid;
  /* border-color: #2250fc; light blue */
  /* color: #2250fc; light blue */
  border-color: #333333; /* dark grey */
  color: #333333; /* dark grey */
  min-width: 120px;
  min-height: 40px;
}

  button.btn.btn-outline:hover, button.btn.btn-outline:focus, button.btn.btn-outline:active, button.btn.btn-outline.active, .btn:not(.close):not(.mfp-close).btn-outline:hover, .btn:not(.close):not(.mfp-close).btn-outline:focus, .btn:not(.close):not(.mfp-close).btn-outline:active, .btn:not(.close):not(.mfp-close).btn-outline.active, a.btn:not([href]):not([tabindex]).btn-outline:hover, a.btn:not([href]):not([tabindex]).btn-outline:focus, a.btn:not([href]):not([tabindex]).btn-outline:active, a.btn:not([href]):not([tabindex]).btn-outline.active {
    background-color: #2250fc; /* light blue */
    /* border-width: 2px; */
    border-width: 1px;
    border-style: solid;
    border-color: #2250fc; /* light blue */
    color: #fff; /* white */
    min-width: 120px;
    min-height: 40px;
  }

button.btn.btn-dark, .btn:not(.close):not(.mfp-close).btn-dark, a.btn:not([href]):not([tabindex]).btn-dark {
  /* background-color: #000000; black */
  /* border-color: #000000; black */
  background-color: #b99039; /* gold */
  border-color: #b99039; /* gold */
  border-width: 1px;
  border-style: solid;
  min-width: 120px;
  /*min-height: 40px;*/
  text-align: center;
}

  button.btn.btn-dark:hover, button.btn.btn-dark:focus, button.btn.btn-dark:active, button.btn.btn-dark.active, .btn:not(.close):not(.mfp-close).btn-dark:hover, .btn:not(.close):not(.mfp-close).btn-dark:focus, .btn:not(.close):not(.mfp-close).btn-dark:active, .btn:not(.close):not(.mfp-close).btn-dark.active, a.btn:not([href]):not([tabindex]).btn-dark:hover, a.btn:not([href]):not([tabindex]).btn-dark:focus, a.btn:not([href]):not([tabindex]).btn-dark:active, a.btn:not([href]):not([tabindex]).btn-dark.active {
    /* background-color: #333333; dark grey */
    /* border-color: #333333; dark grey */
    /* color: #fff; white */
    background-color: transparent;
    border-color: #b99039; /* gold */
    color: #b99039; /* gold */
    border-width: 1px;
    border-style: solid;
    min-width: 120px;
    min-height: 40px;
  }

  button.btn.btn-dark.btn-outline, .btn:not(.close):not(.mfp-close).btn-dark.btn-outline, a.btn:not([href]):not([tabindex]).btn-dark.btn-outline {
    background-color: transparent;
    /* color: #000000; black */
    /* border-color: #000000; black */
    color: #b99039; /* gold */
    border-color: #b99039; /* gold */
    border-width: 1px;
    border-style: solid;
    min-width: 120px;
    min-height: 40px;
  }

    button.btn.btn-dark.btn-outline:hover, button.btn.btn-dark.btn-outline:focus, button.btn.btn-dark.btn-outline:active, button.btn.btn-dark.btn-outline.active, .btn:not(.close):not(.mfp-close).btn-dark.btn-outline:hover, .btn:not(.close):not(.mfp-close).btn-dark.btn-outline:focus, .btn:not(.close):not(.mfp-close).btn-dark.btn-outline:active, .btn:not(.close):not(.mfp-close).btn-dark.btn-outline.active, a.btn:not([href]):not([tabindex]).btn-dark.btn-outline:hover, a.btn:not([href]):not([tabindex]).btn-dark.btn-outline:focus, a.btn:not([href]):not([tabindex]).btn-dark.btn-outline:active, a.btn:not([href]):not([tabindex]).btn-dark.btn-outline.active {
      /* background-color: #000000; black */
      /* border-color: #000000; black */
      /* color: #fff; white */
      background-color: #fff; /* white */
      border-color: #b99039; /* gold */
      color: #b99039; /* gold */
      border-width: 1px;
      border-style: solid;
      min-width: 120px;
      min-height: 40px;
    }

/*Menu Dark*/
.dark #mainMenu nav > ul > li > a, #mainMenu.dark nav > ul > li > a {
  color: #fff;
}

.dark #mainMenu nav > ul > li.hover-active > a, .dark #mainMenu nav > ul > li.hover-active > span, .dark #mainMenu nav > ul > li.current > a, .dark #mainMenu nav > ul > li.current > span, .dark #mainMenu nav > ul > li:hover > a, .dark #mainMenu nav > ul > li:hover > span, .dark #mainMenu nav > ul > li:focus > a, .dark #mainMenu nav > ul > li:focus > span, #mainMenu.dark nav > ul > li.hover-active > a, #mainMenu.dark nav > ul > li.hover-active > span, #mainMenu.dark nav > ul > li.current > a, #mainMenu.dark nav > ul > li.current > span, #mainMenu.dark nav > ul > li:hover > a, #mainMenu.dark nav > ul > li:hover > span, #mainMenu.dark nav > ul > li:focus > a, #mainMenu.dark nav > ul > li:focus > span {
  /*color: #c1c3ce;*/
  color: #b99039; /* gold */
}

/* ----------------------------------------------------------------
Scroll top
-----------------------------------------------------------------*/
#scrollTop {
  z-index: -1;
  opacity: 0;
  position: fixed;
  text-align: center;
  line-height: 12px !important;
  right: 26px;
  bottom: 0;
  color: #fff;
  cursor: pointer;
  border-radius: 100px;
  height: 40px;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.25);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: opacity 0.3s, bottom 0.5s, box-shadow 0.3s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.1s linear;
  transition: opacity 0.3s, bottom 0.5s, box-shadow 0.3s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.1s linear;
  background-color: rgba(0, 0, 0, 0.25) !important;
  overflow: hidden;
}

  #scrollTop i {
    line-height: 39px !important;
    width: 39px !important;
    height: 39px !important;
    font-size: 16px !important;
    top: 0px !important;
    left: 0px !important;
    text-align: center !important;
    position: relative;
    z-index: 10;
    background-color: transparent !important;
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }

  #scrollTop:hover {
    -webkit-transition: box-shadow 0.3s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.05s linear 0.25s;
    transition: box-shadow 0.3s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.05s linear 0.25s;
    background-color: transparent !important;
  }

    #scrollTop:hover i {
      -webkit-transform: translate(0, -39px) !important;
      -ms-transform: translate(0, -39px) !important;
      transform: translate(0, -39px) !important;
    }

  #scrollTop:after, #scrollTop:before {
    display: block;
    content: ' ';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* background-color: #2250fc; blue */
    background-color: #b99039; /* gold */
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    border-radius: 100px;
  }

  #scrollTop:before {
    background-color: rgba(255, 255, 255, 0.25);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    z-index: 2;
  }

  #scrollTop:hover:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  #scrollTop:active:before {
    opacity: 1;
  }

/* ----------------------------------------------------------------
	Alert
-----------------------------------------------------------------*/
.alert {
  color: #fff;
  padding: 0.85rem 1.5rem;
  z-index: 9999;
}

  .alert span[data-notify~="title"] {
    display: block;
    font-weight: bold;
  }

  .alert span.fas {
    font-size: 1rem;
    float: left;
    padding-top: 10px;
    min-width: 40px;
    min-height: 40px;
  }

  .alert .close {
    color: #fff;
    font-weight: 300;
    padding: 12px 18px;
  }

  .alert > .alert-icon {
    float: left;
  }

    .alert > .alert-icon i {
      font-size: 34px;
    }

  .alert > p {
    /*padding-left: 54px;*/
    padding: 0px;
    margin: 0px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .alert.alert-primary {
    background-color: #2250fc;
    border-color: #093cfc;
  }

  .alert.alert-secondary {
    background-color: #c1c3ce;
    border-color: #b3b5c3;
  }

  .alert.alert-success {
    /*background-color: #28a745;
    border-color: #23923d;*/
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
  }

  .alert.alert-info {
    /*background-color: #17a2b8;
    border-color: #148ea1;*/
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #acd4fb;
    color: #000052;
    border: 1px solid #6eb6ff;
  }

  .alert.alert-danger {
    /*background-color: #dc3545;
    border-color: #d32535;*/
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #f8d7da;
    color: #cc0000;
    border: 1px solid #f5c2c7;
  }

  .alert.alert-warning {
    /*background-color: #ffc107;
    border-color: #edb100;*/
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #fff3cd;
    color: #7f4d44;
    border: 1px solid #ffecb5;
  }

  .alert.alert-light {
    color: #1e2022;
    background-color: #fbfbfb;
    border-color: #e4e6ef;
  }

    .alert.alert-light .alert-link, .alert.alert-light h1, .alert.alert-light h2, .alert.alert-light h3, .alert.alert-light h4, .alert.alert-light h5, .alert.alert-light h6 {
      color: #1e2022;
    }

  .alert.alert-dark {
    background-color: #1e2022;
    border-color: #121314;
  }

  .alert h1, .alert h2, .alert h3, .alert h4, .alert h5, .alert h6, .alert .alert-link {
    color: #fff;
  }

  .alert [data-notify="progressbar"] {
    height: 2px !important;
    margin-top: 8px;
  }

/* ----------------------------------------------------------------
	Accordion
-----------------------------------------------------------------*/
.accordion .ac-item {
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  /*border: 1px solid #e4e6ef;*/
  border: 1px solid #b99039;
}

  .accordion .ac-item .ac-title {
    font-weight: 500;
    position: relative;
    padding-right: 10px;
    margin: 0;
    font-size: 1em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

    .accordion .ac-item .ac-title:before {
      font-size: 18px;
      content: "\e9be";
      font-family: "inspiro-icons";
      right: 0;
      position: absolute;
    }

    .accordion .ac-item .ac-title > i {
      margin-right: 8px;
    }

  .accordion .ac-item .ac-content {
    padding-top: 12px;
  }

    .accordion .ac-item .ac-content > p:last-child {
      margin-bottom: 6px;
    }

  .accordion .ac-item.ac-active .ac-title:before {
    content: "\e9a1";
  }

/* Accordion Gold */
.accordion.accordion-gold .ac-item {
  background-color: #ffffff;
  border: 1px solid #b99039;
  box-shadow: 0 6px 12px rgba(140, 152, 164, 0.5);
}

  .accordion.accordion-gold .ac-item .ac-title {
    color: #b99039;
  }

  .accordion.accordion-gold .ac-item .ac-content, .accordion.accordion-gold .ac-item .ac-content p {
    color: #1e2022;
    color: #000000;
  }

/* ----------------------------------------------------------------------
    Breadcrumbs
-------------------------------------------------------------------------*/
.breadcrumb {
  background-color: transparent;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: block;
}

  .breadcrumb ul, .breadcrumb ol {
    display: inline;
    margin: 0;
    padding: 0;
  }

    .breadcrumb ul .breadcrumb-item, .breadcrumb ul li, .breadcrumb ol .breadcrumb-item, .breadcrumb ol li {
      display: inline;
      position: relative;
      opacity: .8;
    }

      .breadcrumb ul .breadcrumb-item + li:before, .breadcrumb ul li + li:before, .breadcrumb ol .breadcrumb-item + li:before, .breadcrumb ol li + li:before {
        content: "\e930";
        font-family: "inspiro-icons";
        margin: 0 5px;
        background-color: transparent;
      }

      .breadcrumb ul .breadcrumb-item a, .breadcrumb ul li a, .breadcrumb ol .breadcrumb-item a, .breadcrumb ol li a {
        color: #3c4043;
      }

      .breadcrumb ul .breadcrumb-item:hover, .breadcrumb ul .breadcrumb-item.active, .breadcrumb ul .breadcrumb-item:last-child, .breadcrumb ul li:hover, .breadcrumb ul li.active, .breadcrumb ul li:last-child, .breadcrumb ol .breadcrumb-item:hover, .breadcrumb ol .breadcrumb-item.active, .breadcrumb ol .breadcrumb-item:last-child, .breadcrumb ol li:hover, .breadcrumb ol li.active, .breadcrumb ol li:last-child {
        opacity: 1;
      }

/* Line */
.line-gold {
  clear: both;
  position: relative;
  width: 100%;
  margin: 0px 0px 5px 0px;
  padding: 0px;
  border-top: 1px solid #b99039;
}


/*! Polo components */
input:not([type="checkbox"]):not([type="radio"]), select, .input-group-text {
  /*min-height: 10px;*/
}


/* No button radius */
button.btn, .btn:not(.close):not(.mfp-close), a.btn:not([href]):not([tabindex]) {
  display: inline-block;
  font-family: inherit;
  /*border-radius: 0.42rem 0.42rem 0.42rem 0.42rem;*/
  border-radius: 0px;
  font-size: 12px;
  /* font-weight: 600; */
  font-weight: 300;
  letter-spacing: .5px;
  text-decoration: none;
  outline: none;
  padding: 12px 18px;
  position: relative;
  text-transform: uppercase;
  background-color: #2250fc;
  border-color: #2250fc;
  border-width: 1px;
  border-style: solid;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin-bottom: 6px;
  outline: none;
  line-height: 14px;
  cursor: pointer;
}

  button.btn.btn-lg, .btn:not(.close):not(.mfp-close).btn-lg, a.btn:not([href]):not([tabindex]).btn-lg {
    /*font-size: 16px;*/
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 28px;
    padding: 14px 40px;
  }

/* DevExpress */
.dxisControl_iOS .dxis-nbItem .dxis-nbHoverItem {
  display: none;
  position: absolute;
  border: 2px solid #007BF7;
  /*border: 2px solid #b99039;*/
}

.dxisControl_iOS .dxis-nbSelectedItem {
  z-index: 1;
  cursor: default;
  position: absolute;
  border: 2px solid #007BF7;
  /*border: 2px solid #b99039;*/
  background-color: rgba(255,255,255,0);
}

/* Heading text */
.heading-text.heading-section h2:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100px;
  /*background-color: #2250fc;*/ /* blue */
  background-color: #b99039; /* gold */
  bottom: -30px;
  left: 0;
  right: 0;
}

.heading-text.heading-section h2 {
  position: relative;
  /*font-size: 48px;*/
  font-size: 36px;
  line-height: 56px;
  margin-bottom: 60px;
}

/* Portfolio zoom icon size */
.portfolio-item .portfolio-description a > i, .portfolio-item .grid-description a > i, .portfolio-item .portfolio-links a > i, .grid-item .portfolio-description a > i, .grid-item .grid-description a > i, .grid-item .portfolio-links a > i {
  /*font-size: 14px !important;*/
  font-size: 25px !important;
}

/* Zoom navigator thumb border error */
.dxisControl_iOS .dxis-nbSelectedItem {
  z-index: 1;
  cursor: default;
  position: absolute;
  border: 2px solid #007BF7; /* blue */
  /*border: 2px solid #b99039;*/ /* gold */
  background-color: rgba(255,255,255,0);
}

  .dxisControl_iOS .dxis-nbSelectedItem > div {
    /*border: 2px solid White;*/
    border: none;
  }

.dxisControl_iOS .dxis-nbItem .dxis-nbHoverItem > div {
  /*border: 2px solid #ffffff;*/
  border: none;
}

.dxisControl_iOS .dxis-nbItem .dxis-nbHoverItem {
  display: none;
  position: absolute;
  border: 2px solid #007BF7; /* blue */
  /*border: 2px solid #b99039;*/ /* gold */
}

.dxisControl_iOS .dxis-nbItem .dxis-nbHoverItem {
  display: none;
  position: absolute;
  /*border: 2px solid #007BF7;*/ /* blue */
}

.dxis-nbHoverItem, .dxis-item canvas {
  top: 0;
  left: 0;
}

.card {
  border: 1px solid #c8c8cd; /* gray */
}

.separator-gray {
  color: #c8c8cd; /* gray */
}

input:not([type="checkbox"]):not([type="radio"]), select, .input-group-text {
  /*min-height: 40px;*/
}

.input-group-text {
  height: 37px;
}

.button-feltoltes {
  /* background-color: #000000; black */
  /* border-color: #000000; black */
  /* color: #fff; white */
  background-color: #fff; /* white */
  border-color: #b99039; /* gold */
  color: #b99039; /* gold */
  border-width: 1px;
  border-style: solid;
  min-width: 120px;
  min-height: 40px;
}

/* View Uploaded Image */
.uploaded-image {
  /*height: 500px;*/
  max-height: 500px;
  /*width: 500px;*/
  max-width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 25px;
}

.uploaded-image-bg {
  background-size: 100% 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Radio Button */
form-check-input {
  border: none !important;
}

/* Tooltip on Portfolio */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }

    .tooltip .tooltiptext::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;
    }

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }


/*upload*/
.dropZoneExternal > div,
.dropZoneExternal > img {
  position: absolute;
}

.dropZoneExternal {
  position: relative;
  border: 1px dashed #f17f21 !important;
  cursor: pointer;
}

.dropZoneExternal,
.dragZoneText {
  width: 100%;
  max-width: 350px;
  min-width: 286px;
  height: 350px;
}

#dragZone {
  width: 100%;
  /*display: table;*/
}

#uploadedImage {
  width: 100%;
}

.dropZoneText {
  width: 300px;
  height: 150px;
  color: #fff;
  background-color: #888;
}

#dropZone {
  top: 0;
  padding: 100px 25px;
}

.uploadControlDropZone,
.hidden {
  display: none;
}

.dropZoneText,
.dragZoneText {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 20pt;
  padding-left: 25px;
}

.dragZoneText {
  color: #808080;
}

.dxucInlineDropZoneSys span {
  color: #fff !important;
  font-size: 10pt;
  font-weight: normal !important;
}

.validationMessage {
  padding: 0 20px;
  text-align: center;
}

.uploadContainer {
  width: 100%;
  max-width: 350px;
  min-width: 286px;
  margin-top: 10px;
}

.Note {
  max-width: 500px;
}

.image-on-submitted-order {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

/*button.btn.btn-dark, .btn:not(.close):not(.mfp-close).btn-dark, a.btn:not([href]):not([tabindex]).btn-dark {
  background-color: #b99039;
  border-color: #b99039;
  border-width: 1px;
  border-style: solid;
  min-width: 60px;
  width: 60px;
  min-height: 60px;
  height: 60px;
}*/

.icon-delete {
  width: 100px;
  height: 100px;
}

/* DexExpress Grid */
.centerGrid {
  margin: 25px auto;
}

.gridCellaAllapotvaltas {
}

  .gridCellaAllapotvaltas a:link, a:visited {
    color: #20537c;
    text-decoration: none;
  }

  .gridCellaAllapotvaltas a:hover {
    color: #cc0000;
    text-decoration: underline;
  }

  .gridCellaAllapotvaltas a:active {
    color: #cc0000;
    text-decoration: none;
  }

/* Egyedi igeny */
.memo-text {
  padding: 15px;
}

/* plugins.css */
.form-check .form-check-input {
  float: left;
  margin-left: -1.8em;
  border: none;
}

/* Slider prev-next button */
.flickity-button:hover {
  background-color: #b99039;
}

.inspiro-slider .flickity-button {
  width: 78px;
  height: 78px;
  line-height: 78px;
  /*width: 40px;
  height: 40px;
  line-height: 40px;*/
  background: transparent;
  color: #fff;
  box-shadow: none;
  padding: 0;
}

/* Tooltip */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

  .tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }

    .tooltip .tooltiptext::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      margin-left: -5px;
      border-width: 5px;
      border-style: solid;
      border-color: #555 transparent transparent transparent;
    }

  .tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
  }

/* Selected combobox's item with image */
.dxeButtonEdit_iOS .dxeIIC img {
  padding-left: 0px;
  margin-left: 12px;
  margin-right: -3px;
  padding-right: 0px;
}

/* Selected combobox's dropdown item with image */
img {
  border-width: 0;
  padding-left: 0px;
  margin-left: -2px;
  margin-right: 5px;
}

/* Hidden button */
.hiddenButton {
  display: none;
}

/* Desktop view */
@media (max-width: 1199px) {
  div.desktop-visibilty {
    display: none;
  }
}

/* Mobile view */
@media only screen and (min-width: 1200px) {
  div.mobil-visibilty {
    display: none;
  }
}

/* ucDialogItemNext button width */
.buttonWidthCartNext {
  width: 350px;
  text-align: center;
}

/* Delete Icon */
[class*=" icofont-"], [class^=icofont-] {
  font-family: IcoFont !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  /*line-height: 1;*/
  line-height: 1.5 !important;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased
}

/* Icon for shop */
.shop-icon {
  font-size: 24px;
  position: relative;
  color: #b99039;
  padding-top: 5px;
}

/* Product category items' style */
.product-category-item ul li:before {
  padding-left: 15px;
}

.product-category-item ul li {
  color: #cc0000;
}

.product-category-item a:link {
  color: #000000 !important;
}

.product-category-item a:hover {
  font-weight: bold;
}

.product-category-item a:visited {
  color: #000000 !important;
}

/* Picture frame */
.picture-frame {
  /*background-color: #f3f3f3 !important;
  background-image: linear-gradient(0deg, #f3efe7, #f3f3f3);*/
  background-color: #f3efe7;
  border: 1px solid #c8c8cd !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Product title under the picture */
.product .product-title {
  max-width: 100%;
}

/* Label on product */
.product .product-new {
  background: #00c0e9;
}

/* Latest products */
.widget-shop .product .product-image {
  float: left;
  /*/padding-right: 10px;
  width: 26%;*/
  scroll-padding-right: 0px;
  width: 50%;
}

/* Label properties on product */
.product .product-new {
  /*background: #00c0e9; sárga*/
  /*background: #1572A1; arany*/
  /*background: #b99039; skék*/
  /*background: #cc0000; piros*/
  background: #007bf7; /*vkék*/
}

.product .product-new {
  border-radius: 50%;
  color: #ffffff;
  /*font-size: 11px;*/
  font-size: 13px;
  font-weight: 600;
  /*height: 42px;*/
  height: 36px;
  right: 10px;
  /*line-height: 42px;*/
  line-height: 36px;
  position: absolute;
  text-align: center;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.14);
  top: 10px;
  /*width: 42px;*/
  width: 36px;
  z-index: 5;
}

.product .product-popular {
  background-color: #1A5D1A;
}

.product .product-popular {
  border-radius: 12px 0 0;
  bottom: 0px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  height: 36px;
  line-height: 36px;
  position: absolute;
  right: 0px;
  text-align: center;
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.14);
  width: 80px;
  z-index: 5;
}

a.termek-link:link {
  color: #000000 !important;
}

a.termek-link:visited {
  color: #000000 !important;
}

a.termek-link:hover {
  font-weight: bold !important;
}

a.termek-link:active {
  font-weight: bold !important;
}


/* TABS */
.tabs .nav-tabs .nav-link.active {
  /*color: #2250fc;*/
  color: #b99039;
  background-color: transparent;
  /*border-bottom: 2px solid #2250fc;*/
  border-bottom: 2px solid #b99039;
}

.tabs.tabs-vertical .nav-tabs .nav-link.active {
  /*color: #2250fc;*/
  color: #b99039;
  background-color: transparent;
  /*border-right: 2px solid #2250fc;*/
  border-right: 2px solid #b99039;
}

.tabs.tabs-folder .tab-content {
  margin-top: -1px;
  /*border: 1px solid #e4e6ef;*/
  border: 1px solid #b99039;
  bottom: 10px;
  padding: 30px;
  border-radius: 0 6px 6px 6px;
}

.tabs.tabs-folder .nav-tabs .nav-link.active {
  /*border-color: #e4e6ef;*/
  border-color: #b99039;
  border-bottom-color: #fff;
}

/* NAV-LINK */
.nav-link:hover {
  /*color: #3c4043;*/
  color: #b99039 !important;
}

.tabs.tabs-folder .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Navigation button of Carousel slider */
.flickity-button {
  background: #fff;
  /*width: 40px;
  height: 40px;
  line-height: 40px;*/
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
  /*margin: -23px 0 0;*/
  margin: -20px 0 0 !important;
  display: block;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all .2s ease 0s;
  transition: all .2s ease 0s;
  color: #1e2022;
  text-align: center;
  z-index: 200;
  border: 0;
  box-sizing: initial;
  opacity: 0;
  border-radius: 50%;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.1);
}

  .flickity-button.next:before {
    /*margin-left: 4px;*/
    margin-left: 1px !important;
    content: "\e930";
  }


/* Search Link */
a.search-link:link {
  color: #000000 !important;
}

a.search-link:visited {
  color: #000000 !important;
}

a.search-link:hover {
  font-weight: bold !important;
}

a.search-link:active {
  font-weight: bold !important;
}

/* Section Title */
.title-section {
  color: #b99039;
  background-color: #ffffff;
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: normal;
  padding: 3px 3px 5px;
  text-align: center;
  letter-spacing: 3px;
}

/* Progress bar - Checkout steps - Desktop */
#progress-bar-desktop {
  display: table;
  width: 100%;
  margin: 0;
  padding: 15px 15px 0;
  table-layout: fixed;
  width: 100%;
  counter-reset: step;
}

  #progress-bar-desktop li {
    list-style-type: none;
    display: table-cell;
    width: 20%;
    float: left;
    /*font-size: 16px;*/
    font-size: 13px; /* mobile 10px */
    text-transform: uppercase;
    position: relative;
    text-align: center;
  }

    #progress-bar-desktop li:before {
      width: 50px; /* mobile 40px  */
      height: 50px; /* mobile 40px */
      color: #212121;
      content: counter(step);
      counter-increment: step;
      line-height: 50px; /* mobile 40px */
      font-size: 18px; /* mobile 16px */
      border: 1px solid #efefef;
      display: block;
      text-align: center;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      /*background-color: #fff;*/
      background-color: #f2ead9;
    }

    #progress-bar-desktop li:after {
      width: 100%;
      height: 10px;
      content: '';
      position: absolute;
      /*background-color: #fff;*/
      background-color: #f2ead9;
      /*top: 25px;*/
      top: 20px; /* mobile 15px */
      left: -50%;
      z-index: -1;
    }

    #progress-bar-desktop li:first-child:after {
      content: none;
    }

    #progress-bar-desktop li.step-done {
      color: #b99039;
    }

      #progress-bar-desktop li.step-done:before {
        border-color: #b99039;
        background-color: #b99039;
        color: #fff;
        /*content: "\f00c";
        font-family: "FontAwesome";*/
        content: counter(step);
      }

      #progress-bar-desktop li.step-done + li:after {
        background-color: #b99039;
      }

    #progress-bar-desktop li.step-active {
      color: #b99039;
    }

      #progress-bar-desktop li.step-active:before {
        border-color: #b99039;
        color: #b99039;
        font-weight: 700;
      }

/* Progress bar - Checkout steps - Mobile */
#progress-bar-mobile {
  display: table;
  width: 100%;
  margin: 0;
  padding: 15px 15px 0;
  table-layout: fixed;
  width: 100%;
  counter-reset: step;
}

  #progress-bar-mobile li {
    list-style-type: none;
    display: table-cell;
    width: 20%;
    float: left;
    /*font-size: 16px;*/
    font-size: 10px; /* desktop 13px */
    text-transform: uppercase;
    position: relative;
    text-align: center;
  }

    #progress-bar-mobile li:before {
      width: 40px; /* desktop 50px  */
      height: 40px; /* desktop 50px */
      color: #212121;
      content: counter(step);
      counter-increment: step;
      line-height: 40px; /* desktop 50px */
      font-size: 16px; /* desktop 18px */
      border: 1px solid #efefef;
      display: block;
      text-align: center;
      margin: 0 auto 10px auto;
      border-radius: 50%;
      /*background-color: #fff;*/
      background-color: #f2ead9;
    }

    #progress-bar-mobile li:after {
      width: 100%;
      height: 10px;
      content: '';
      position: absolute;
      /*background-color: #fff;*/
      background-color: #f2ead9;
      /*top: 25px;*/
      top: 15px; /* desktop 20px */
      left: -50%;
      z-index: -1;
    }

    #progress-bar-mobile li:first-child:after {
      content: none;
    }

    #progress-bar-mobile li.step-done {
      color: #b99039;
    }

      #progress-bar-mobile li.step-done:before {
        border-color: #b99039;
        background-color: #b99039;
        color: #fff;
        /*content: "\f00c";
        font-family: "FontAwesome";*/
        content: counter(step);
      }

      #progress-bar-mobile li.step-done + li:after {
        background-color: #b99039;
      }

    #progress-bar-mobile li.step-active {
      color: #b99039;
    }

      #progress-bar-mobile li.step-active:before {
        border-color: #b99039;
        color: #b99039;
        font-weight: 700;
      }

/* Footer Link */
a.footer-link:link {
  color: #999 !important;
}

a.footer-link:visited {
  color: #999 !important;
}

a.footer-link:hover {
  color: #b99039 !important;
}

a.footer-link:active {
  color: #fff !important;
}

/* Image resize 66% center */
.resized-image-66 {
  width: 66%;
  float: none !important;
  margin: 0 auto;
}

/* Configure & Price */
.controlContainer {
  margin-right: 50px;
  float: left;
}

/* Tavolsag a fokep es a miniatur kepek kozott */
.zoomNavigatorWrapper {
  /*margin-top: 10px;*/
  margin-top: 30px;
}

.formLayoutWrapper {
  float: left;
}

/* Legordulo listaban a betumeret csokkentese */
.dxeButtonEdit_iOS {
  /*background: white;
  border: 1px solid #C8C8CD;
  width: 170px;
  font: 14px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;*/
  font: 13px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
}

/* Az ImageZoomNavigator navigacios gombjainak elrejtese */
.dxWeb_isPrevPageBtnHorOutside_iOS, 
.dxWeb_isPrevPageBtnHorOutsideDisabled_iOS,
.dxWeb_isNextPageBtnHorOutside_iOS, 
.dxWeb_isNextPageBtnHorOutsideDisabled_iOS {
  display: none;
}

/* Az ImageZoomNavigator 530px meretu Image keretenek az eltavolitasa */
.dx-contentBox {
  border: none !important;
}

/* DevExpress controljaiban levo alapszinek csereje */
/* DevExpress iOS ComboList*/
.dxeListBoxItemSelected_iOS, 
.dxeListBoxItemSelected_iOS.dxeListBoxItemHover_iOS
{
  background-color: var(--nyb-gold);
  color: white;
}

.dxeButtonEditButtonHover_iOS, 
.dxeSpinIncButtonHover_iOS, 
.dxeSpinDecButtonHover_iOS, 
.dxeSpinLargeIncButtonHover_iOS, 
.dxeSpinLargeDecButtonHover_iOS {
  /*background-color: #007BF7;*/
  background-color: var(--nyb-gold);
  color: white;
}

.dxeFocused_iOS {
  border-color: var(--nyb-gold);
}

.dxisControl_iOS 
.dxis-nbSelectedItem {
  z-index: 1;
  cursor: default;
  position: absolute;
  /*border: 2px solid #007BF7;*/
  border: 2px solid var(--nyb-gold);
  background-color: rgba(255, 255, 255, 0);
}

.dxisControl_iOS 
.dxis-nbItem 
.dxis-nbHoverItem {
  display: none;
  position: absolute;
  /*border: 2px solid #007BF7;*/
  border: 2px solid #b99039; 
}

.dxeButtonEditButtonPressed_iOS,
.dxeSpinIncButtonPressed_iOS,
.dxeSpinDecButtonPressed_iOS,
.dxeSpinLargeIncButtonPressed_iOS,
.dxeSpinLargeDecButtonPressed_iOS,
.dxeColorEditButton_iOS:active {
  background-color: var(--nyb-light-gold);
  color: white;
}

/* A sprite által befolyásolt elemek */
.dxdd-root.dxmodalSys .dx-acc-r .dxEditors_edtCalendarFNNextPeriod_iOS, .dxdd-root.dxmodalSys .dx-acc-r .dxEditors_edtCalendarFNPrevPeriod_iOS, .dxdd-root.dxmodalSys .dx-acc-r .dxEditors_edtCalendarNextMonth_iOS, .dxdd-root.dxmodalSys .dx-acc-r .dxEditors_edtCalendarNextYear_iOS, .dxdd-root.dxmodalSys .dx-acc-r .dxEditors_edtCalendarPrevMonth_iOS, .dxdd-root.dxmodalSys .dx-acc-r .dxEditors_edtCalendarPrevYear_iOS, .dxdd-root.dxmodalSys .dxEditors_edtCalendarFNNextPeriod_iOS, .dxdd-root.dxmodalSys .dxEditors_edtCalendarFNPrevPeriod_iOS, .dxdd-root.dxmodalSys .dxEditors_edtCalendarNextMonth_iOS, .dxdd-root.dxmodalSys .dxEditors_edtCalendarNextYear_iOS, .dxdd-root.dxmodalSys .dxEditors_edtCalendarPrevMonth_iOS, .dxdd-root.dxmodalSys .dxEditors_edtCalendarPrevYear_iOS, .dxeButtonEditButtonHover_iOS .dxEditors_edtClear_iOS, .dxeButtonEditButtonHover_iOS .dxEditors_edtDropDown_iOS, .dxeButtonEditButtonHover_iOS .dxEditors_edtEllipsis_iOS, .dxeButtonEditButtonPressed_iOS .dxEditors_edtDropDown_iOS, .dxeButtonEditButtonPressed_iOS .dxEditors_edtEllipsis_iOS, .dxEditors_caRefresh_iOS, .dxEditors_ddapply_iOS, .dxEditors_ddclose_iOS, .dxEditors_edtBinaryImageDelete_iOS, .dxEditors_edtBinaryImageOpenDialog_iOS, .dxEditors_edtCalendarFastNavBackToPrevMode_iOS, .dxEditors_edtCalendarFastNavBackToPrevModeRtl_iOS, .dxEditors_edtCalendarFNNextPeriod_iOS, .dxEditors_edtCalendarFNNextYear_iOS, .dxEditors_edtCalendarFNPrevPeriod_iOS, .dxEditors_edtCalendarFNPrevYear_iOS, .dxEditors_edtCalendarNextMonth_iOS, .dxEditors_edtCalendarNextMonthDisabled_iOS, .dxEditors_edtCalendarNextYear_iOS, .dxEditors_edtCalendarNextYearDisabled_iOS, .dxEditors_edtCalendarPrevMonth_iOS, .dxEditors_edtCalendarPrevMonthDisabled_iOS, .dxEditors_edtCalendarPrevYear_iOS, .dxEditors_edtCalendarPrevYearDisabled_iOS, .dxEditors_edtClear_iOS, .dxEditors_edtDETSClockFace_iOS, .dxEditors_edtDETSHourHand_iOS, .dxEditors_edtDETSMinuteHand_iOS, .dxEditors_edtDETSSecondHand_iOS, .dxEditors_edtDropDown_iOS, .dxEditors_edtDropDownDisabled_iOS, .dxEditors_edtEllipsis_iOS, .dxEditors_edtEllipsisDisabled_iOS, .dxEditors_edtError_iOS, .dxEditors_edtListBoxFilterBtn_iOS, .dxEditors_edtListBoxFilterBtnDisabled_iOS, .dxEditors_edtListBoxHideFilterBtn_iOS, .dxEditors_edtListBoxHideFilterBtnDisabled_iOS, .dxEditors_edtListBoxHideFilterBtnRtl_iOS, .dxEditors_edtListBoxHideFilterBtnRtlDisabled_iOS, .dxEditors_edtRadioButtonChecked_iOS, .dxEditors_edtRadioButtonCheckedDisabled_iOS, .dxEditors_edtRadioButtonUnchecked_iOS, .dxEditors_edtRadioButtonUncheckedDisabled_iOS, .dxEditors_edtSpinEditDecrementImage_iOS, .dxEditors_edtSpinEditDecrementImageDisabled_iOS, .dxEditors_edtSpinEditIncrementImage_iOS, .dxEditors_edtSpinEditIncrementImageDisabled_iOS, .dxEditors_edtSpinEditLargeDecImage_iOS, .dxEditors_edtSpinEditLargeDecImageDisabled_iOS, .dxEditors_edtSpinEditLargeIncImage_iOS, .dxEditors_edtSpinEditLargeIncImageDisabled_iOS, .dxEditors_edtTBDecBtn_iOS, .dxEditors_edtTBIncBtn_iOS, .dxEditors_edtTokenBoxTokenRemoveButton_iOS, .dxEditors_edtTokenBoxTokenRemoveButtonDisabled_iOS, .dxEditors_fcadd_iOS, .dxEditors_fcaddhot_iOS, .dxEditors_fcdatetimeoperators_iOS, .dxEditors_fcgroupaddcondition_iOS, .dxEditors_fcgroupaddgroup_iOS, .dxEditors_fcgroupand_iOS, .dxEditors_fcgroupnotand_iOS, .dxEditors_fcgroupnotor_iOS, .dxEditors_fcgroupor_iOS, .dxEditors_fcgroupremove_iOS, .dxEditors_fcopany_iOS, .dxEditors_fcopavg_iOS, .dxEditors_fcopbegin_iOS, .dxEditors_fcopbetween_iOS, .dxEditors_fcopblank_iOS, .dxEditors_fcopcontain_iOS, .dxEditors_fcopcount_iOS, .dxEditors_fcopend_iOS, .dxEditors_fcopequal_iOS, .dxEditors_fcopexists_iOS, .dxEditors_fcopgreater_iOS, .dxEditors_fcopgreaterorequal_iOS, .dxEditors_fcopisapril_iOS, .dxEditors_fcopisaugust_iOS, .dxEditors_fcopisbeyondthisyear_iOS, .dxEditors_fcopisdecember_iOS, .dxEditors_fcopisearlierthismonth_iOS, .dxEditors_fcopisearlierthisweek_iOS, .dxEditors_fcopisearlierthisyear_iOS, .dxEditors_fcopisfebruary_iOS, .dxEditors_fcopisjanuary_iOS, .dxEditors_fcopisjuly_iOS, .dxEditors_fcopisjune_iOS, .dxEditors_fcopislastmonth_iOS, .dxEditors_fcopislastweek_iOS, .dxEditors_fcopislastyear_iOS, .dxEditors_fcopislaterthismonth_iOS, .dxEditors_fcopislaterthisweek_iOS, .dxEditors_fcopislaterthisyear_iOS, .dxEditors_fcopismarch_iOS, .dxEditors_fcopismay_iOS, .dxEditors_fcopisnextmonth_iOS, .dxEditors_fcopisnextweek_iOS, .dxEditors_fcopisnextyear_iOS, .dxEditors_fcopisnovember_iOS, .dxEditors_fcopisoctober_iOS, .dxEditors_fcopispriorthisyear_iOS, .dxEditors_fcopissameday_iOS, .dxEditors_fcopisseptember_iOS, .dxEditors_fcopisthismonth_iOS, .dxEditors_fcopisthisweek_iOS, .dxEditors_fcopisthisyear_iOS, .dxEditors_fcopistoday_iOS, .dxEditors_fcopistomorrow_iOS, .dxEditors_fcopisyeartodate_iOS, .dxEditors_fcopisyesterday_iOS, .dxEditors_fcopless_iOS, .dxEditors_fcoplessorequal_iOS, .dxEditors_fcoplike_iOS, .dxEditors_fcopmax_iOS, .dxEditors_fcopmin_iOS, .dxEditors_fcopnotany_iOS, .dxEditors_fcopnotbetween_iOS, .dxEditors_fcopnotblank_iOS, .dxEditors_fcopnotcontain_iOS, .dxEditors_fcopnotequal_iOS, .dxEditors_fcopnotlike_iOS, .dxEditors_fcopsum_iOS, .dxEditors_fcoptypefield_iOS, .dxEditors_fcoptypefieldhot_iOS, .dxEditors_fcoptypevalue_iOS, .dxEditors_fcoptypevaluehot_iOS, .dxEditors_fcremove_iOS, .dxEditors_fcremovehot_iOS, .dxeSpinDecButtonHover_iOS .dxEditors_edtSpinEditDecrementImage_iOS, .dxeSpinDecButtonPressed_iOS .dxEditors_edtSpinEditDecrementImage_iOS, .dxeSpinIncButtonHover_iOS .dxEditors_edtSpinEditIncrementImage_iOS, .dxeSpinIncButtonPressed_iOS .dxEditors_edtSpinEditIncrementImage_iOS, .dxeSpinLargeDecButtonHover_iOS .dxEditors_edtSpinEditLargeDecImage_iOS, .dxeSpinLargeDecButtonPressed_iOS .dxEditors_edtSpinEditLargeDecImage_iOS, .dxeSpinLargeIncButtonHover_iOS .dxEditors_edtSpinEditLargeIncImage_iOS, .dxeSpinLargeIncButtonPressed_iOS .dxEditors_edtSpinEditLargeIncImage_iOS, .dxeTBDecBtnHover_iOS.dxEditors_edtTBDecBtn_iOS, .dxeTBDecBtnPressed_iOS.dxEditors_edtTBDecBtn_iOS, .dxeTBIncBtnHover_iOS.dxEditors_edtTBIncBtn_iOS, .dxeTBIncBtnPressed_iOS.dxEditors_edtTBIncBtn_iOS, .dxeTrackBar_iOS.dxeDisabled_iOS .dxEditors_edtTBDecBtn_iOS, .dxeTrackBar_iOS.dxeDisabled_iOS .dxEditors_edtTBIncBtn_iOS, .dxgvFocusedRow_iOS .dxEditors_edtRadioButtonChecked_iOS {
  /*background-image: url(/DXR.axd?r=0_1380-OIUMp);*/
  background-image: url(/images/DXR.png) !important;
  background-repeat: no-repeat;
  background-color: transparent;
}

/* Szöveg sorkizárt formában */
.text-justify {
  text-align: justify;
}

/* Textbox backcground color */
/*.dxeTextBox_iOS {
  background: white;
  background: var(--nyb-light-gold) !important;
  border: 1px solid #C8C8CD;
  font: 14px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
  .dxeTextBox_iOS .dxeEditArea_iOS {
    background-color: white;
    background-color: var(--nyb-light-gold) !important;
  }*/

/* Background color */
/*.dxeTrackBar_iOS, .dxeIRadioButton_iOS, .dxeButtonEdit_iOS, .dxeTextBox_iOS, .dxeRadioButtonList_iOS, .dxeCheckBoxList_iOS, .dxeMemo_iOS, .dxeListBox_iOS, .dxeCalendar_iOS, .dxeColorTable_iOS {
  -webkit-tap-highlight-color: transparent;
  background-image: url(/images/DXR.png) !important;
  background-repeat: no-repeat;
  background-color: transparent;
}*/

/* internal-autofill-selected color */
/*input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;*/
  /*background-color: light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;*/
  /*background-color: var(--nyb-light-gold) !important;*/
  /*background-color: #f3efe7 !important;
  color: fieldtext !important;
}*/

/*.dxeTextBox_iOS {
  background: white;
  border: 1px solid #C8C8CD;
  font: 14px 'Segoe UI', Helvetica, 'Droid Sans', Tahoma, Geneva, sans-serif;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  background-color: #f3efe7 !important;
}*/

/* menupontok kozotti tavolsag minimalizalasa */
#mainMenu nav > ul > li {
  float: left;
  border: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  /* margin-left: 6px; */
   margin-left: 0px;
  position: relative;
}

/*.szin-selected {
  border: 1px solid var(--nyb-gold) !important;

  background-color: #fff;
  border-color: #b99039;
  color: #b99039;
  border-width: 1px;
  border-style: solid;*/
  /*width: 80px;*/
  /*height: 40px;
  margin: 5px;
}*/

.rounded {
  /*border-radius: .42rem !important;*/
  border-radius: 1.0rem !important;
}

.custom-spin-edit {
  width: 100px; /* Desktop */
}

/* Mobil */
@media (max-width: 600px) {
  .custom-spin-edit {
    width: 150px;
  }
}


@media (max-width: 768px) {
  #footer .copyright-content {
    min-height: 200px;
    padding: 30px 0px 60px 0px;
    background-color: #f1f1f3;
    font-size: 13px;
  }
}

/* Hide the page completely during printing */
@media print {
  html, body {
    display: none;
  }
}
