.container-background {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 100000000000000000;
  }
  
  .container-popup h1 {
      font-weight: bold;
      margin: 0;
    font-size: 2rem !important;
  }
  
  .container-popup h2 {
      text-align: center;
  }
  
  .container-popup p {
      font-size: 12px;
      font-weight: 100;
      line-height: 20px;
      letter-spacing: 0.5px;
      margin: 20px 0 30px;
  }
  
  .container-popup span {
      font-size: 12px;
  }
  
  .container-popup a {
      color: #333;
      font-size: 14px;
      text-decoration: none;
      margin: 15px 0;
  }
  
  .container-popup button {
      border-radius: 5px;
      border: 1px solid #fecd08;
      background-color: #fecd08;
      color: #FFFFFF;
      font-size: 12px;
      font-weight: bold;
      padding: 12px 45px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: transform 80ms ease-in;
  }
  
  .container-popup button:active {
      transform: scale(0.95);
  }
  
  .container-popup button:focus {
      outline: none;
  }
  
  .container-popup button.ghost {
    background-color: #FFF;
    color: #fecd08;
    border-color: #FFFFFF;
  }
  
  .container-popup form {
      background-color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 0 50px;
      height: 100%;
      text-align: center;
  }
  
  .container-popup input {
      background-color: #eee;
      /* border: none; */
      padding: 12px 15px;
      margin: 8px 0;
      width: 100%;
  }
  
  .container-popup {
      background-color: #fff;
      border-radius: 5px;
        box-shadow: 0 14px 28px rgba(0,0,0,0.25),
              0 10px 10px rgba(0,0,0,0.22);
      position: relative;
      overflow: hidden;
      width: 768px;
      max-width: 100%;
    min-height: 500px;
    margin: 100px auto;
  }
  
  .form-container {
      position: absolute;
      top: 0;
      height: 100%;
      transition: all 0.6s ease-in-out;
  }
  
  .sign-in-container {
      left: 0;
      width: 50%;
      z-index: 2;
  }
  
  .container-popup.right-panel-active .sign-in-container {
      transform: translateX(100%);
  }
  
  .sign-up-container {
      left: 0;
      width: 50%;
      opacity: 0;
      z-index: 1;
  }
  
  .container-popup.right-panel-active .sign-up-container {
      transform: translateX(100%);
      opacity: 1;
      z-index: 5;
      animation: show 0.6s;
  }
  
  @keyframes show {
      0%, 49.99% {
          opacity: 0;
          z-index: 1;
      }
  
      50%, 100% {
          opacity: 1;
          z-index: 5;
      }
  }
  
  .overlay-container {
      position: absolute;
      top: 0;
      left: 50%;
      width: 50%;
      height: 100%;
      overflow: hidden;
      transition: transform 0.6s ease-in-out;
      z-index: 100;
  }
  
  .container-popup.right-panel-active .overlay-container{
      transform: translateX(-100%);
  }
  
  .overlay {
      background: #fecd08;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 0 0;
      color: #FFFFFF;
      position: relative;
      left: -100%;
      height: 100%;
      width: 200%;
        transform: translateX(0);
      transition: transform 0.6s ease-in-out;
  }
  
  .container-popup.right-panel-active .overlay {
        transform: translateX(50%);
  }
  
  .overlay-panel {
      position: absolute;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      padding: 0 40px;
      text-align: center;
      top: 0;
      height: 100%;
      width: 50%;
      transform: translateX(0);
      transition: transform 0.6s ease-in-out;
  }
  
  .overlay-left {
      transform: translateX(-20%);
  }
  
  .container.right-panel-active .overlay-left {
      transform: translateX(0);
  }
  
  .overlay-right {
      right: 0;
      transform: translateX(0);
  }
  
  .container.right-panel-active .overlay-right {
      transform: translateX(20%);
  }
  
  .social-container {
    max-width: 230px;
    margin: 0 auto;
    margin-top: 25px;
  }
  
  .social-container a {
    border: 1px solid #DDDDDD;
      border-radius: 5px;
      display: inline-flex;
      justify-content: start;
      align-items: center;
      margin: 0;
      font-weight: bold;
      height: 35px;
      width: 100%;
  }
  
  .social-container .icon-redirect {
    width: 50px;
  }
  .social-container .icon-redirect img {
    height: 20px;
  }

  .close-icon {
    right: 0;
    position: absolute;
    padding: 15px 25px;
    color: #414141;
    cursor: pointer;
    font-size: 25px;
}
  @media only screen and (max-width: 500px) {
    #input-rodzaj_nieruchomosci {
      justify-content: flex-start !important;
      overflow-x: auto;
    }
  
    #input-nieruchomosc_w_budowie {
      display: grid !important;
    }
  
    #input-konstrukcja_nieruchomosci {
      display: grid !important;
    }
  
    #input-nieruchomosc_w_budowie.d-none {
      display: none !important;
    }
  
    #input-konstrukcja_nieruchomosci.d-none {
      display: none !important;
    }
  
    .overlay-container {
      display: none !important;
    }
    .container-popup {
      height: 100% !important;
      margin-top: 0 !important;
      border-radius: 0 !important;
    }
    .sign-in-container {
      width: 100% !important;
    }
    .ghost-border {
      display: block !important;
    }
    .container-finish-header h1 {
      font-size: 16pt !important;
    }
    .container-buttons {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
    .container-buttons .btn{
      margin-left: 2px !important;
      margin-right: 2px !important;
    }
    .form-inline {
      display: inherit !important;
      justify-content: center;
      margin-top: 30px;
    }
    input[name="phone"] {
      margin: auto !important;
    }
    .form-inline .btn {
      margin: 10px auto !important;
      display: block;
    }
    .container-header {
      background-color: #f5f5f5;
      padding-top: 30px !important;
    }
    .content-pakiet {
      margin-top: 30px;
    }
    .content-opinie {
      margin-top: 0 !important;
    }
    .content-header {
      font-size: 6vw !important;
    }
    .content-header h1 {
      display: inline;
      font-size: 6vw !important;
    }
    .content-header h2 {
      display: inline;
      font-size: 6vw !important;
    }
    .navbar-container {
      height: 70px !important;
    }
    .logo img {
      height: 90px;
      width: auto;
    }
    .card img {
      height: 120px !important;
      width: auto !important;
    }
    .card-slice img {
      height: 120px !important;
      width: auto !important;
    }
    .card {
      margin: 50px 8px 25px 8px !important;
      min-width: 145px !important;
      max-width: 145px !important;
      height: 250px !important
    }
    .card-slice {
      margin: 50px 8px 25px 8px !important;
      min-width: 145px !important;
      max-width: 145px !important;
      height: 250px !important
    }
  
    .card:first-child {
      margin-left: 0 !important;
    }
  
    .card:last-child {
      margin-right: 0 !important;
    }
  
    .txt-large {
      display: none !important;
    }
  
    .txt-small {
      display: block !important;
    }
    .container-opinie {
      margin-top: 25px !important;
      padding-top: 30px !important;
      margin-bottom: 0 !important;
    }
    .txt-small h2 {
      text-align: center !important;
      font-size: 1.2em !important;
    }
    .footer-contact {
      text-align: left !important;
    }
    .count-zam {
      height: 1.35em !important;
      width: 1.35em !important;
      top: 35px !important;
    }
    .opinie {
      margin: 0;
      padding: 0;
      margin-bottom: 20px;
    }
    .old-box {
      top: -18px !important;
      width: 80px !important;
      font-size: 9.5pt !important;
    }
    .continue-without-interaction {
      padding: 12px 20px !important;
    }

    .continue-without-interaction-p {
      font-size: 10px !important;
      bottom: 50px !important;
    }
  }
  
.card h1 {
  padding-top: 0 !important;
}

.container-popup button:disabled {
  opacity: 0.75;
}

#kt_modal_login_form {
    z-index: 999999;
}

.modal-backdrop.show {
    z-index: 9999;
}