#ptse_user_popup
{
	position:fixed;
	top:50%;
	left:50%;
	margin:-150px 0 0 -250px;
	height:300px;
	width:500px;
	border-radius:3px;
	background:white;
	z-index:203;
	display:none;
}
#ptse_user_fader
{
	position:fixed;
	top:0;
	left:0;

	height:100%;
	width:100%;
	background: black;
	opacity:50%;
	z-index:202;
	display:none;
}
.ptse-user-close-button {
    /* Базовые сбросы кнопки */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 50%;

    /* Размеры кнопки */
    width: 40px;
    height: 40px;

    /* Цвет иконки по умолчанию */
    color: #64748b;

    /* Плавные переходы */
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.1s ease;
	position:absolute;
	right:10px;
	top:5px;
  }

  /* SVG масштабируется под размеры кнопки */
  .ptse-user-close-button svg {
    width: 24px;
    height: 24px;
  }

  /* Эффект при нажатии */
  .ptse-user-close-button:active {
    transform: scale(0.92);
  }
