.wrapper{
    width: 370px;
    background: var(--fekete3);
    border-radius: 5px;
    border: 1px solid var(--fekete);
    border-top: 0px;
	position:fixed;
	bottom: calc(3.2vw + 60px);
	right:10px;
	z-index: 10;
}
.wrapper .title{
    background: var(--sotet-fekete);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid var(--fekete2);
    border-radius: 5px 5px 0 0;
}
.wrapper .wrapper-form{
    padding: 20px 15px;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
}
.wrapper .wrapper-form .inbox{
    width: 100%;
    display: flex;
    align-items: baseline;
}
.wrapper .wrapper-form .user-inbox{
    justify-content: flex-end;
    margin: 13px 0;
}
.wrapper .wrapper-form .inbox .icon{
    height: 40px;
    width: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 18px;
    background: var(--fekete);
}
.wrapper .wrapper-form .inbox .msg-header{
    max-width: calc(95% - 40px);
    margin-left: 10px;
	text-shadow: none;
}
.wrapper-form .inbox .msg-header p{
    color: #fff;
    background: var(--sotet-fekete);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 14px;
    /*word-break: break-all;*/
}
.wrapper-form .user-inbox .msg-header p{
    color: #333;
    background: #efefef;
}
.wrapper .typing-field{
    display: flex;
    height: 60px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    background: var(--sotet-fekete);
    border-top: 1px solid var(--fekete2);
    border-radius: 0 0 5px 5px;
}
.wrapper .typing-field .input-data{
    height: 40px;
    width: 365px;
    position: relative;
}
.wrapper .typing-field .input-data input{
    height: 100%;
    width: calc(100% - 100px);
    outline: none;
    border: 1px solid var(--sotet-fekete);
    padding: 0 80px 0 15px;
    border-radius: 3px;
    font-size: 15px;
    background: transparent;
    transition: all 0.3s ease;
	color: var(--sarga);
}
.typing-field .input-data input:focus{
    border-color: var(--sarga);
}
.input-data input::placeholder{
    color: #999999;
    transition: all 0.3s ease;
}
.input-data input:focus::placeholder{
    color: #bfbfbf;
}
.wrapper .typing-field .input-data button{
    position: absolute;
    right: 5px;
    top: 50%;
    height: 30px;
    width: 65px;
    color: var(--sarga);
    font-size: 16px;
    cursor: pointer;
    outline: none;
    opacity: 0;
    pointer-events: none;
    border-radius: 3px;
    background: var(--sotetfekete);
    border: 1px solid var(--fekete2);
    transform: translateY(-50%);
    transition: all 0.3s ease;
}
.wrapper .typing-field .input-data input:valid ~ button{
    opacity: 1;
    pointer-events: auto;
}
.typing-field .input-data button:hover{
    background: var(--sarga);
}
#bottom-keret{
	position: fixed;
	bottom: 5px;
	right: 5px;
	z-index: 1;
	display: flex;
	flex-flow: column;
	grid-gap: 5px;
	align-items: center;
}
.chatbot{
	width: 60px;
}
.newsletter{
	background: #FCCE0D;
	border-radius: 50%;
	text-decoration: none;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #191919;
}
.newsletter img{
	width: 30px;
	height: 30px;
}
@media screen and (max-width: 1000px)
{
	#bottom-keret{
		flex-flow: row nowrap;
	}
	.wrapper{
		bottom: calc(2.0vw + 60px);
		width: 95%;
	}
	.wrapper .typing-field .input-data{
		height: 40px;
		width: calc(100% - 5px);
		position: relative;
	}
	.wrapper .wrapper-form 
	{
		min-height: 54vh;
	}
}