/* dropdown */
#header .b2contact-dropdown__content .material-icons {
	line-height: 2rem;
}

.b2contact-dropdown {
	position: relative;
	display: inline-block;
}

.b2contact-dropdown__toggle {
	display: flex;
	align-items: center;
	padding: 0;
	cursor: pointer;
	background: none;
	border: none;
	border-radius: 0.5rem;
	outline: none;
}

.b2contact-dropdown__toggle:focus {
	outline: none;
}

.b2contact-dropdown__toggle .material-icons {
	padding: 0;
	font-size: 1.5rem;
	color: #232323;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}

.b2contact-dropdown__menu {
	position: absolute;
	top: 120%;
	right: 0;
	z-index: 10;
	display: flex;
	flex-direction: column;
	width: max-content;
	padding: 2rem;
	overflow: hidden;
	pointer-events: none;
	background: #232323;
	box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.12);
	opacity: 0;
	transition: max-height 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.16s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(-0.5rem);
}

.b2contact-dropdown__menu.is-open {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

.b2contact-dropdown__header {
	margin-bottom: 0.5rem;
	padding-bottom: .6rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: #dbdbdb;
    word-break: break-all;
    text-align: center;
    width: 100%;
}

.b2contact-dropdown__content {
	display: flex;
	gap: .8rem;
	align-items: center;
	color: #232323;
	text-decoration: none;
	background: none;
	border: none;
	transition: background 0.16s;
	padding: 1rem 1rem 1rem .2rem;
}

.b2contact-dropdown__content .material-icons {
	font-size: 1.8rem;
	color: #24b9d7;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
@media (max-width: 767.98px) {
	.b2contact-dropdown__menu {
		position: fixed;
		top: 10%;
		right: 0;
		left: 5%;
		width: 90%;
		min-width: unset;
		max-width: none;
		margin: 0;
	}
}

/* FIREMNÍ STRANKA */

.company-page {
    max-width: 100%; 
    margin: 0 auto; 
    padding: 20px;
}

.company-page__section {
    margin-top: 2rem;
}

.company-page__section-title {
    font-size: 2rem;
    text-align: center;
    text-decoration: underline;
    line-height: 1.2;
}

.company-page__section-header {
    padding: 1rem;
    background-color: #3E3E3F;
    color: #fff;
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.b2contact-vertical-alignment {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.company-page__contact-form {
	background-color: rgb(249 249 249); 
	padding: 20px; 
	border-radius: 10px; 
	border: 1px solid #ccc;
}
.company-page__contact-form-header{
	text-align: center;
	font-size: 1.5rem;
	text-decoration: underline;
}
