/**
 * Component: Dropdown
 * --------------------------------------------------
 */
.c-dropdown {
	position: relative;
	display: block;
	text-align: left;
	line-height: 20px;
}

.c-dropdown__list {
	margin: 0.05rem 0 0 0.07rem;
	padding: 0.14rem 0.08rem;
	list-style: none;
	position: absolute;
	top: 125%;
	left: 0;
	width: calc(100% - 0.14rem);
	opacity: 0;
	visibility: hidden;
	border-radius: 3px;
	background: #fff;
	-webkit-transition: opacity 0.25s linear, top 0.25s linear;
	transition: opacity 0.25s linear, top 0.25s linear;
	background: #F7F7F7;
	box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0,0,0,0.16);
	border-radius: 0.15rem 0.15rem 0.15rem 0.15rem;
	border: 0.01rem solid #E2E2E2;
	box-sizing: border-box;
}

.c-dropdown.is-open .c-dropdown__list {
	opacity: 1;
	visibility: visible;
	top: 0.08rem;
}

.c-dropdown__item {
	font-size: 0.16rem;
	padding-left: 0.15rem;
	line-height: 33px;
	cursor: pointer;
	color: #434a54;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-transition: background-color 0.25s linear;
	transition: background-color 0.25s linear;
	border-radius: 0.06rem;
}

.c-dropdown__item:hover {
	background-color: rgba(74, 142, 103, 1);
	color: #fff;
}

/**
 * Component: Button
 * --------------------------------------------------
 */


.c-button {
	min-width: 200px;
	-webkit-appearance: none;
	margin: 0;
	border: 0;
	overflow: visible;
	font: inherit;
	text-transform: none;
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	text-align: left;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	line-height: 0.63rem;
}

.c-button:hover,
.c-button:focus {
	outline: none;
	text-decoration: none;
}

.c-button:not(:disabled) {
	cursor: pointer;
}

/**
 * Component: Button
 * Modifier: Dropdown
 * --------------------------------------------------
 */
.c-button--dropdown {
	width: 4.87rem;
	height: 0.63rem;
	background: #F8F8F8;
	border-radius: 0rem 0rem 0rem 0rem;
	border: 0.01rem solid #D8D8D8;
	padding-left: 0.12rem;
	box-sizing: border-box;
	font-family:'MiSans, MiSans' !important;
	font-weight: 400;
	font-size: 0.18rem;
	color: #0F0F0F;
}

.c-button--dropdown:hover {
	/* background-color: #ac92ec; */
}

.c-button--dropdown:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.28rem;
	width: 0;
	height: 0;
	border: 0.1rem solid transparent;
	border-top-color: rgba(51, 51, 51, 1);
	transform: translateY(-20%);
}
@media only screen and (max-width: 768px) {
    .header-logo-phone{
        margin-top: 5rem;
    }
}