File: D:/HostingSpaces/SBogers10/farmfun.komma.pro/resources/sass/kms/sections/_planning.scss
.c-planning {
padding: 40px;
background: white;
}
.c-planning__heading {
display: flex;
justify-content: space-between;
}
.c-planning__title {
color: $dark-gray;
margin: 0;
line-height: 1;
}
.c-planning__block-out-button {
background-color: $darkerBlue;
border: none;
padding: 10px 20px;
border-radius: 4px;
color: white;
//font-weight: bold;
font-size: 0.75rem;
cursor: pointer;
}
.c-planning__popup {
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 264px;
background-color: $whitish;
color: $darker-gray;
border-radius: 6px;
padding: 12px;
box-shadow: 0 10px 30px -15px rgba(0,0,0,0.5);
&.is-hidden {
display: none;
}
}
.c-planning__popup-content {
line-height: 1.6;
&.is-hidden {
display: none;
}
h3 {
margin: 0 0 8px;
font-size: 14px;
font-weight: bold;
}
p {
margin: 0;
font-size: 13px;
}
i {
font-weight: bold;
color: $darkBlue;
}
}