/*custom loader*/
#custom_loader {
	top: 0px;
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 10000;
	justify-content: center;
	align-items: center;
}
#custom_loader > div {
	color: #444444;
	font-weight: 600;
	padding: 10px;
	box-shadow: 0 0 33px #ccc;
	border-radius: 8px;
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	height: 63px;
	width: 250px;
	background: #fff;
}



/*custom Alert or popup*/

#custom_popup_message {
		top: 0px;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	justify-content: center;
	align-items: center;
}
#custom_popup_message > div {
	background-color: #fff;
	width: 300px;
	box-shadow: 0 0 15px #fff;
	border-radius: 7px;
	overflow: hidden;
	min-height: 130px;
	max-height: 200px;
	display: flex;
	flex-direction: column;
}
#custom_popup_message > div > div:nth-child(1) {
	font-size: 14px;
	padding: 7px 15px;
	font-weight: bold;
	border-bottom: 1px solid #eee;
}
#custom_popup_message > div > div:nth-child(2) {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	/* align-items: center; */
	padding: 8px;
	overflow-y: auto;
}
#custom_popup_message > div > div:nth-child(3) {
	padding: 0 10px 10px 0;
}
#custom_popup_message button {
	padding: 5px 10px;
	border-radius: 3px;
	border: none;
	color: #fff;
	background-color: #2490d9;
	margin-left: auto;
	display: block;
	width: 63px;
}




.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}

.flex-col {
    flex-direction: column;
}
.flex {
    display: flex;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}


/*custom modal*/
.modal_main {
	z-index: 10;
	height: 0px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
}
.modal_main .modal_ov {
	position: fixed;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.6);
	height: 100vh;
	width: 100vw;
	z-index: 11;
}
.modal_main .modal_box {
	z-index: 12;
	position: relative;
	width: 100vw;
	height: 100vh;
	max-width: 500px;
	margin: 0 auto;
	transition: 0.5s;
	transform: scale(0);
	/* position: fixed; */
	top: 0;
	/* left: 0; */
}
.modal_main .modal_box > div {
	background-color: #fff;
	border-radius: 10px;
	width: 100%;
	box-shadow: 0 0 10px #fff;
	overflow: hidden;
	max-height: 90vh;
}
.modal_main .body {
	padding: 10px 20px;
	overflow: hidden auto;
}
.modal_main .head {
	padding: 10px 20px;
	font-size: 15px;
	border-bottom: 1px solid #ccc;
	/* margin-bottom: 10px; */
	background: #f7f7f7;
}
.modal_main .head .icon {
	width: 20px;
	height: 20px;
	fill: #f00;
	position: relative;
	top: unset;
	right: unset;
	margin-left: auto;
	background: #ffc0c0;
	border: 1px solid #f00;
	border-radius: 100%;
	padding: 6px;
}
.modal_main .head .icon:hover {
	transform: scale(1.1);
	cursor: pointer;
}


.row_container {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.justify-content-center {
    -ms-flex-pack: center;
    justify-content: center;
}

.mt-1{
    margin-top: 1rem!important;
}


