This commit is contained in:
Roman Pyrih
2025-08-13 14:53:02 +02:00
parent 3f1046f04f
commit 334c87e363
4 changed files with 455 additions and 63 deletions

View File

@@ -662,18 +662,20 @@
margin-bottom: 0;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item.highlight {
background-color: #22a9e1;
background-color: rgba(34, 169, 225, 0.1);
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item h4 {
color: #181c1d;
font-size: 16px;
color: var(--e-global-color-secondary);
font-family: "Plus Jakarta Sans", Sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 1.5;
text-transform: uppercase;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item p {
color: #181c1d;
font-size: 16px;
color: var(--e-global-color-secondary);
font-family: "Plus Jakarta Sans", Sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
}
@@ -683,12 +685,57 @@
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item p strong {
font-weight: 600;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item a {
display: block;
color: #181c1d;
font-size: 16px;
font-weight: 600;
line-height: 1.5;
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item h5 {
position: relative;
color: var(--e-global-color-secondary);
font-family: "Plus Jakarta Sans", Sans-serif;
font-size: 14px;
font-weight: 700;
line-height: 1.3;
margin-top: 25px;
margin-bottom: 20px;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item h5::before {
content: "";
position: absolute;
left: 0;
top: -12px;
right: 0;
width: 100%;
height: 1px;
background: #f5f5f5;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item ul {
padding: 0;
margin: 0;
list-style: none;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item ul:not(:last-child) {
margin-bottom: 20px;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item ul li {
display: flex;
flex-direction: row;
align-items: center;
gap: 5px;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item ul li:not(:last-child) {
margin-bottom: 10px;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item ul li img {
width: 14px;
height: 14px;
-o-object-fit: contain;
object-fit: contain;
-o-object-position: center;
object-position: center;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .location-item ul li a {
color: var(--e-global-color-secondary);
font-family: "Plus Jakarta Sans", Sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.3;
}
.elementor-widget-places-map .s-content.s-style-1 .s-left-col .map-point-info .map-point-info--body .inst-client {
position: relative;

File diff suppressed because one or more lines are too long

View File

@@ -879,22 +879,22 @@
}
&.highlight {
background-color: #22a9e1;
background-color: rgb(34, 169, 225, 0.1);
}
h4 {
color: #181c1d;
font-size: 16px;
// font-family: $font3;
color: var(--e-global-color-secondary);
font-family: 'Plus Jakarta Sans', Sans-serif;
font-size: 14px;
font-weight: 600;
line-height: 1.5;
text-transform: uppercase;
}
p {
color: #181c1d;
font-size: 16px;
// font-family: $font3;
color: var(--e-global-color-secondary);
font-family: 'Plus Jakarta Sans', Sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.5;
@@ -907,13 +907,60 @@
}
}
a {
display: block;
color: #181c1d;
font-size: 16px;
// font-family: $font3;
font-weight: 600;
line-height: 1.5;
h5 {
position: relative;
color: var(--e-global-color-secondary);
font-family: 'Plus Jakarta Sans', Sans-serif;
font-size: 14px;
font-weight: 700;
line-height: 1.3;
margin-top: 25px;
margin-bottom: 20px;
&::before {
content: '';
position: absolute;
left: 0;
top: -12px;
right: 0;
width: 100%;
height: 1px;
background: #f5f5f5;
}
}
ul {
padding: 0;
margin: 0;
list-style: none;
&:not(:last-child) {
margin-bottom: 20px;
}
li {
display: flex;
flex-direction: row;
align-items: center;
gap: 5px;
&:not(:last-child) {
margin-bottom: 10px;
}
img {
width: 14px;
height: 14px;
object-fit: contain;
object-position: center;
}
a {
color: var(--e-global-color-secondary);
font-family: 'Plus Jakarta Sans', Sans-serif;
font-size: 14px;
font-weight: 400;
line-height: 1.3;
}
}
}
}