.loader-background {
	position: fixed;
	top : 0;
	left: 0;
	width: 100%;
	height: 100%;
	background : #ffffff;
	opacity: 1;
	z-index: 999996;
    display: none;
}
.loader-background.black {
	opacity: .5;
	background : #000000;
}
.loader-page {
	position: fixed;
	top : 50%;
	left: 0;
	width: 100%;
	text-align: center;
	background: transparent;
	transform: translate(0,-50%);
	z-index: 999998;
    display: none;
}
.loader-page .loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #302f82;
	width: 120px;
	height: 120px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin: 0 auto;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.error{
	font-size: 13px;
	color: #ea7d7d;
}

.change-pic{
    position: relative;
    width: 6rem;
    height: 6rem;
}
.change-pic img{
	width: 6rem;
	height: 6rem;
	object-fit: cover;
	border-radius: 3rem;
}
.change-pic .avatar {
    border-radius: 120px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.change-pic .attach{
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.promo-detail .logo-tavi{
	width: 70px; 
	display: inline-block;
	margin-bottom: .5rem;
}

.mt-1px{
	margin-top: 1px;
}
.mt-10px{
	margin-top: 10px;
}
.mt-0{
	margin-top: 0 !important;
}