
.button-items,
.button-items * {
	box-sizing: border-box;
}

.button-items {
	margin: 32px 0;
	display: flex;
	flex-wrap:  wrap;
}

.btn-rounded {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 20px;
	appearance: none;
	margin: 8px;
	height: 50px;
	border-radius: 25px;
	width: calc(100% - 16px);
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1.2;
	transition: opacity 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	font-size: 18px;
}

.btn-rounded > span {
	flex: 1 auto;
}

.btn-rounded:hover {
	opacity: .5;
}

.btn-realtime {
	background-color: #fff;
	border: 3px solid #f0027f;
	color: #f0027f;
	font-weight: 600;
	padding-right: 17px;
}

.btn-realtime > .icon-triangle {
	background-color: #f0027f;
}

.btn-tver {
	background-color: #58a9e1;
	color: #fff;
	font-weight: 600;
}

.btn-telasa {
	background-color: #eb5505;
	color: #fff;
	font-weight: 600;
}

.btn-tver,
.btn-telasa {
	flex-grow: 1;
	flex-shrink: 1;
	flex-basis: calc(50% - 16px);
}


.btn-tver > .icon-triangle,
.btn-telasa > .icon-triangle {
	border: solid 2px #fff;
}

.icon-triangle {
	position: relative;
	box-sizing: border-box;
	border-radius: 100%;
	width: 25px;
	height: 25px;
}

.icon-triangle::after {
	position: absolute;
	content: "";
	top: 50%;
	left: 50%;
	transform: translate(-35%, -50%);
	-webkit-transform: translate(-35%, -50%);
	-ms-transform: translate(-35%, -50%);
	border-left: 7px solid #fff;
	border-top: calc(7px / 1.73) solid transparent;
	border-bottom: calc(7px / 1.73) solid transparent;
	height: 0;
	width: 0;
}
