46 lines
966 B
CSS
46 lines
966 B
CSS
.clients-form__container {
|
|
.form-wrap {
|
|
position: relative;
|
|
min-height: 350px;
|
|
max-height: 600px;
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
.form-wrap__inner {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
.form-loading {
|
|
filter: blur(2px);
|
|
}
|
|
|
|
.loading-spinner {
|
|
position: absolute;
|
|
top: 0;
|
|
height: calc(100% + 10px);
|
|
width: calc(100% + 10px);
|
|
margin: -5px;
|
|
box-shadow: 0 0 5px #08080854;
|
|
background-color: #08080854;
|
|
z-index: 3;
|
|
}
|
|
|
|
.row-fade::after {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 60px;
|
|
height: calc(100% + 2px);
|
|
pointer-events: none;
|
|
background: linear-gradient(to right, transparent, #fff);
|
|
margin: -1px;
|
|
filter: blur(1px);
|
|
}
|
|
} |