2023-03-16 21:41:01 +03:00
|
|
|
.settings {
|
|
|
|
background: #f1f1f1;
|
2023-03-20 14:40:24 +03:00
|
|
|
height: 100%;
|
|
|
|
min-height: 100vh;
|
2023-04-03 14:37:27 +03:00
|
|
|
font-family: "LabGrotesque", sans-serif;
|
2023-03-16 21:41:01 +03:00
|
|
|
|
2023-03-23 16:18:57 +03:00
|
|
|
.infoPersonal__title {
|
|
|
|
color: #000000;
|
|
|
|
font-weight: 700;
|
|
|
|
font-size: 22px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
2023-03-16 21:41:01 +03:00
|
|
|
&__page {
|
|
|
|
max-width: 1160px !important;
|
|
|
|
margin-top: 23px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
color: #5b6871;
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
|
|
|
|
2023-12-05 15:18:28 +03:00
|
|
|
&__label {
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: #000000;
|
|
|
|
margin: 15px 0 10px 0;
|
2023-03-16 21:41:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
2023-11-27 14:39:11 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
row-gap: 5px;
|
2023-03-16 21:41:01 +03:00
|
|
|
input {
|
2023-11-27 14:39:11 +03:00
|
|
|
padding: 5px 10px;
|
2023-03-16 21:41:01 +03:00
|
|
|
background: #eff2f7;
|
2023-11-27 14:39:11 +03:00
|
|
|
border-radius: 8px;
|
|
|
|
height: 35px;
|
2023-03-16 21:41:01 +03:00
|
|
|
border: none;
|
2023-11-27 14:39:11 +03:00
|
|
|
font-size: 15px;
|
2023-03-16 21:41:01 +03:00
|
|
|
outline: none;
|
|
|
|
}
|
2023-11-27 14:39:11 +03:00
|
|
|
|
|
|
|
.error {
|
|
|
|
color: red;
|
|
|
|
font-size: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.warning {
|
|
|
|
border: 1px solid red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.oldPassword {
|
|
|
|
margin-bottom: 25px;
|
2023-03-16 21:41:01 +03:00
|
|
|
}
|
2023-03-17 20:02:53 +03:00
|
|
|
|
|
|
|
&__agreement {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 18px;
|
|
|
|
color: #000000;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
2023-12-05 15:18:28 +03:00
|
|
|
width: 100%;
|
2023-03-17 20:02:53 +03:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-12-05 15:18:28 +03:00
|
|
|
justify-content: flex-start;
|
|
|
|
gap: 20px;
|
|
|
|
margin: 30px 0 20px;
|
2023-03-17 20:02:53 +03:00
|
|
|
|
|
|
|
&-cancel,
|
|
|
|
&-save {
|
2023-11-27 14:39:11 +03:00
|
|
|
min-width: 151px;
|
2023-03-17 20:02:53 +03:00
|
|
|
height: 40px;
|
|
|
|
font-size: 14px;
|
|
|
|
line-height: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-cancel {
|
|
|
|
color: #6f6f6f;
|
|
|
|
background: white;
|
|
|
|
border: 0.5px solid #8dc63f;
|
|
|
|
|
2023-05-26 19:59:42 +03:00
|
|
|
&:hover {
|
|
|
|
background-color: white;
|
|
|
|
}
|
2023-03-17 20:02:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-03 14:37:27 +03:00
|
|
|
@media (max-width: 1200px) {
|
|
|
|
&__input {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
&-cancel,
|
|
|
|
&-save {
|
|
|
|
width: 120px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-12-05 15:18:28 +03:00
|
|
|
@media (max-width: 800px) {
|
2023-03-17 20:02:53 +03:00
|
|
|
&__input {
|
|
|
|
width: 95%;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__buttons {
|
|
|
|
margin: 15px 0 14px 0;
|
|
|
|
width: 100%;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
align-items: center;
|
2023-12-05 15:18:28 +03:00
|
|
|
gap: 0px;
|
2023-03-17 20:02:53 +03:00
|
|
|
|
|
|
|
&-save {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox {
|
2023-12-05 15:18:28 +03:00
|
|
|
margin: 0px 0 0 20px;
|
2023-03-16 21:41:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
.partner-settings {
|
|
|
|
margin-bottom: 110px;
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2023-12-05 15:18:28 +03:00
|
|
|
justify-content: space-around;
|
2023-03-16 21:41:01 +03:00
|
|
|
margin-top: 27px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__report,
|
|
|
|
&__login {
|
|
|
|
width: 500px;
|
|
|
|
background: #ffffff;
|
|
|
|
border-radius: 12px;
|
|
|
|
padding: 30px 60px;
|
|
|
|
}
|
2023-03-17 20:02:53 +03:00
|
|
|
|
|
|
|
&__logo {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
label input {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
label span {
|
|
|
|
cursor: pointer;
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
border: none;
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
background: #eff1f3;
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
[type="checkbox"]:checked + span:before {
|
|
|
|
content: "\2714";
|
|
|
|
position: absolute;
|
|
|
|
top: -5px;
|
|
|
|
left: 2px;
|
|
|
|
font-size: 23px;
|
|
|
|
color: #1c1243;
|
|
|
|
font-weight: 300;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
2023-12-05 15:18:28 +03:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-03-17 20:02:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 1200px) {
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
2023-04-03 14:37:27 +03:00
|
|
|
&__logo {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__body {
|
|
|
|
margin-bottom: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__report,
|
|
|
|
&__login {
|
|
|
|
width: 45%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
2023-12-05 15:18:28 +03:00
|
|
|
flex-direction: row;
|
2023-04-03 14:37:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 950px) {
|
2023-03-17 20:02:53 +03:00
|
|
|
&__body {
|
|
|
|
flex-direction: column;
|
2023-04-03 14:37:27 +03:00
|
|
|
margin-bottom: 20px;
|
|
|
|
align-items: center;
|
2023-03-17 20:02:53 +03:00
|
|
|
}
|
2023-04-03 14:37:27 +03:00
|
|
|
|
|
|
|
&__report,
|
|
|
|
&__login {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
2023-03-17 20:02:53 +03:00
|
|
|
&__report {
|
2023-04-03 14:37:27 +03:00
|
|
|
margin-top: 55px;
|
|
|
|
margin-bottom: 55px;
|
2023-03-17 20:02:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 570px) {
|
2023-04-03 14:37:27 +03:00
|
|
|
&__body {
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2023-03-17 20:02:53 +03:00
|
|
|
&__report,
|
|
|
|
&__login {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 20px 30px;
|
|
|
|
}
|
|
|
|
|
2023-04-03 14:37:27 +03:00
|
|
|
&__report {
|
|
|
|
margin-top: 55px;
|
2023-12-05 15:46:25 +03:00
|
|
|
margin-bottom: 10px;
|
2023-04-03 14:37:27 +03:00
|
|
|
}
|
|
|
|
|
2023-03-17 20:02:53 +03:00
|
|
|
&__logo {
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: flex-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__label {
|
2023-12-05 15:18:28 +03:00
|
|
|
flex-direction: row;
|
2023-03-17 20:02:53 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-16 21:41:01 +03:00
|
|
|
}
|