2024-10-23 08:56:47 +02:00
|
|
|
.ppcp-r {
|
2024-10-28 17:57:05 +01:00
|
|
|
&-container {
|
|
|
|
max-width: var(--max-container-width, none);
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
2024-10-23 08:56:47 +02:00
|
|
|
|
|
|
|
&-inner-container {
|
2024-10-28 17:57:05 +01:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2024-11-05 18:20:04 +04:00
|
|
|
padding: 0 16px 48px;
|
2024-10-23 12:59:41 +02:00
|
|
|
box-sizing: border-box;
|
2024-10-28 18:00:23 +01:00
|
|
|
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
padding-bottom: 36px;
|
|
|
|
}
|
2024-10-23 08:56:47 +02:00
|
|
|
}
|
|
|
|
|
2024-10-25 14:35:16 +02:00
|
|
|
&-settings-card {
|
|
|
|
background-color: $color-white;
|
|
|
|
padding: 48px;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 0 2px 4px 0 #0000001A;
|
2024-10-28 12:26:13 +01:00
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
padding: 24px;
|
|
|
|
}
|
2024-10-25 14:35:16 +02:00
|
|
|
|
|
|
|
&__header {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 18px;
|
|
|
|
padding-bottom: 18px;
|
|
|
|
border-bottom: 2px solid $color-gray-700;
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__title {
|
|
|
|
@include font(16, 24, 600);
|
|
|
|
color: $color-blueberry;
|
2024-10-28 12:26:13 +01:00
|
|
|
margin: 0 0 4px 0;
|
2024-10-25 14:35:16 +02:00
|
|
|
display: block;
|
|
|
|
}
|
2024-10-28 12:26:13 +01:00
|
|
|
|
|
|
|
&__description {
|
2024-10-25 14:35:16 +02:00
|
|
|
@include font(14, 20, 400);
|
2024-10-28 12:26:13 +01:00
|
|
|
color: $color-gray-800;
|
|
|
|
margin: 0;
|
2024-10-25 14:35:16 +02:00
|
|
|
}
|
|
|
|
}
|
2024-10-23 08:56:47 +02:00
|
|
|
}
|