2023-03-17 16:05:22 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
Divide the Details page into 3 main sections:
|
|
|
|
- Head (Picture, Title, Picture gallery & Videos, Price, Details)
|
|
|
|
*/
|
|
|
|
.details-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
2023-03-20 20:37:16 +00:00
|
|
|
align-items: start;
|
|
|
|
padding: 0px 15px;
|
2023-03-26 22:26:38 +00:00
|
|
|
margin-top: 30px;
|
2023-03-17 16:05:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details-head {
|
|
|
|
display: flex;
|
2023-03-20 20:37:16 +00:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
2023-03-26 22:26:38 +00:00
|
|
|
gap: 20px;
|
|
|
|
margin-bottom: 15px;
|
2023-03-20 20:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details-head-title {
|
2023-03-26 22:26:38 +00:00
|
|
|
font-size: 21px;
|
|
|
|
font-family: Inter;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
2023-03-25 17:12:51 +00:00
|
|
|
}
|
|
|
|
|
2023-03-26 22:26:38 +00:00
|
|
|
.details-head-agent-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: center;
|
|
|
|
gap: 20px;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
margin: 10px 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-head-agent-profile-picture {
|
|
|
|
width: 75px;
|
|
|
|
height: 75px;
|
|
|
|
background-color: gray;
|
|
|
|
border-radius: 100%;
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-head-agent-text-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: start;
|
|
|
|
font-family: Inter;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-head-agent-heading {
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-head-agent-subheading {
|
|
|
|
font-size: 15px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: rgb(113, 113, 113);
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
gap: 15px;
|
|
|
|
margin-top: -10px;
|
2023-03-27 11:39:24 +00:00
|
|
|
margin-bottom: 30px;
|
2023-03-26 22:26:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-description {
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: Inter;
|
|
|
|
line-height: 30px;
|
|
|
|
white-space: pre-line;
|
|
|
|
color: rgba(34, 34, 34, 0.873);
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-divider {
|
|
|
|
width: 100%;
|
|
|
|
height: 1px;
|
|
|
|
background-color: rgba(0, 0, 0, 0.1);
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-features {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
align-items: start;
|
|
|
|
gap: 25px;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
margin-bottom: 60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-feature-item {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: center;
|
|
|
|
gap: 20px;
|
|
|
|
|
|
|
|
font-family: Inter;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-feature-item-icon-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-feature-item-text-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
gap: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-feature-item-text-title {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-feature-item-text-subtitle {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 400;
|
|
|
|
color: rgb(113, 113, 113);
|
2023-03-27 00:09:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: start;
|
|
|
|
align-items: center;
|
|
|
|
gap: 30px;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-title {
|
|
|
|
font-size: 24px;
|
|
|
|
font-family: Inter;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-selection-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 30px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-selection-container:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-selection-item-selected {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
font-family: Inter;
|
|
|
|
font-size: 15px;
|
|
|
|
padding-bottom: 6px;
|
|
|
|
border-bottom: 3px solid #04B2D9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-selection-item-unselected {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
gap: 10px;
|
|
|
|
|
|
|
|
font-family: Inter;
|
|
|
|
font-size: 15px;
|
|
|
|
|
2023-03-27 00:22:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-media-slideshow-frame {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
height: 360px;
|
|
|
|
background-color: rgba(128, 128, 128, 0.151);
|
|
|
|
border-radius: 20px;
|
2023-03-27 10:30:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-units-description {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 14px;
|
|
|
|
font-family: Inter;
|
|
|
|
line-height: 30px;
|
|
|
|
white-space: pre-line;
|
|
|
|
color: rgba(34, 34, 34, 0.873);
|
|
|
|
}
|
|
|
|
|
|
|
|
.details-body-unit-features {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
align-items: start;
|
|
|
|
gap: 25px;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 200px;
|
|
|
|
margin-bottom: 60px;
|
|
|
|
}
|
2023-03-27 11:39:24 +00:00
|
|
|
|
|
|
|
.details-body-disclaimer {
|
|
|
|
width: 100%;
|
|
|
|
font-size: 13px;
|
|
|
|
font-family: Inter;
|
|
|
|
}
|