@charset "utf-8";

.application-details-wrap > div ~ div {
	margin-top: 60px;
}
.application-details-wrap h2.title {
	margin-bottom: 20px;
}
.application-info table {
	width: 100%;
}
.application-info tr {
	border: 1px solid var(--gs-color-pale-cornflower-blue);
}
.application-info th, .application-info td {
	padding: 15px 30px;
	height: 60px;
	font-size: 20px;
	text-align: left;
}
.application-info th {
	background-color: var(--gs-color-ghost-white);
}
.application-info td {
	border-left: 1px solid var(--gs-color-pale-cornflower-blue);
}

.add-application-btn {
	margin: 30px auto;
	max-width: 250px;
	font-size: 20px;
	gap: 12px;
}
.add-application-btn::after {
	content: "";
	margin-top: 3px;
	width: 21px;
	height: 21px;
	border: 1px solid var(--gs-color-ghost-white);
	border-radius: 3px;
	background: var(--gs-icon-plus-white) no-repeat center / 17px;
}

.application-names {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin: 20px 0 30px;
	padding: 0 30px;
}
.application-names button {
	flex: 0 0 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 20px;
	height: 50px;
	min-width: 110px;
	min-height: 0;
	font-size: 16px;
	color: var(--gs-color-granite-gray);
	border: 1px solid var(--gs-color-chinese-silver);
	border-radius: 50px;
	background-color: var(--gs-color-white);
}
.application-names button.active {
	color: var(--gs-color-white);
	border-color: var(--gs-color-brandeis-blue);
	background-color: var(--gs-color-brandeis-blue);
}

.current-history {
	display: flex;
	align-items: center;
	gap: 3px 5px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	padding: 0 30px;
}
.current-history .total-count {
	font-size: 18px;
}
.current-history small {
	color: #7e7e7e;
}

.app-history-list > div {
	padding: 35px;
	border-radius: 20px;
	border: 1px solid var(--gs-color-pale-cornflower-blue);
}
.app-history-list > div ~ div {
	margin-top: 30px;
}
.app-history-list .top {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 5px 10px;
}
.app-history-list .sort-item {
	font-size: 14px;
	color: var(--gs-color-dark-charcoal);
}
.app-history-list .sort-item small {
	color: var(--gs-color-spanish-gray);
}
.app-history-list .progress {
	margin: 30px 0;
}
.app-history-list .progress ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px 0;
}
.app-history-list .progress li {
	flex: 0 0 185px;
	position: relative;
	display: flex;
	padding-right: 20px;
	width: 100%;
	height: 60px;
	font-size: 18px;
}
.app-history-list .progress li::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 20px;
	height: 100%;
	background-color: var(--gs-color-brandeis-blue);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.app-history-list .progress li > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	padding: 5px 5px 5px 15px;
	color: var(--gs-color-white);
	background-color: var(--gs-color-brandeis-blue);
}
.app-history-list .progress li small {
	font-size: 14px;
}
.app-history-list .progress li.active ~ li::after {
	background-color: var(--gs-color-light-gray);
}
.app-history-list .progress li.active ~ li > div {
	color: var(--gs-color-white);
	background-color: var(--gs-color-light-gray);
}
.app-history-list .progress li:has(.cancell)::after {
	background-color: var(--gs-color-dark-goldenrod) !important;
}
.app-history-list .progress li:has(.cancell) > div {
	font-size: 16px;
	background-color: var(--gs-color-dark-goldenrod) !important;
}
.app-history-list .progress.waiting li > div,
.app-history-list .progress.waiting li::after {
	background-color: var(--gs-color-light-gray);
}

.app-history-list .bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px 20px;
	flex-wrap: wrap;
}
.app-history-list .bottom .product {
	display: flex;
	gap: 0 50px;
	flex-wrap: wrap;
}
.app-history-list .bottom .product span {
	font-size: 16px;
}

.app-history-list .btns {
	display: flex;
	align-items: center;
	gap: 10px;
}
.app-history-list .btns .gs-btn {
	padding: 5px;
	height: 30px;
	width: auto;
	min-width: 90px;
	min-height: 0;
	font-size: 14px;
}

.item-search-table-wrap {
	border-bottom: none !important;
}
.item-search-table-wrap table {
	border-collapse: separate;
}
.item-search-table-wrap th,
.item-search-table-wrap td {
	padding: 5px;
	font-size: 14px;
	text-align: center;
	vertical-align: middle;
}
.item-search-table-wrap tbody th,
.item-search-table-wrap td {
	height: 45px;
	border-bottom: 1px solid var(--gs-color-platinum);
}
.item-search-table-wrap thead {
	position: sticky;
	top: 0;
	background-color: var(--gs-color-white) !important;
	z-index: 5;
}
.item-search-table-wrap thead th {
	border-bottom: 1px solid var(--gs-color-platinum);
}
.refund-item-search-wrap tr > * > div {
	justify-content: center;
}
.refund-item-search-wrap td > div:has(.select-btn) {
	padding-right: 65px;
}
.item-search-table-wrap tr span {
	display: none;
}
.item-search-table-wrap td .select-btn {
	width: 50px;
	min-height: 30px;
	font-size: 14px;
}

@media all and (max-width: 1140px) {
	.app-history-list .top,
	.app-history-list .bottom {
		flex-direction: column;
		align-items: flex-start;
	}
	.app-history-list .progress ul {
		gap: 10px;
	}
}
@media all and (max-width: 900px) {
	.refund-item-search-wrap table,
	.refund-item-search-wrap tbody,
	.refund-item-search-wrap tr,
	.refund-item-search-wrap th,
	.refund-item-search-wrap td {
		display: block;
	}
	.refund-item-search-wrap colgroup,
	.refund-item-search-wrap thead {
		display: none;
	}
	.refund-item-search-wrap tr {
		position: relative;
		padding: 10px;
	}
	.refund-item-search-wrap th,
	.refund-item-search-wrap td {
		padding: 5px;
		height: auto;
		text-align: left;
	}
	.refund-item-search-wrap th {
		padding-right: 60px;
	}
	.refund-item-search-wrap tr > * > div {
		flex-direction: row;
		padding-right: 0 !important;
		position: static;
	}
	.refund-item-search-wrap tr span {
		margin-top: 2px;
		word-break: auto-phrase;
	}
	.refund-item-search-wrap tr span::after {
		content: ":";
	}
	.refund-item-search-wrap tr span + div {
		flex: 1;
	}
	.refund-item-search-wrap td .select-btn {
		top: 10px;
		width: 50px;
		font-size: 14px;
		transform: translateY(0%);
	}
	.refund-item-search-wrap .search-branch > div {
		flex-direction: column;
	}
	.refund-item-search-wrap .search-branch .gs-btn {
		flex: 1;
		margin: 0 auto;
		max-width: 180px;
	}
	.refund-item-search-wrap select,
	.refund-item-search-wrap .gs-input > input {
		padding-left: 10px;
	}
	.item-search-table-wrap tbody th,
	.item-search-table-wrap td {
		padding: 2px;
		height: auto;
		border: none;
	}
	.item-search-table-wrap tr > * > div {
		justify-content: flex-start;
	}
	.refund-item-search-wrap tr span {
		display: block;
		margin-top: 0;
	}
}
@media all and (max-width: 770px) {
	.application-info table,
	.application-info tbody,
	.application-info tr,
	.application-info th,
	.application-info td {
		display: block;
	}
	.application-info colgroup,
	.application-info thead {
		display: none;
	}
	.application-info tr {
		padding: 20px;
		display: flex;
		gap: 5px;
		flex-wrap: wrap;
	}
	.application-info tr ~ tr {
		border-top: none;
	}
	.application-info th, .application-info td {
		position: relative;
		padding: 0;
		height: auto;
		border: none;
		background: none;
	}
	.application-info th::after {
		content: ":";
	}
	.application-names,
	.current-history {
		padding: 0;
	}
}
@media all and (max-width: 540px) {
	.app-history-list .progress ul {
		flex-direction: column;
		gap: 25px 0;
	}
	.app-history-list .progress li {
		flex: 1;
		padding-right: 0;
		min-height: 55px;
		border-radius: 3px;
	}
	.app-history-list .progress li::after {
		bottom: -15px;
		right: 0;
		left: 50%;
		width: 100px;
		height: 15px;
		transform: translateX(-50%);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
	}
	.app-history-list .progress li:last-child:after {
		content: none;
	}
	.app-history-list .bottom .product {
		flex-direction: column;
	}
	.application-names {
		display: block;
	}
	.application-names button {
		display: inline-flex;
		margin: 3px 1px;
		padding: 10px 15px;
		width: auto;
		min-width: 0;
		height: 40px;
	}
	.app-history-list > div {
		padding: 20px;
	}
	.app-history-list .progress {
		margin: 15px 0;
	}
}