@charset "UTF-8";

.btn-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}

.btn-wrap.cg_10 {
	column-gap: 10px;
}

.btn-wrap input[type=button],
.btn-wrap input[type=submit] {
	font-size: 24px;
	font-weight: 700;
}

.btn-default {
	width: 100px;
	height: 44px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #dbdbdb;
	border-radius: 30px;
	color: #707070;
	font-size: 18px;
}

.btn-default:not(.btn-gray) {
    cursor: pointer;
}

.btn-default-s {
	width: 110px !important;
}

.btn-default_2 {
	width: 110px;
	height: 48px;
	border-radius: 5px;
	background: #fff;
	border: 1px solid #111;
	padding: 8px 14px;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	word-break: keep-all;
}

.btn-default_2:hover {
	background: #111;
	color: #fff;
	transition: all 0.2s;
}

.btn-default_2 span {
	flex-shrink: 0;
}

.btn-common {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	background: #fff;
	border-radius: 10px;
	border: 1px solid #111;
}

.btn-common svg {
	width: 32px;
	height: 32px;
}

.btn-common span {
	font-size: 24px;
	color: #111;
	font-weight: 500;
}

.btn-common:hover {
	background: #111;
	transition: all 0.2s;
}

.btn-common:hover span {
	color: #fff;
	transition: all 0.2s;
}

.btn-common:hover svg path {
	fill: #fff;
	transition: all 0.2s;
}

.btn-common:hover svg g rect {
	fill: #fff;
	transition: all 0.2s;
}

.btn-common-l {
	width: 100%;
	max-width: 500px;
	height: 60px;
	border-radius: 5px;
	cursor: pointer;
}

.btn-common-l span {
	font-weight: 700;
}

.btn-green {
	border: 1px solid #147f6f;
	color: #147f6f;
}

.btn-green span {
	color: #147f6f;
}

.btn-navy {
	border: 1px solid #2941A1;
	color: #2941A1;
}

.btn-navy span {
	color: #2941A1;
}

.btn-black {
	border: 1px solid #111;
	color: #111;
}

.btn-black span {
	color: #111;
}

.btn-red {
	border: 1px solid #a75e5e;
	color: #a75e5e;
}

.btn-red span {
	color: #a75e5e;
}


.bg_green {
	background:#147F6F;
	color: #fff;
}

.bg_navy {
	background:#2941A1;
	color: #fff;
}

.bg_green span,
.bg_navy span,
.bg_black span {
	color: #fff;
}

.btn-green:hover,
.hover-green:hover {
	background: #147F6F;
	border: 1px solid #147f6f;
	color: #fff;
    transition: all 0.2s;
}

.btn-navy:hover,
.hover-navy:hover {
	background: #2941A1;
	border: 1px solid #2941A1;
	color: #fff;
    transition: all 0.2s;
}

.btn-black:hover,
.hover-black:hover {
	background: #111;
	border: 1px solid #111;
	color: #fff;
    transition: all 0.2s;
}

.btn-red:hover,
.hover-red:hover {
	background: #a75e5e;
	border: 1px solid #a75e5e;
	color: #fff;
    transition: all 0.2s;
}

.btn-default_2:hover span,
.btn-green:hover span,
.hover-green:hover span,
.btn-navy:hover span,
.hover-navy:hover span,
.btn-black:hover span,
.hover-black:hover span,
.btn-red:hover span,
.hover-red:hover span {
	color: #fff;
}

.btn-end {
	border: 1px solid #dbdbdb;
	color: #707070;
	cursor: default;
}

.more-btn {
	width: auto;
	height: auto;
	font-size: 16px;
	padding: 8px;
}

.modal-close-btn {
	right: 24px;
	top: 24px;
}

.close-btn {
	width: 40px !important;
	height: 40px !important;
	background: #111;
	border-radius: 50%;
}

.close-btn img {
	width: 20px !important;
	height: 20px !important;
	filter: invert(1) brightness(2);
}

.close-btn:hover {
	background: #147F6F !important;
	transition: all 0.2s;
}

.shortcut-btn {
	position: relative;
	display: block;
	width: 500px;
	font-weight: 600;
	border-radius: 4px;
	color: #2941A1 !important;
	border: 1px solid #3F80EA;
	padding: 16px 14px;
	text-align: center;
	cursor: pointer;
}

.shortcut-btn span {
	font-size: 24px;
	font-weight: 700;
}

.shortcut-btn:hover::after {
	content: "";
	position: absolute;
	background: url(/img/right-arrow.svg) no-repeat;
	width: 7px;
	height: 12px;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
}

.shortcut-btn:hover {
	background: #F2F8FF;
	transition: all 0.2s;
	color: #2941A1 !important;
}

.shortcut-btn:hover span {
	transition: all .6s;
	margin-left: -80px;
	color: #2941A1 !important;
}

@media screen and (max-width: 600px) {
	
	.more-btn {
		font-size: 14px;
		padding: 6px;
	}
	
}

@media screen and (max-width: 500px) {

	.btn-wrap:not(.btn-top-wrap):not(.count-wrap) {
		flex-direction: column;
		row-gap: 10px;
	}
	
	.btn-common {
		height: 54px;
		padding: 0;
	}
	
	.btn-common span {
		font-size: 22px;
	}

}