2024-11-08 14:02:05 +04:00
|
|
|
.ppcp-r-navigation-container {
|
2024-11-08 13:03:39 +04:00
|
|
|
padding: 24px 48px;
|
|
|
|
margin: 0 -20px 48px -20px;
|
|
|
|
border-bottom: 1px solid $color-gray-300;
|
2024-11-08 13:28:58 +04:00
|
|
|
position: relative;
|
2024-10-24 06:35:48 +02:00
|
|
|
|
2024-11-08 14:02:05 +04:00
|
|
|
.ppcp-r-navigation {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2024-10-24 06:35:48 +02:00
|
|
|
|
2024-11-08 14:02:05 +04:00
|
|
|
button.is-primary {
|
|
|
|
padding: 10px 18px;
|
|
|
|
justify-content: center;
|
|
|
|
margin: 0 0 0 12px;
|
|
|
|
&:not(:disabled) {
|
|
|
|
background-color: $color-blueberry;
|
|
|
|
}
|
2024-11-08 13:03:39 +04:00
|
|
|
}
|
2024-10-24 06:35:48 +02:00
|
|
|
|
2024-11-08 14:02:05 +04:00
|
|
|
button.is-tertiary {
|
|
|
|
@include font(16, 24, 600);
|
|
|
|
color: $color-gray-900;
|
|
|
|
&:hover{
|
|
|
|
background-color:none;
|
|
|
|
background:none;
|
|
|
|
}
|
2024-11-08 15:27:00 +04:00
|
|
|
}
|
2024-11-08 14:02:05 +04:00
|
|
|
|
2024-11-08 15:27:00 +04:00
|
|
|
&--left {
|
|
|
|
&__link {
|
|
|
|
@include font(20, 28, 400);
|
|
|
|
color: $color-gray-900;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 0 0 0 18px;
|
2024-11-08 14:02:05 +04:00
|
|
|
}
|
2024-10-24 06:35:48 +02:00
|
|
|
}
|
2024-11-08 13:03:39 +04:00
|
|
|
|
2024-11-08 14:02:05 +04:00
|
|
|
&--right a{
|
|
|
|
@include font(13, 20, 400);
|
|
|
|
color: $color-blueberry;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2024-11-08 13:03:39 +04:00
|
|
|
|
2024-11-08 14:02:05 +04:00
|
|
|
&--progress-bar {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0;
|
|
|
|
background-color: $color-blueberry;
|
|
|
|
height: 4px;
|
|
|
|
}
|
2024-11-08 13:28:58 +04:00
|
|
|
}
|
|
|
|
|
2024-11-08 13:03:39 +04:00
|
|
|
@media screen and (max-width: 480px) {
|
2024-11-08 14:02:05 +04:00
|
|
|
padding: 24px 35px;
|
|
|
|
.ppcp-r-navigation {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
row-gap: 8px;
|
2024-11-08 13:28:58 +04:00
|
|
|
|
2024-11-08 14:02:05 +04:00
|
|
|
&--progress-bar {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-11-08 13:28:58 +04:00
|
|
|
}
|
2024-11-08 13:03:39 +04:00
|
|
|
}
|
2024-10-24 06:35:48 +02:00
|
|
|
}
|