/* button styles */

.ce_hyperlink a,
a.btn {
	background: rgb(0,159,227);
	border-color: rgb(0,159,227);
}


.ce_hyperlink a.link-white,
a.btn.link-white {
	color: rgb(30,136,210);
}

.ce_hyperlink a.link-white:hover,
a.btn.link-white:hover {
	background: rgb(30,136,210);
}

.ce_hyperlink a.outline,
a.btn.outline {
	color: rgb(30,136,210);
}

/* =============================================================================
 * ce_hyperlink
 * ========================================================================== */

.ce_hyperlink a.fa {
	font-family: inherit;
	line-height: inherit;
}

.ce_hyperlink a.fa:before {
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	margin-right: 5px;
}

/* color */
.ce_hyperlink.btn-accent a {
	background: rgb(152,152,152);
	border-color: rgb(152,152,152);
}

.ce_hyperlink.btn-accent-outline a {
	border-color: rgb(152,152,152);
	color: rgb(152,152,152);
	background: transparent;
}

.ce_hyperlink.btn-second a {
	background: rgb(152,152,152);
	border-color: rgb(152,152,152);
}

.ce_hyperlink.btn-second-outline a {
	border-color: rgb(152,152,152);
	color: rgb(152,152,152);
	background: transparent;
}

.ce_hyperlink.btn-white a {
	background: rgb(255,255,255);
	border-color: rgb(255,255,255);
}

.ce_hyperlink.btn-white-outline a {
	border-color: rgb(255,255,255);
	color: rgb(255,255,255);
	background: transparent;
}

.ce_hyperlink.btn-gray a {
	background: rgb(248,248,248);
	border-color: rgb(248,248,248);
}

.ce_hyperlink.btn-gray-outline a {
	border-color: rgb(248,248,248);
	color: rgb(248,248,248);
	background: transparent;
}

.ce_hyperlink.btn-black a {
	background: rgb(0,0,0);
	border-color: rgb(0,0,0);
}

.ce_hyperlink.btn-black-outline a {
	border-color: rgb(0,0,0);
	color: rgb(0,0,0);
	background: transparent;
}

.ce_hyperlink.btn-trnsp a {
	background: transparent;
	border-color: transparent;
	color: inherit;
}

.ce_hyperlink.btn-trnsp-white a {
	background: transparent;
	border-color: transparent;
}

/* size */
.ce_hyperlink.btn-size-small a {
	padding: 5px 15px;
	border-width: 1px;
	font-size: 0.85rem;
}

.ce_hyperlink.btn-size-medium a {
	padding: 8px 20px;
}

.ce_hyperlink.btn-size-large a {
	padding: 20px 30px;
	font-size: 1.1em;
}

.ce_hyperlink.btn-size-full a {
	display: block;
}

.ce_hyperlink.btn-size-textlink a {
	background: transparent!important;
	padding: 0;
	min-width: 0;
}


.ce_hyperlink.btn-animated i {
	opacity: 0;
	width: 0;
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
}

/* icon */
.ce_hyperlink i {
	margin-right: 10px;
}

.ce_hyperlink.btn-animated a:hover i {
    opacity: 1;
    width: 16px;
}

/* border-radius */
.ce_hyperlink.btn-radius-3 a {
	border-radius: 3px;
}

.ce_hyperlink.btn-radius-5 a {
	border-radius: 5px;
}

.ce_hyperlink.btn-radius-10 a {
	border-radius: 10px;
}

.ce_hyperlink.btn-radius-20 a {
	border-radius: 20px;
}

/* inline */
.ce_hyperlink.h-align-inline {
	display: inline-block;
	margin-right: 5px;
}
/* =============================================================================
 * ce_hyperlink
 * ========================================================================== */

.ce_hyperlink a,
a.btn {
	display: inline-block;
	padding: 12px 20px;
	margin-bottom: 15px;
	cursor:pointer;
	transition:all 0.2s ease-out 0s;
	width: auto;
	background: rgb(0,159,227);
	border: 2px solid rgb(0,159,227);
	color: #fff;
	font-weight: bold;
	min-width: 140px;
	text-align: center!important;
	position: relative;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    font-size: 0.9rem;
	text-decoration: none;
}

.ce_hyperlink a:hover,
a.btn:hover {
	opacity: 0.8;
}

.ce_hyperlink a.link-white,
a.btn.link-white {
	color: rgb(152,152,152);
	border: 2px solid rgb(255,255,255);
	background: rgb(255,255,255);
}

.ce_hyperlink a.link-white:hover,
a.btn.link-white:hover {
	background: rgb(152,152,152);
	color: rgb(255,255,255);
}

.ce_hyperlink a.link-white.outline,
a.btn.link-white.outline {
	color: rgb(255,255,255);
}

.ce_hyperlink a.link-white.outline:hover,
a.btn.link-white.outline:hover {
	background: rgb(255,255,255);
	border-color: rgb(255,255,255);
	color: rgb(37,37,37);
}

.ce_hyperlink a.outline,
a.btn.outline {
	background: transparent;
	color: rgb(152,152,152);
}

.ce_hyperlink a.outline:hover,
a.btn.outline:hover {
	background: rgb(37,37,37);
	border-color: rgb(37,37,37);
	color: rgb(255,255,255);
}

.ce_hyperlink i {
	margin-right: 5px;
}

.ce_hyperlink.small a,
a.btn.small {
	padding: 9px 15px;
	font-size: 0.75rem;
}

.ce_hyperlink.large a,
a.btn.large {
	padding: 20px 30px;
}

.ce_hyperlink.wide a,
a.btn.large {
	padding: 15px 50px;
}

.ce_hyperlink.expand a,
a.btn.expand {
	width: 100%;
}

.ce_hyperlink a.success,
a.btn.success {
	background: rgb(157,213,93);
	border-color: rgb(157,213,93);
}

.ce_hyperlink a.secondary,
a.btn.secondary {
	background: rgb(231,231,231);
	border-color: rgb(231,231,231);
	color: rgb(51,51,51);
}

.ce_hyperlink a.alert,
a.btn.alert {
	background: rgb(247,80,90);
	border-color: rgb(247,80,90);
}

.ce_hyperlink a.warning,
a.btn.warning {
	background: rgb(240,138,36);
	border-color: rgb(240,138,36);
}

.ce_hyperlink a.info,
a.btn.info {
	background: rgb(160,211,232);
	border-color: rgb(160,211,232);
	color: rgb(51,51,51);
}

.ce_hyperlink a.success:hover, a.btn.success:hover,
.ce_hyperlink a.secondary:hover, a.btn.secondary:hover,
.ce_hyperlink a.alert:hover, a.btn.alert:hover,
.ce_hyperlink a.warning:hover, a.btn.warning:hover,
.ce_hyperlink a.info:hover, a.btn.info:hover {
	opacity: 0.8;
}

.ce_hyperlink.border-radius-3 a,
a.btn.border-radius-3 {
	border-radius: 3px;
}

.ce_hyperlink.border-radius-5 a,
a.btn.border-radius-5 {
	border-radius: 5px;
}

.ce_hyperlink.border-radius-10 a,
a.btn.border-radius-10 {
	border-radius: 10px;
}

.ce_hyperlink.border-radius-20 a,
a.btn.border-radius-20 {
	border-radius: 20px;
}

.ce_text a.btn {
	margin-top: 15px;
}

.ce_hyperlink.btn-animated i {
	opacity: 0;
	width: 0;
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
}

.ce_hyperlink.btn-animated a:hover i {
    opacity: 1;
    width: 16px;
}
/* Ende hyperlinks und buttons */

/* neu TM */

.expand a,
a.expand {
	width: 100%;
}

/* =============================================================================
 * lists w/font-icon
 * ========================================================================== */

.ce_list li.fa {
	display: block;
	margin-bottom: 4px;
	font-family: inherit;
}

.ce_list li.fa:before {
	margin-left: -25px;
	margin-right: 10px;
	width: 26px;
	font-family: "Font Awesome 5 Free";
	font-weight:900;
}

/* =============================================================================
 * lists_v2
 * ========================================================================== */

.ce_list.list-style2 li,
.ce_list.list-style2 li.fa,
.ce_list.style2 li,
.ce_list.style2 li.fa  {
	font-size: 1.3rem;
	margin-bottom: 5px;
}

.ce_list.list-style2 li:after,
.ce_list.style2 li:after {
	display: none;
}

/* =============================================================================
 * lists_v3
 * ========================================================================== */

.ce_list.list-style3 li,
.ce_list.list-style3 li.fa,
.ce_list.style3 li,
.ce_list.style3 li.fa {
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.ce_list.list-style3 li:after,
.ce_list.style3 li:after {
	display: none;
}

.ce_list.list-style3 li.fa:before,
.ce_list.style3 li.fa:before {
	position: absolute;
	left: -40px;
	width: 30px;
	margin-left: 0;
}

.ce_list.list-style3 ul,
.ce_list.style3 ul {
	padding-left: 40px;
}



/* ############ */

.ce_list.list-style2 li.fa:before {
	color: rgb(30,136,210);
}

.ce_list.list-style3 li.fa:before {
	color: rgb(30,136,210);
}

.ce_list li.fa {
	margin-bottom: 20px;
	font-size: 1rem;
	position: relative;
	font-family: inherit;
}

.ce_list li.fa:before {
	font-family: "Font Awesome 5 Free";
	font-weight:900;}

.ce_list li.fa:after {
	content: "";
	width: 70px;
	height: 1px;
	background: rgba(0,0,0,.08);
	position: absolute;
	left: -26px;
	bottom: -11px;
}

a.btn.btn-extended {width: 100%;padding: 8px 20px;
}