
.hide-popup {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
    -moz-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
    -o-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0.8) !important;
  }
  
  .close-popup {
      position: absolute;
      right: 0;
      top: 0;
      width: 44px;
      height: 44px;
      font-size: 0;
      cursor: pointer;
  }
  
  .close-popup:before, .close-popup:after {
      content: '';
      position: absolute;
      background: #000;
      -moz-border-radius: 1px;
      -webkit-border-radius: 1px;
      -o-border-radius: 1px;
      border-radius: 1px;
      left: 14px;
      right: 14px;
      top: 20px;
      height: 2px;
      border-radius: 2px;
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg);
      transition: all 100ms ease-in;
      -moz-transition: all 100ms ease-in;
      -webkit-transition: all 100ms ease-in;
      -o-transition: all 100ms ease-in;
  }
  
  .close-popup:after {
       -moz-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
  }
  
  .info-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      width: 100%;
      max-width: 340px;
      text-align: center;
      -webkit-transform: translateX(-50%) translateY(-50%);
      -moz-transform: translateX(-50%) translateY(-50%);
      -o-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      background: #FAFAFB;
      -moz-border-radius: 18px;
      -o-border-radius: 18px;
      -webkit-border-radius: 18px;
      border-radius: 18px;
      width: 600px;
      box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.09), 0px 11px 12px 7px rgba(0, 0, 0, 0.02);
      -moz-transition: all 120ms;
      -webkit-transition: all 120ms;
      -o-transition: all 120ms;
      transition: all 120ms;
      z-index: 1111;
    padding: 16px;
    color: #141414;
  }
  
  @media screen and (max-width: 1000px) {
    .info-popup {
      width: 80%;
    }
  }
  
  .info-popup-header {
    text-transform: capitalize; 
    margin-bottom: 20px;
    color: #141414;
    font-weight: 500;
    font-size: 26px;
  }
  
  .info-popup-body {
    padding:0 0 10px;
    line-height: 1.3;
  }
  
  .popup-button {
    width: 100%;
    border: 0px;
    min-height: 56px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    padding: 10px 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--base-color);
    text-transform: uppercase;
    background-color: transparent;
    transition: all 120ms ease-in;
    outline:none;
  }  
  .popup-button:hover {
    transform: translateY(-1px);
  }  
  .popup-button:active, .button:visited {
    transform: translateY(1px);
    outline:none; 
  }
  .info-popup-footer .popup-button:nth-child(2){
    background: var(--pink-color);
  }

  .info-popup-footer-one-button button {
    background: var(--pink-color);
    margin-top:10px;
  }
  .info-popup-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
  }
  
  .popup-backdrop {
    position: fixed;
    background-color: rgba(0,0,0,0.5);
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .hide-backdrop {
    display: none;
  }

  .lang_app {
    display: inline-block;
    color: var(--base-color);
    background-color: #E7E7E7;
    padding: 10px;
    border-radius: 8px;
  }