@media all and (min-width:768px) {
	.system_alert_layer_bg {
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 1000;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.3);
		display: none;
	}
	.costomi_product_system_alert_layer {
		position: fixed;
		top: 50%;
		left: 50%;
		z-index: 1000;
		width: fit-content;
		height: auto;
		/* max-width: 600px;
		min-width: 600px; */
		background-color: var(--white-color);
		padding: 30px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 20px;
		transform: translate(-50%, -50%) scale(0);
		transition: all 0.3s ease;
	}
	.system_alert_layer {
		position: fixed;
		top: 50%;
		left: 50%;
		z-index: 1000;
		width: fit-content;
		height: auto;
		max-width: 600px;
		min-width: 600px;
		background-color: var(--white-color);
		padding: 30px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 20px;
		transform: translate(-50%, -50%) scale(0);
		transition: all 0.3s ease;
	}
	.system_alert_layer_header {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		font-size: 28px;
	}
	.system_alert_layer_close {
		z-index: 1;
		width: 40px;
		height: 40px;
		cursor: pointer;
		border-radius: 100%;
		padding: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-right: -10px;
	}
	.system_alert_layer_close:hover{
		background-color: #d9d9d9;
	}
	.system_alert_layer_close > img {
		height: 100%;
	}
	.system_alert_layer_text_content_wrapper {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 5px;
	}
	.system_alert_layer_time_content_wrapper {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 5px;
	}
	.system_alert_layer_text_content {
		font-size: 18px;
	}
	.system_alert_layer_time_content {
		font-size: 18px;
		margin-top: 20px;
	}
	/* .system_alert_layer_text_content_input {
		width: 100%;
		height: auto;
		margin-top: 20px;
	}
	.system_alert_layer_text_content_input > input{
		width: 100%;
		height: auto;
	} */
	.system_alert_layer_order_content_wrapper {
		width: auto;
		height: auto;
	}
	.system_alert_layer_order_content_wrapper > table {
		width: auto;
	}
	.system_alert_layer_order_content_wrapper > table > thead th {
		width: auto;
		padding-bottom: 10px;
		border-bottom: 1px solid #d9d9d9;
	}
	.system_alert_layer_order_content_wrapper > table > tbody td {
		width: auto;
		padding-bottom: 10px;
		border-bottom: 1px solid #d9d9d9;
		padding-top: 10px;
	}
	.system_alert_layer_order_content_wrapper > table > tbody td > span {
		word-break: keep-all;
		display: block;
	}
	.system_alert_layer_order_content_wrapper > table td,
	.system_alert_layer_order_content_wrapper > table th {
		height: auto;
		padding: 0px;
		text-align: left;
		max-width: 150px;
	}
	.system_alert_layer_order_content_wrapper > table td:first-child,
	.system_alert_layer_order_content_wrapper > table th:first-child {
		min-width: 150px;
	}
	.system_alert_layer_order_content_wrapper > table td:nth-child(2),
	.system_alert_layer_order_content_wrapper > table th:nth-child(2) {
		min-width: 150px;
	}
	.system_alert_layer_order_content_wrapper > table td:nth-child(3),
	.system_alert_layer_order_content_wrapper > table th:nth-child(3) {
		min-width: 120px;
	}
	.system_alert_layer_order_content_wrapper > table td:nth-child(4),
	.system_alert_layer_order_content_wrapper > table th:nth-child(4) {
		min-width: 120px;
	}

	.system_alert_layer_befor_view_content_wrapper > .view_content {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		min-width: 440px;
		padding: 10px 0px;
		border-top: 1px solid #d9d9d9;
	}
	.system_alert_layer_befor_view_content_wrapper > .view_content:last-child {
		border-bottom: 1px solid #d9d9d9;
	}
	.view_content > .view_content_img_area {
		width: 90px;
		height: 90px;
		background-image: url('/images/innorix_autoronix/product_img/category_dome.png');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 90%;
		margin-right: 20px;
	}
	.view_content > .view_content_info_area {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		margin-right: auto;
	}
	.view_content > .view_content_info_area > p:first-child{
		margin-bottom: 10px;
	}

	.system_alert_layer_button_wrapper {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		flex-direction: row;
		gap: 10px;
	}
	.system_alert_layer_button_wrapper > .blueBtn {
		border: 1px solid #1B89FF !important;
		background-color: #1B89FF;
		transition: all 0.1s;
		color: var(--white-color);
		font-size: 18px;
		min-width: 0;
		padding: 10px 25px;
		border: 1px solid #1B89FF;
		background-color: #1B89FF;
		transition: all 0.3s;
	}
	.system_alert_layer_button_wrapper > .blueNobdBtn {
		border: 1px solid #1B89FF !important;
		background-color: var(--white-color);
		transition: all 0.1s;
		color: #1B89FF;
		font-size: 18px;
		min-width: 0;
		padding: 10px 25px;
		border: 1px solid #1B89FF;
		background-color: var(--white-color);
		transition: all 0.3s;
	}
	.system_alert_layer_button_wrapper > .blueBtn:hover {
		border: 1px solid #1B89FF !important;
		color: #1B89FF !important;
		transition-duration: 0.5s;
		/* background-position: 1% 4%; */
		background-color: var(--white-color);
		cursor: pointer;
	}
	.system_alert_layer_button_wrapper > .blueNobdBtn:hover {
		border: 1px solid #1B89FF !important;
		color: var(--white-color) !important;
		transition-duration: 0.5s;
		/* background-position: 1% 4%; */
		background-color: #1B89FF;
		cursor: pointer;
	}
	
}
@media all and (max-width:767px) {
	
	.system_alert_layer_bg {
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 1000;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0, 0, 0, 0.3);
		display: none;
	}
	.system_alert_layer {
		position: fixed;
		top: 50%;
		left: 50%;
		z-index: 1000;
		width: fit-content;
		height: auto;
		max-width: 100%;
		min-width: 100%;
		background-color: var(--white-color);
		padding: 20px 15px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 20px;
		transform: translate(-50%, -50%) scale(0);
		transition: all 0.3s ease;
	}
	.costomi_product_system_alert_layer {
		position: fixed;
		top: 50%;
		left: 50%;
		z-index: 1000;
		width: fit-content;
		height: auto;
		max-width: 100%;
		min-width: 100%;
		background-color: var(--white-color);
		padding: 20px 15px;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 20px;
		transform: translate(-50%, -50%) scale(0);
		transition: all 0.3s ease;
	}
	.system_alert_layer_header {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		font-size: 28px;
	}
	.system_alert_layer_close {
		z-index: 1;
		width: 40px;
		height: 40px;
		cursor: pointer;
		border-radius: 100%;
		padding: 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		margin-right: -10px;
	}
	.system_alert_layer_close:hover{
		background-color: #d9d9d9;
	}
	.system_alert_layer_close > img {
		height: 100%;
	}
	.system_alert_layer_text_content_wrapper {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 5px;
	}
	.system_alert_layer_input_content_wrapper {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 5px;
	}
	.system_alert_layer_text_content {
		font-size: 18px;
	}
	.system_alert_layer_text_content_input {
		width: 100%;
		height: auto;
		margin-top: 20px;
	}
	.system_alert_layer_text_content_input > input{
		width: 100%;
		height: auto;
	}

	.system_alert_layer_order_content_wrapper {
		width: 100%;
		height: auto;
		overflow: auto;
	}
	.system_alert_layer_order_content_wrapper > table {
		width: auto;
	}
	.system_alert_layer_order_content_wrapper > table > thead th {
		width: auto;
		padding-bottom: 10px;
		border-bottom: 1px solid #d9d9d9;
	}
	.system_alert_layer_order_content_wrapper > table > tbody td {
		width: auto;
		padding-bottom: 10px;
		border-bottom: 1px solid #d9d9d9;
		padding-top: 10px;
	}
	.system_alert_layer_order_content_wrapper > table > tbody td > span {
		word-break: keep-all;
		display: block;
	}
	.system_alert_layer_order_content_wrapper > table td,
	.system_alert_layer_order_content_wrapper > table th {
		height: auto;
		padding: 0px;
		text-align: left;
		max-width: 150px;
	}
	.system_alert_layer_order_content_wrapper > table td:first-child,
	.system_alert_layer_order_content_wrapper > table th:first-child {
		min-width: 150px;
	}
	.system_alert_layer_order_content_wrapper > table td:nth-child(2),
	.system_alert_layer_order_content_wrapper > table th:nth-child(2) {
		min-width: 150px;
	}
	.system_alert_layer_order_content_wrapper > table td:nth-child(3),
	.system_alert_layer_order_content_wrapper > table th:nth-child(3) {
		min-width: 120px;
	}
	.system_alert_layer_order_content_wrapper > table td:nth-child(4),
	.system_alert_layer_order_content_wrapper > table th:nth-child(4) {
		min-width: 120px;
	}

	.system_alert_layer_befor_view_content_wrapper > .view_content {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		min-width: calc(100vw - 30px);
		padding: 10px 0px;
		border-top: 1px solid #d9d9d9;
	}
	.system_alert_layer_befor_view_content_wrapper > .view_content:last-child {
		border-bottom: 1px solid #d9d9d9;
	}
	.view_content > .view_content_img_area {
		width: 90px;
		height: 90px;
		background-image: url('/images/innorix_autoronix/product_img/category_dome.png');
		background-position: center;
		background-repeat: no-repeat;
		background-size: 90%;
		margin-right: 20px;
	}
	.view_content > .view_content_info_area {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		margin-right: auto;
	}
	.view_content > .view_content_info_area > p:first-child{
		margin-bottom: 10px;
	}


	.system_alert_layer_button_wrapper {
		width: 100%;
		height: auto;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		flex-direction: row;
		gap: 10px;
	}
	.system_alert_layer_button_wrapper > .blueBtn {
		border: 1px solid #1B89FF !important;
		background-color: #1B89FF;
		transition: all 0.1s;
		color: var(--white-color);
		font-size: 18px;
		min-width: 0;
		padding: 10px 25px;
		border: 1px solid #1B89FF;
		background-color: #1B89FF;
		transition: all 0.3s;
	}
	.system_alert_layer_button_wrapper > .blueNobdBtn {
		border: 1px solid #1B89FF !important;
		background-color: var(--white-color);
		transition: all 0.1s;
		color: #1B89FF;
		font-size: 18px;
		min-width: 0;
		padding: 10px 25px;
		border: 1px solid #1B89FF;
		background-color: var(--white-color);
		transition: all 0.3s;
	}
	.system_alert_layer_button_wrapper > .blueBtn:hover {
		border: 1px solid #1B89FF !important;
		color: #1B89FF !important;
		transition-duration: 0.5s;
		/* background-position: 1% 4%; */
		background-color: var(--white-color);
		cursor: pointer;
	}
	.system_alert_layer_button_wrapper > .blueNobdBtn:hover {
		border: 1px solid #1B89FF !important;
		color: var(--white-color) !important;
		transition-duration: 0.5s;
		/* background-position: 1% 4%; */
		background-color: #1B89FF;
		cursor: pointer;
	}
}