

/*
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*/

@import url("css2.css");
html {
	box-sizing: border-box;
}

body {}

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

#chatbot {
	height: 100%;
	width: 100%;
	font-family: "Roboto", "sans-serif";
}

#bot-button {
	height: 70px;
	width: 70px;
	border-radius: 50px;
	position: fixed;
	right: 100px;
	bottom: 35px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	z-index: 10000000;
	cursor: pointer;
	overflow: hidden;
}

#bot-button img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

#bot-close-button {
	height: 20px;
	width: 20px;
	border-radius: 10px;
	position: fixed;
	right: 5px;
	bottom: 100px;
	background-color: white;
	box-shadow: 0 0 15px rgb(0 0 0 / 30%);
	background-image: url("2cffc87c50fa4efe15305cb8af32fad543c653a9.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	cursor: pointer;
}

#bot-button::before {
	content: "Máte otázku k datovým schránkám?";
	position: fixed;
	bottom: 10px;
	right: 10px;
	background: #ecae1a;
	padding: 10px;
	color: rgb(59, 59, 59);
	border-radius: 5px;
	font-size: 14px;
	font-weight: bold;
}

@media screen and (max-width: 640px) {
	.chat {
		width: 90% !important;
		height: 90% !important;
		bottom: 0 !important;
		right: 0 !important;
		z-index: 300;
	}
	#bot-button {
		height: 25vw;
		width: 25vw;
		border-radius: 15vw;
		right: 16vw;
		bottom: 5vw;
	}
	#bot-close-button {
		height: 10vw;
		width: 10vw;
		border-radius: 5vw;
		right: 1vw;
		bottom: 31vw;
	}
}

@media screen and (max-height: 650px) and (orientation: landscape) {
	.chat {
		width: 50% !important;
		height: 90% !important;
		bottom: 0 !important;
		z-index: 300;
	}
	#bot-button {
		height: 20vh;
		width: 20vh;
		border-radius: 15vh;
		right: 20vh;
		bottom: 7vh;
	}
	#bot-close-button {
		height: 5vw;
		width: 5vw;
		border-radius: 3vw;
		right: 1vw;
		bottom: 13vw;
	}
}

.chat {
	display: flex;
	flex-flow: column wrap;
	justify-content: space-between;
	margin: 25px 10px;
	background: whitesmoke;
	box-shadow: 2px 2px 15px 2px rgba(0, 0, 0, 0.2);
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 400px;
	height: 600px;
	border-radius: 3px;
	z-index: 300;
}

.chat-header {
	padding: 10px;
	background: #2362a2;
	color: white;
	border-top-right-radius: 3px;
	border-top-left-radius: 3px;
}

.chat-header-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.chat-header-title {
	font-size: 15px;
	font-weight: bold;
	position: absolute;
	left: 67px;
	top: 24px;
	letter-spacing: 1.05px;
	padding-right: 50px;
}

.chat-header-close {
	position: absolute;
	top: 15px;
	right: 15px;
}

#close-button {
	border: none;
	cursor: pointer;
	background: transparent;
	padding: 0px;
}

.msg-url-icon {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url("");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: transparent;
	position: relative;
	top: 3px;
	margin-right: 5px;
}

.chat-close-icon {
	width: 20px;
	height: 20px;
	background-image: url("");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: transparent;
	margin-top: 8px;
}

.chat-canvas {
	flex: 1;
	overflow-y: auto;
	padding: 10px;
	background-color: rgb(245, 245, 245);
	border-radius: 3px;
}

.chat-canvas::-webkit-scrollbar {
	width: 6px;
}

.chat-canvas::-webkit-scrollbar-track {
	background: #ddd;
}

.chat-canvas::-webkit-scrollbar-thumb {
	background: #bdbdbd;
}

.msg {
	display: flex;
	align-items: flex-end;
	margin-bottom: 10px;
}

.msg-text ul {
	padding: 12px 0px 0px 16px;
}

.msg:last-of-type {
	margin: 0;
}

.msg-img {
	width: 30px;
	height: 30px;
	margin-right: 10px;
	background: #ddd;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 50%;
}

.msg-bubble {
	max-width: 300px;
	padding: 10px 16px;
	border-radius: 3px;
	font-size: 15px;
	line-height: 1.1;
	min-height: 40px;
}

.msg-bubble-error {
	max-width: 300px;
	padding: 10px 16px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1.1;
	min-height: 40px;
}

.msg-bubble:focus {
	outline: none;
}

.button-option {
	font-family: "Roboto", "sans-serif";
	margin: 2px;
	background: #254e80 !important;
	color: white !important;
	cursor: pointer;
	border-radius: 4px;
	border-width: 0;
	font-size: 12px;
	text-transform: uppercase;
}

.button-option:hover {
	background: #3077b7 !important;
}

.buttons-msg {
	justify-content: center;
	flex-wrap: wrap;
}

.left-msg .msg-bubble {
	background: white;
	color: rgb(104, 104, 104);
	max-width: 300px;
}

.left-msg .msg-bubble-error {
	background: white;
	color: red;
	max-width: 300px;
}

.right-msg {
	flex-direction: row-reverse;
}

.right-msg .msg-bubble {
	background: #254e80!important;
	color: white !important;
	font-size: 12px;
	text-transform: uppercase;
	max-width: 300px;
}

.right-msg .msg-img {
	margin: 0 0 0 10px;
}

.msg-bubble .msg-text a {
	text-decoration: underline;
	font-weight: bold;
	color: rgb(23, 79, 185);
	position: relative;
	bottom: 2px;
}

DIV.msg-bubble .msg-text {
	padding-top: 3px;
	padding-bottom: 3px;
}

.ticontainer {
	padding-top: 2px;
	padding-bottom: 3px;
}

.chat-inputarea {
	display: flex;
	padding: 5px;
	height: 35px;
	background: #2362a2;
	border-radius: 0px 0px 3px 3px
}

.chat-inputarea * {
	border: none;
	height: 36px;
	border-radius: 3px;
	font-size: 1em;
}

.chat-inputs {
	flex-grow: 2;
	margin-right: 10px;
}

.chat-inputs * {
	width: 100%;
	height: 100%;
	padding: 10px;
}

.chat-input {
	background: #ddd;
	display: none;
}

.chat-select {
	background: #ddd;
	margin-right: 10px;
}

.chat-send-btn {
	margin-left: 10px;
	cursor: pointer;
	transition: background 0.23s;
	background-image: url("");
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: transparent;
	position: absolute;
	right: 15px;
	bottom: 10px;
}

.chat-livechat-btn {
	margin-left: 10px;
	cursor: pointer;
	transition: background 0.23s;
	background-image: url("");
	height: 30px;
	width: 30px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: transparent;
	position: absolute;
	right: 15px;
	bottom: 10px;
}

.msg-text ul {
	padding: 12px 0px 0px 16px;
}

.msg-text p {
	margin-bottom: 0px;
	line-height: 16.5px;
}

.msg-bubble {
	padding-top: 12px!important;
}

.chat-context-btn {
	margin: 0px 10px 0px 0px;
	cursor: pointer;
	transition: background 0.23s;
	background-image: url("");
	height: 20px;
	width: 20px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: transparent;
}


/* typing indicator - start */

.tiblock {
	align-items: center;
	display: flex;
	height: 17px;
}

.ticontainer .tidot {
	background-color: #90949c;
}

.tidot {
	-webkit-animation: mercuryTypingAnimation 1.5s infinite ease-in-out;
	border-radius: 2px;
	display: inline-block;
	height: 4px;
	margin-right: 2px;
	width: 4px;
}

@-webkit-keyframes mercuryTypingAnimation {
	0% {
		-webkit-transform: translateY(0px);
	}
	28% {
		-webkit-transform: translateY(-5px);
	}
	44% {
		-webkit-transform: translateY(0px);
	}
}

.tidot:nth-child(1) {
	-webkit-animation-delay: 200ms;
}

.tidot:nth-child(2) {
	-webkit-animation-delay: 300ms;
}

.tidot:nth-child(3) {
	-webkit-animation-delay: 400ms;
}


/* typing indicator - end */


/* React menu section - start */

.szh-menu-container {
	position: relative;
	width: 0px;
	height: 0px;
	z-index: 301;
}

.szh-menu {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
	width: max-content;
	position: absolute;
	z-index: 100;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background-color: #fff;
}

.szh-menu:focus {
	outline: none;
}

.szh-menu--state-closed {
	display: none;
}

.szh-menu__arrow {
	box-sizing: border-box;
	width: 0.75rem;
	height: 0.75rem;
	background-color: #fff;
	border: 1px solid transparent;
	border-left-color: rgba(0, 0, 0, 0.1);
	border-top-color: rgba(0, 0, 0, 0.1);
	position: absolute;
	z-index: -1;
}

.szh-menu__arrow--dir-left {
	right: -0.375rem;
	transform: translateY(-50%) rotate(135deg);
}

.szh-menu__arrow--dir-right {
	left: -0.375rem;
	transform: translateY(-50%) rotate(-45deg);
}

.szh-menu__arrow--dir-top {
	bottom: -0.375rem;
	transform: translateX(-50%) rotate(-135deg);
}

.szh-menu__arrow--dir-bottom {
	top: -0.375rem;
	transform: translateX(-50%) rotate(45deg);
}

.szh-menu__item {
	cursor: pointer;
}

.szh-menu__item:before {
	background-color: transparent;
}

.szh-menu__item:focus {
	outline: none;
}

.szh-menu__item--hover {
	background-color: #ebebeb;
}

.szh-menu__item--focusable {
	cursor: default;
	background-color: inherit;
}

.szh-menu__item--disabled {
	cursor: default;
	color: #aaa;
}

.szh-menu__submenu {
	position: relative;
}

.szh-menu__group {
	box-sizing: border-box;
}

.szh-menu__radio-group {
	margin: 0;
	padding: 0;
	list-style: none;
}

.szh-menu__divider {
	height: 1px;
	margin: 0.5rem 0;
	background-color: rgba(0, 0, 0, 0.12);
}

.szh-menu-button {
	box-sizing: border-box;
	padding: 0px;
}

.szh-menu-button:hover {
	background-color: inherit!important;
}

.szh-menu-button:focus {
	box-shadow: none!important;
	border-color: inherit!important;
}

.szh-menu {
	user-select: none;
	color: #212529;
	border: none;
	border-radius: 0.25rem;
	box-shadow: 0 3px 7px rgba(0, 0, 0, 0.133), 0 0.6px 2px rgba(0, 0, 0, 0.1);
	min-width: 10rem;
	padding: 0.5rem 0;
}

.szh-menu__item {
	display: flex;
	align-items: center;
	position: relative;
	padding: 0.375rem 1.5rem;
	font-family: "Roboto", "sans-serif";
	font-size: 14px;
}

.szh-menu-container--itemTransition .szh-menu__item {
	transition-property: background-color, color;
	transition-duration: 0.15s;
	transition-timing-function: ease-in-out;
}

.szh-menu__item--active {
	color: #fff;
	background-color: #007bff;
}

.szh-menu__item--type-radio {
	padding-left: 2.2rem;
}

.szh-menu__item--type-radio::before {
	content: "â—‹";
	position: absolute;
	left: 0.8rem;
	top: 0.55rem;
	font-size: 0.8rem;
}

.szh-menu__item--type-radio.szh-menu__item--checked::before {
	content: "â—Ź";
}

.szh-menu__item--type-checkbox {
	padding-left: 2.2rem;
}

.szh-menu__item--type-checkbox::before {
	position: absolute;
	left: 0.8rem;
}

.szh-menu__item--type-checkbox.szh-menu__item--checked::before {
	content: "âś”";
}

.szh-menu__submenu>.szh-menu__item {
	padding-right: 2.5rem;
}

.szh-menu__submenu>.szh-menu__item::after {
	content: "âťŻ";
	position: absolute;
	right: 1rem;
}

.szh-menu__header {
	color: #888;
	font-size: 0.8rem;
	padding: 0.2rem 1.5rem;
	text-transform: uppercase;
}

@keyframes szh-menu-show-slide-left {
	from {
		opacity: 0;
		transform: translateX(0.75rem);
	}
}

@keyframes szh-menu-hide-slide-left {
	to {
		opacity: 0;
		transform: translateX(0.75rem);
	}
}

@keyframes szh-menu-show-slide-right {
	from {
		opacity: 0;
		transform: translateX(-0.75rem);
	}
}

@keyframes szh-menu-hide-slide-right {
	to {
		opacity: 0;
		transform: translateX(-0.75rem);
	}
}

@keyframes szh-menu-show-slide-top {
	from {
		opacity: 0;
		transform: translateY(0.75rem);
	}
}

@keyframes szh-menu-hide-slide-top {
	to {
		opacity: 0;
		transform: translateY(0.75rem);
	}
}

@keyframes szh-menu-show-slide-bottom {
	from {
		opacity: 0;
		transform: translateY(-0.75rem);
	}
}

@keyframes szh-menu-hide-slide-bottom {
	to {
		opacity: 0;
		transform: translateY(-0.75rem);
	}
}

.szh-menu--state-opening.szh-menu--dir-left {
	animation: szh-menu-show-slide-left 0.15s ease-out;
}

.szh-menu--state-closing.szh-menu--dir-left {
	animation: szh-menu-hide-slide-left 0.15s ease-in;
}

.szh-menu--state-opening.szh-menu--dir-right {
	animation: szh-menu-show-slide-right 0.15s ease-out;
}

.szh-menu--state-closing.szh-menu--dir-right {
	animation: szh-menu-hide-slide-right 0.15s ease-in;
}

.szh-menu--state-opening.szh-menu--dir-top {
	animation: szh-menu-show-slide-top 0.15s ease-out;
}

.szh-menu--state-closing.szh-menu--dir-top {
	animation: szh-menu-hide-slide-top 0.15s ease-in;
}

.szh-menu--state-opening.szh-menu--dir-bottom {
	animation: szh-menu-show-slide-bottom 0.15s ease-out;
}

.szh-menu--state-closing.szh-menu--dir-bottom {
	animation: szh-menu-hide-slide-bottom 0.15s ease-in;
}


/* Arrow */

.arrow {
	font-size: 80px;
	color: #e50019;
}

.arrow-text {
	color: #e50019;
	font-size: larger;
	font-weight: 900;
}

.arrow-group {
	animation: bounce 1s infinite alternate;
	-webkit-animation: bounce 1s infinite alternate;
	display: inline-flex;
	position: absolute;
	bottom: 25px;
	left: 10px;
}

@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}


/* React menu section - end */