/*
Custom Css
*/
/*@import '../scss/_style.scss';*/
.preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 9999;
/*background-image: url('../images/loaders.gif');*/
background-repeat: no-repeat;
background-color: #FFF;
background-position: center;
background-size: 190px 190px;
display: flex;
    align-items: center;
    justify-content: center;
}
img.loading {
    background-image: url('../images/ajax-loader.gif');
    background-repeat: no-repeat;
    background-color: #FFF;
    background-position: center;
    max-width: 300px;
    height: 300px;
    object-fit: contain;
    object-position: center;
    width: 100%;
}
.loader {
    margin: auto;
    border: 10px solid #dedede;
    border-radius: 50%;
    border-top: 10px solid #ffb609;
    width: 210px;
    height: 210px;
    animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.profile-pic {
	color: transparent;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.3s ease;
}
.profile-pic input {
	display: none;
}
.profile-pic img {
	position: absolute;
	object-fit: contain;
	width: 90px;
	height: 90px;
	box-shadow: 0 0 10px 0 rgba(255, 255, 255, 0.35);
	border-radius: 100px;
	z-index: 0;
}
.profile-pic .-label {
	cursor: pointer;
	height: 90px;
	width: 90px;
	position: relative;
}
.profile-pic:hover .-label {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 2;
	color: #fafafa;
	transition: background-color 0.2s ease-in-out;
	border-radius: 100px;
	margin-bottom: 0;
}
.profile-pic span {
	display: inline-flex;
	padding: 0.2em;
	height: 2em;
	align-items: center;
	font-size: 14px;
}
.profile-pic-box {
	position: relative;
}
.profile-pic p {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
		background: #000;
	/*background: #6185e5;*/
	color: #fff;
	right: 5px;
	bottom: 10px;
}
.profile-pic + .pic-del {
	font-size: 10px;
    margin-top: 10px;
}
.profile-pic-box form {
	text-align: center;
}
label, .form-label {
	font-size: 14px;
	margin-bottom: 0;
}
.product-thumb-image {
	overflow: hidden;
	width: 260px;
    margin: 0 auto;
}
.product-thumb-image svg {
	min-width: 525px;
}

.card-registration .select-input.form-control[readonly]:not([disabled]) {
    font-size: 1rem;
    line-height: 2.15;
    padding-left: .75em;
    padding-right: .75em;
}

.card-registration .select-arrow {
    top: 13px;
}

.bg-grey {
    background-color: #eae8e8;
}
.image-box-wrapper .image {
	text-align: center;
}

@media (min-width: 992px) {
    .card-registration-2 .bg-grey {
        border-top-right-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}

@media (max-width: 991px) {
    .card-registration-2 .bg-grey {
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }
}

@media print {
	.hide_print, .navbar, footer, .header4-right {
		display: none !important;
	}
	.header4-left {
		padding-bottom: 20px;
	}
	.visible_printer {
		display: block !important;
	}
	
}