@charset "utf-8";

.fill_flat_button
{
	position: relative;
	
	width: 100%;
	height: var(--fill-flat-button-height);

	color: #ffffff;
	background: var(--color-800);
}

.fill_flat_button ._text {
	position: absolute;
	
	left: 50%;
	top: 50%;

	transform: translate(-50%, calc(-50% + 1px));

	font-size: 1.5rem;
}



.section_page_button
{
	position: relative;
	
	/*text-align: left;*/
	
	width: 100%;
	height: var(--section-page-button-height);

	/*
	color: var(--gray-700);
	background: #ffffff;
	*/
	
	font-size: 1.4rem;
	
	color: var(--color-900);
	
	background: var(--color-100);

	border-top: 1px solid var(--color-300);
}

.section_page_button ._wrap {
	
	position: absolute;
	left: 50%;
	top: 50%;
	
	transform: translate(calc(-50%), calc(-50%));
	
	display: inline-flex;
    flex: 1;
    /*justify-content: space-between;*/
    /*justify-content: center;*/
    align-items: center;
    
    
    transition-property: left, transform;
	transition-duration: 200ms, 200ms;
	transition-timing-function: linear;
}

.section_page_button:hover ._wrap {

	left: 10px;
	transform: translate(0, calc(-50%));
	
	/*margin*/
	
	/*transform: translateX(calc(-100% + 1px));*/
}


.section_page_button ._text {
	/*
	position: absolute;
	
	left: 50%;
	top: 50%;

	transform: translate(-50%, calc(-50% + 1px));

	font-size: 1.5rem;
	*/
}

.section_page_button:hover ._text {

	/*color: var(--color-700);*/
}

.section_page_button:active ._text {

	/*transform: translate(calc(-50% + 1px), calc(-50% + 2px));*/
}

.section_page_button ._arrow_icon_box {
	
	margin-right: 10px;
	
	width: calc(74.5px * 0.5);
	height: calc(50px * 0.5);
}




.step_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	
	
	/*padding: 0 6px;*/
	/*
	background-color: #216b82;
	border: 2px solid #216b82;
    */
    background-color: #227dc0;
	/*border: 2px solid #227dc0;*/
    border: none;
    
    color: #fff;
    border-radius: 4px;
    cursor: pointer;

    font-size: 1.3rem;
    font-weight: 500;
    max-width: inherit;
    min-height: inherit;
    
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    text-decoration: none;
    
    /*
    box-shadow: 0 1px 2px 0 rgb(60 64 67 / 30%), 0 1px 3px 1px rgb(60 64 67 / 15%);
	*/
}

.step_button > * {
	pointer-events: none;
}

.step_button:hover {
	background-color: #268ad3;
    border-color: #268ad3;
}

.step_button:active {
	background-color: #145789;
    border-color: #145789;
}

.step_button:active > ._box {
	margin: 2px 0 0 1px;
}



._round_button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;

	padding: 0 10px;

	height: 2rem;

	color: #fff;
    border-radius: 1rem;
    cursor: pointer;
    
    font-size: 1.2rem;
}
._round_button:active {
	transform: translate(1px, 1px);
}


.btn-primary {
    background-image: linear-gradient(to bottom,#428bca 0,#2d6ca2 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff428bca', endColorstr='#ff2d6ca2', GradientType=0);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    background-repeat: repeat-x;
    border-color: #2b669a;
}

.btn-danger, .btn-default, .btn-info, .btn-primary, .btn-success, .btn-warning {
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.08);
	/*
    text-shadow: 0 -1px 0 rgb(0 0 0 / 20%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 15%), 0 1px 1px rgb(0 0 0 / 8%);
	*/
}

.btn-primary {
    color: #fff;
    background-color: #428bca;
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



