body {

}

#form-notification {
	position: fixed;
	top: 100px;
	z-index: 10000;
	right: 0;
	width: 300px;
	padding: 30px;
	text-align: center;
	transform: translateX(320px);
	font-size: 16px;
	transition: .5s;
	border-radius: 10px;
}

#form-notification.active {
	transform: translateX(-20px);
}

#form-notification[data-class="done"] {
	background: skyblue;
	color: #000;
}

#form-notification[data-class="error"] {
	background: red;
	color: #fff;
}
		
.modale {
    position: fixed;
    z-index: 9999999;
    width: 100%;
    height: 100vh;
    background: rgb(0 0 0 / 75%);
    top: 0;
    left: 0;
	display: none;
}
		
.modale--vue {
	display: block;
}
		
.modale__wrapper {
    height: 100vh;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
		
.modale__inner {
    background: #fff;
    position: relative;
    padding: 30px;
	min-width: 320px;
}
		
.modale--post .modale__inner {
	max-width: 880px;
	padding: 0;
}
		
.modale__closer {
    position: absolute;
    top: 20px;
    right: 20px;
}
		
.micon-close {
    width: 14px;
    height: 14px;
    display: inline-block;
    position: relative;
	cursor: pointer;
}
		
.micon-close:before,
.micon-close:after {
	content: '';
	display: block;
	position: absolute;
	width: 20px;
	height: 1px;
	background: #000;
	left: calc(50% - 10px);
	top: 50%;  
}
		
.micon-close:before {
	transform: rotate(45deg);
}
		
.micon-close:after {
	transform: rotate(-45deg);
}
		
.modale__title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
}

.modale--auth .modale__inner {
	background: #fff;
    position: relative;
    padding: 30px;
    min-width: 320px;
    border-radius: 20px;
}
		
.modale--auth .rbtn--text.rbtn--main {
	background: #f60;
    width: 100%;
    color: #fff;
}
		
.modale--auth .form-control {
	background: #fff;
    box-shadow: 0px 4px 10px 0px rgb(162 164 169 / 40%);
    border: none;
    border-radius: 25px;
    font-size: 16px;
    height: 100%;
    padding: 13px;
}
		
.modale--auth .modale__title {
	font-size: 20px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
}

.form-group:not(:last-child) {
	margin-bottom: 10px;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
	width: 100%;
}
		
.form-group--tac {
    text-align: center;
}
		
.form-group--mid {
	margin-top: 50px;
}
		
.lk-content {
    padding: 50px;
}
		
.q-input {
    box-shadow: 0px 4px 10px 0px rgb(162 164 169 / 40%);
    font-size: 16px;
    height: 100%;
    border: none;
    border-radius: 20px;
    padding: 11px 20px;
	width: 100%;
	background: #fff;
}
		
div.q-input {
    color: #999;
}

@media (max-width: 1199px) {

}

@media (max-width: 991px) {

}

@media (max-width: 767px) {

}
