/*  ===========================================================================  
    Buttons
    =========================================================================== */

.cidk-button-area {
	display: flex;
	justify-content: space-between;
}

.cidk-button-area > * {
	flex: 1;
	margin-right: 1.5rem;
}

.cidk-button-area > *:last-child {
	margin-right: 0;
}

.cidk-btn {
	display: block;
	box-sizing: border-box;
	width: 100%;
	border-radius: 0.125rem;
	border: none;
	letter-spacing: 1.8px;
	font-size: 0.875rem;
	font-family: 'VWAGTheSans-Bold', 'HelveticaNeue', 'Helvetica Neue', Helvetica,
		Arial, sans-serif;
	line-height: 2.5rem;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1), 0 3px 4px 0 rgba(0, 0, 0, 0.08),
		0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

.cidk-btn--primary {
	background-color: #004666;
	color: #fff;
}

.cidk-btn--primary:hover,
.cidk-btn--primary:active,
.cidk-btn--primary:focus {
	background-color: #006384;
}

.cidk-btn--secondary {
	background-color: #edf0f2;
	color: #34393b;
}

.cidk-btn--secondary:hover,
.cidk-btn--secondary:active,
.cidk-btn--secondary:focus {
	background-color: #dadde0;
}

.cidk-btn--disabled {
	background-color: #edf0f2;
	color: #34393b;
	opacity: 0.5;
	pointer-events: none;
}

.cidk-social-providers-btn-wrapper {
	margin-bottom: 1rem;
}

.cidk-btn-link-style {
	background: none;
	border: none;
	box-shadow: none;
	width: auto;
	display: inline-flex;
	color: #004666;
}

.cidk-btn--secondary-white {
	background-color: #fff;
	color: #34393b;
	border: solid 1px #004666;
}

.cidk-btn--secondary-white:hover,
.cidk-btn--secondary-white:active,
.cidk-btn--secondary-white:focus {
	background-color: #004666;
	color: #fff;
}
