#dialog_container {
	font-family: 'Proxima Nova Rg';
	letter-spacing: -0.2px;
	font-size: 0.82vw;
	background: rgba(30, 28, 26, 0.9);
	margin: 0;
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	padding: 1vw 1.5vw;
	min-width: 40vh;
	max-width: 120vh;
	width: auto;
	border-radius: 0.2vw;
	background-image: url(../images/bg.png);
	background-size: 200vh;
	/*-webkit-background-size: 500px;*/
	background-size: 500px;
	background-position: absolute;
	background-repeat: no-repeat;
	opacity: 0;
	animation: dia 0.15s forwards;
    z-index: 1000;
}
.dialogHeader {
    font-size: 1.4vw;
    color: #fb9c44;
    font-family: 'Locomotype GigaSansBold';
    text-align: left;
    letter-spacing: -0.5px;
    text-transform: uppercase;  
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dialogHeader::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)); /* Градиент для затемнённого хвоста */
    align-self: center;
    display: block;
    margin-bottom: 7px; /* Поднимаем линию чуть выше */
}

.buttons {
	margin-top: 15px;
	display: flex;
	justify-content: center;
	user-select: none;
}

.clickBtn1 {
	padding: 15px 100px;
	color: white;
	border-radius: 3px;
	font-family: 'Proxima Nova Bold';
	font-size: 0.95vw;
	text-align: center;
	transition: all 0.3s;
	background: linear-gradient(250deg, #50b846, #25913c);
	transition: ease-out 0.3s;
	text-transform: uppercase; 
	width: 100%;
}

.clickBtn2 {
	background: #5a5a5e;
	padding: 15px 100px;
	margin-left: 10px;
	color: #c0bfc4;
	border-radius: 3px;
	font-family: 'Proxima Nova Bold';
	font-size: 0.95vw;
	text-align: center;
	transition: all 0.3s;
	transition: ease-out 0.3s;
	text-transform: uppercase; 
	width: 100%;
}


.dialog_input {
	width: 97%;
	background-color: black;
	outline: 0;
	border: 1px solid rgba(58, 58, 58, 0.2);
	font-family: 'Proxima Nova Sm';
	padding: 10px 10px;
	margin-top: 10px;
	 border-radius: 3px;
	letter-spacing: -0.5px;
	font-size: 0.85vw;
	color: #252525;
}

.dialogItem {
	background-color: #151517;
	/* margin-bottom: 5px; */
	border: 1px solid rgba(30, 30, 30, 0.164);
	border-bottom: 0;
	padding: 11px 15px;
	text-align: center;
	min-width: 320px;
	color: #fff;
	border-radius: 3.5px;
	font-family: 'Proxima Nova Bold';
	letter-spacing: -0.5px;
	font-size: 15px;
	opacity: 0.9;
	margin-bottom: 2.5px;

	transition: 0.3s;
}

.dialogItem:last-child {
	border-bottom: 1px solid rgba(30, 30, 30, 0.164);
}

.dialogItem:hover {
	background-color: rgba(43, 43, 43, 1);
	/*color: #fff;*/
}

.tablist_headers {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	align-self: end;
}

.dialogItemHeader {
	margin-left: 10px;
	min-width: 200px;
	margin-right: 10px;
}

.styleDialogTablist {
	padding-left: 10px;
	padding-right: 10px;
	font-size: 0.85vw;
	color: #fff;
	letter-spacing: -0.5px;
	opacity: 0.6;
	text-transform: uppercase;
	border-radius: 9px;

	transition: 0.5s;
	margin-bottom: 10px;
}

.dialogText {
	max-height: 500px;
	width: 100%;
	margin-top: 10px;
	color: #f8f8f8;
	font-family: 'Proxima Nova Bold';
	font-size: 1.5dvh;
	overflow-y: auto;
	text-align: left;
}

span {
	color: var(--i);
	transition: 0.4s;
}

.dialogItem:hover span {
	color: var(--g);
}

::-webkit-scrollbar {
	position: absolute;
	width: 3px;
	right: 0;
}

::-webkit-scrollbar-track {
	background: rgba(35, 36, 40, 0.15);
}

::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.5);
}

.active_text {
	color: #fff;
	/*color: var(--b);*/
}

.white_back {
	background-color: #fb9c44;
	color: #000;
	border: 1px solid #fb9c44;
}

.white_back:hover {
	background-color: #fb9c44;
}

.white_back:hover span {
	color: #fff;
}

.noback {
	background: none;
	border: 0;
}

@keyframes dia {
  0% {opacity: 0;}
  100% {opacity: 1;}
}