.notification-cart {
	position: relative;
	padding: 15px;
	width: 100%;
	margin: 0;
}

.notification-cart .alert-msg {
	line-height: 20px;
	text-align: center;
	font-size: 15px;
}

.notification-cart .close-msg {
	position: absolute;
	top: 3px;
	right: 3px;
	cursor: pointer;
}


.popup-overlay {
	display: none;
    background-color: #212121aa;
    color: #0006;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    z-index: 1033;
}

.popup-overlay.active {
	display: block;
}

.popup-cart {
	position: relative;
	display: none;
	background: #fff;
    z-index: 1100;
    position: absolute;
    top: 30%;
    left: calc(50% - 20vw);
    width: 40vw;
    height: auto;
    border-radius: 5px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.popup-cart.active {
	display: block;
}

.popup-cart .box-popup {
	padding: 20px;
}

.popup-cart .box-popup header h3 {
	margin: 0;
	padding: 0;
	font-size: 22px;
}

.popup-cart .box-popup article p {
	font-size: 14px;
}

.popup-cart .accept-popup * {
	margin: 0;
}

.popup-cart .accept-popup {
	margin: 20px 0 10px 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.popup-cart .accept-popup label {
	font-size: 14px;
	color: #333;
}

.popup-cart .close-msg {
	cursor: pointer;
	position: absolute;
	right: 5px;
	top: 5px;
}
.popup-cart .close-msg svg {
	width: 25px;
	height: 25px;
}


@media (max-width: 992px) {
	.popup-cart {
		width: 60vw;
		left: calc(50% - 30vw);
	}
}

.popup-wrap {
  display:none;
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  width:100%;
  text-align:center;
  padding:1rem;
  z-index: 1200;
  height: 100vh;
  background: transparent;
  
}

.popup-wrap .popup {
	    background: #fff;
    z-index: 1100;
    position: absolute;
    top: 30%;
    left: calc(50% - 20vw);
    width: 40vw;
    height: auto;
    border-radius: 5px;
    box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
    padding: 20px;
}

.popup-wrap .close-msg {
	position: absolute;
    top: 0;
    right: 0;
}

.check-pu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 5px;
    margin-top: 32px;
	
}

.check-pu:hover {
	text-decoration: none;
}
 
.check-pu input,
.check-pu label {
	margin: 0;
	padding: 0;
	font-size: 17px;
    padding-top: 9px;
    padding-left: 8px;
}

.wrap-accept {
	margin: 10px 0 0 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.accept-submit {
	display: block;
	width: 120px;
	height: 40px;
	background: #4DC247;
	line-height: 40px;
	transition: 0.3s ease-in-out;
	border-radius: 3px;
	opacity: 0.5;
	cursor: default;
	position: relative;
}

.accept-submit.op {
	opacity: 1;
	cursor: pointer;
}

.accept-submit:hover {
	text-decoration: none;
	opacity: .7;
}

.accept-submit span {
	color: #fff;
}


.popup_text{
    font-size: 14px;
}


.check-pu input[type=checkbox] {
     position: relative;
     cursor: pointer;
}

.check-pu input[type=checkbox]:before {
     content: "";
     display: block;
     position: absolute;
     width: 16px;
     height: 16px;
     top: 0;
     left: 0;
     border: 2px solid #555555;
     border-radius: 3px;
     background-color: white;
}

.check-pu input[type=checkbox]:checked:after {
     content: "";
     display: block;
     width: 5px;
     height: 10px;
     border: solid black;
     border-width: 0 2px 2px 0;
     -webkit-transform: rotate(45deg);
     -ms-transform: rotate(45deg);
     transform: rotate(45deg);
     position: absolute;
     top: 2px;
     left: 6px;
}