
 .popup-success {
	 position: fixed;
	 left: 0;
	 top: 0;
	 width: 100%;
	 height: 100%;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 opacity: 0;
	 visibility: hidden;
	 z-index: 460;
}
 .popup-success__show {
	 opacity: 1 !important;
	 visibility: visible !important;
}
 .popup-success::before {
	 position: absolute;
	 left: 0;
	 top: 0;
	 width: 100%;
	 height: 100%;
	 background: rgba(0,0,0,0.7);
	 display: block;
	 content: '';
}
 .popup-success__wrapper {
	 position: relative;
	 background: #ffffff;
	 padding: 25px;
	 z-index: 50;
	 max-width: 600px;
	 width: 100%;
}
 .popup-success__wrapper p {
	 margin: 0;
}
 .popup-success__title p {
	 font-size: 30px;
	 font-weight: 700;
}
 .popup-success__desc {
	 margin-top: 25px;
}
 .popup-success__desc p {
	 font-size: 16px;
	 font-weight: normal;
}
 .popup-success__actions {
	 display: flex;
	 width: 100%;
	 justify-content: flex-end;
}
 .popup-success__actions button {
	 padding: 8px 17px;
	 font-size: 16px;
	 border-radius: 5px;
	 border: 0;
	 background: #dd863a;
	 color: #ffffff;
	 font-weight: 700;
	 margin-left: 4px;
	 margin-right: 4px;
	 cursor: pointer;
}
 .popup-success__actions .action-none {
	 background: rgba(216,127,48,0.5);
	 border: 1px solid #dd863a !important;
}
 