@charset "UTF-8";

.my-popupmsg-section {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 90%;
    width: 26rem;
}

.my-popupmsg {
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
	margin-bottom: 0.5rem;
	background-color: white;
}

.my-popupmsg .body {
	display: flex;
	justify-content: space-between;
	position: relative;
}

.my-popupmsg .body .left {
	color: white;
	font-size: 3rem;
	padding: 0.8rem;
	float: left;
}

.my-popupmsg .body .right {
	flex: 1 1 auto !important;
	margin: .5rem;
	word-break: break-word;
	color: #2e2e2e;
}

.my-popupmsg .body .right .msg {
	margin: .5rem 0rem .5rem 0rem
}

.my-popupmsg .body .right .btn-bar {
	display: flex;
	gap: 1rem;
	justify-content: flex-end;
}

.my-popupmsg .body .close-bar {
	display: flex;
    align-items: center;
    justify-content: center;
    
	background-color: white;
	/*color: grey;*/
	/*font-size: 2rem;*/
	position: absolute;
	top: -16px;
	right: -17px;
	border-radius: 50%;
	padding: 4px 4px;
}

.my-popupmsg .body .close-bar img {
	display:flex;
	width: 2rem;
	opacity: 0.5;
}

.my-popupmsg .body .close-bar img:hover {
	cursor: pointer;
	opacity: .8;
}

.my-popupmsg-overlay {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	/*background: rgba(0, 0, 0, 0.5);*/
	backdrop-filter: blur(1px);
}

.my-popupmsg-hidden {
	display: none;
}

