:root {
    --dark-green: #364E4D;
    --light-green: #D9E2DF;
    --pink: #FAD5DD;
    --yellow: #FCECCB;
    --white: #FFFFFF;
}
/* Fonts */
@font-face {
	font-family: "Limes Slab";
	src: url("fonts/limes-slab-bold.otf") format("embedded-opentype"),
	url("fonts/limes-slab-bold.ttf") format("truetype"),
	url("fonts/limes-slab-bold.woff") format("woff"),
	url("fonts/limes-slab-bold.woff2") format("woff2");
	font-style: normal;
	font-weight: 700;
}
/* Margins */
.mt-32 {
    margin-top: 32px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-16 {
    margin-top: 16px;
}
/* Backgrounds */
.bg-light-green {
    background-color: var(--light-green);
}
/*  */
.max-736 {
    max-width: 736px;
    margin-left: auto;
    margin-right: auto;
}
/* Buttons */
#overdiv .button.dark-green,
#overdiv:not(.admin) .button.dark-green:hover {
	background-color: var(--dark-green);
    color: var(--yellow);
}
/* Popup */
.popup-outer * {
    box-sizing: border-box;
}
.popup-outer {
	z-index: 16;
	position: fixed;
	background-color: rgba(0,0,0,.75);
	width: 100vw;
	height: 100vh;
	top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Nunito Sans", serif;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-green);
}
.popup-inner {
    width: 100%;
    max-width: 600px;
    padding: 32px;
    background-color: var(--light-green);
    margin: 24px;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.05);
}
.popup-title {
    font-family: "Limes Slab", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    text-align: center;
}
.popup-buttons {
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}
.popup-buttons button {
	font-size: 22px;
	line-height: 1.36;
	padding: 4px 16px;
	width: 50%;
    font-family: "Limes Slab", sans-serif;
    line-height: 1.4;
    background-color: var(--dark-green);
    color: var(--yellow);
    border-radius: 0;
    border: none;
    cursor: pointer;
}
/* Header */
#header.header-collection {
    background-color: #FFFFFF;
}
.header-collection .overdiv {
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-collection #header_left,
.header-collection #header_right {
    width: 100%;
    max-width: 160px;
}
.header-collection #header_logo {
    max-height: 80px;
}
.header-collection #header_right {
    gap: 42px;
}
.header-collection #header_help {
    cursor: pointer;
}
/* Main */
#overdiv.page-collection h1,
#overdiv.page-collection h2,
#overdiv.page-collection h3,
#overdiv.page-collection h4,
#overdiv.page-collection h5,
#overdiv.page-collection .header-25,
#overdiv.page-collection .header-22 {
    font-family: "Limes Slab", sans-serif;
}
#overdiv.page-collection .header-25 {
	font-weight: 700;
	font-size: 25px;
	line-height: 1.1;
}
#overdiv.page-collection .header-22 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
}
#overdiv.page-collection #main {
    font-family: "Nunito Sans", sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-green);
}
#overdiv.page-collection:not(.admin) #main {
    margin-top: 96px;
}
#overdiv.page-collection .button {
    font-family: "Limes Slab", sans-serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 700;
    min-width: 96px;
    min-height: 64px;
    max-width: max-content;
    border-radius: 0;
}
#overdiv.page-collection .button-regular {
    font-size: 26px;
    line-height: 1.15;
    padding: 6px 32px;
    min-height: 48px;
    min-width: 96px;
}
#overdiv.page-collection .button-small {
    font-size: 22px;
    line-height: 1.36;
    padding: 4px 16px;
    min-height: 40px;
    min-width: 96px;
}
#overdiv.page-collection .button.disabled {
    opacity: .5;
}
#overdiv.page-collection input {
    margin: 0;
    border-radius: 0;
    padding: 0 16px;
    height: 40px;
}
#overdiv.page-collection .container input[type="radio"],
#overdiv.page-collection .container input[type="checkbox"] {
    height: 24px;
}
#overdiv.page-collection .container {
    line-height: 24px;
}
#overdiv.page-collection .checkmark {
    top: 0;
}
#overdiv.page-collection .form-group {
    flex-wrap: nowrap;
    gap: 8px;
}
#overdiv.page-collection .form-group.form-radio {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
#overdiv.page-collection .form-group-gap-8 .form-group + .form-group {
    margin-top: 8px;
}
#overdiv.page-collection .form-group + .form-group {
    margin-top: 16px;
}
#overdiv.page-collection select {
    width: 100%;
    border-radius: 0;
    appearance: none;
    background: url(images/arrow-down-green.png) no-repeat calc(100% - 16px) #FFFFFF;
    cursor: pointer;
    height: 40px;
    margin: 0;
    color: var(--dark-green);
    border: 1px solid var(--dark-green);
}
#overdiv.page-collection .form-label {
    min-width: 112px;
    line-height: 1.2;
    flex-shrink: 0;
	width: max-content;
}
#overdiv.page-collection .form-textarea {
    align-items: flex-start;
}
.form-max-character {
    text-align: right;
    margin-bottom: 8px;
}
#overdiv.page-collection textarea {
    min-height: 176px;
    border: 1px solid var(--dark-green);
}
#overdiv.page-collection .container input:checked ~ label {
    color: var(--dark-green);
}
#overdiv.page-collection .container input:checked ~ .checkmark.radiomark,
#overdiv.page-collection .container input:checked ~ .checkmark {
    border: 1px solid var(--dark-green);
}
#overdiv.page-collection .container input:checked ~ .radiomark::after,
#overdiv.page-collection .container input:checked ~ .checkmark {
    background-color: var(--dark-green);
}
#overdiv.page-collection .container input:checked ~ .checkmark::after {
	top: 3px;
	width: 6px;
	border-width: 0 1px 1px 0;
}
#overdiv.page-collection .container input:checked ~ .radiomark::after {
    top: 0;
    width: 16px;
    height: 16px;
    border: 3px solid #FFF;
}
#collection_banner img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#collection_page_container {
    max-width: 784px;
    padding-top: 48px;
    padding-bottom: 64px;
}
#collection_page_container.submitted {
    max-width: 1168px;
}
#collection_page_container.submitted h1 {
    text-align: center;
}
#collection_page_container h1 {
    font-family: "Limes Slab", sans-serif;
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: -0.45px;
    margin-bottom: 40px;
}
#collection_container {
    position: relative;
    min-height: 180px;
}
#collection_total {
    position: absolute;
    inset: 0 calc(100% + 32px) auto auto;
    width: 100%;
    max-width: 160px;
    font-size: 14px;
    height: 100%;
}
#collection_total > div {
    position: sticky;
    top: 132px;
    left: 0;
}
#collection_total_box {
    font-family: "Limes Slab", sans-serif;
    background-color: var(--pink);
    padding: 24px 24px 22px 24px;
    line-height: 1;
    margin-bottom: 16px;
}
#collection_total_box .total-label {
    font-size: 25px;
    margin-bottom: 4px;
}
#collection_total_box .total {
    font-size: 30px;
}
#collection_right {
    display: grid;
    gap: 24px;
}
.collection-section.disabled {
    opacity: 0.5;
}
.collection-section:not(.disabled) .collection-section-title i {
    cursor: pointer;
}
.collection-section.open .collection-section-title i::before {
    content:"\f068";
}
.collection-section:not(.open) .collection-section-bottom {
    display: none;
}
.collection-section-title {
    font-family: "Limes Slab", sans-serif;
    font-size: 30px;
    line-height: 1.1;
    background-color: var(--dark-green);
    color: var(--yellow);
    padding: 8px 16px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.collection-section-title i {
    font-size: 14px;
}
.collection-section-bottom {
    padding: 24px;
    background-color: var(--light-green);
}
.collection-section[data-section="service-type"] .form-group {
    margin-top: 16px;
    margin-bottom: 32px;
}
#property_postcode_group .button {
    flex-shrink: 0;
}
#property_postcode_group .button {
    margin-left: 8px;
}
#property_postcode {
    text-transform: uppercase;
}
.no-postcode {
    display: none;
    padding: 32px;
    background-color: var(--dark-green);
    color: var(--yellow);
    margin-top: 24px;
}
#property_selection {
    display: none;
}
.enter-address-manually {
    font-weight: 400;
    color: var(--dark-green);
    margin: 24px 0;
}
.full_property_details_container {
    display: none;
    margin-top: 10px;
}
.address_container {
    display: none;
    margin-top: 32px;
}
#flat_apartment_floor {
    display: none;
}
#flat_apartment_lift {
    display: none;
}
#other_field{
    display: none;
}
.giftaid_taxpayer_conatiner{
    display: none;
}
.giftaid-logo {
    margin: 0 auto;
    max-width: 208px;
}
.rooms {
    display: grid;
    gap: 8px;
}
.room:has(.invalid) {
    border: 2px solid #D0142C;
}
.room-name {
    font-family: "Limes Slab", sans-serif;
    font-size: 25px;
    line-height: 1.1;
    background-color: var(--dark-green);
    color: var(--yellow);
    padding: 8px 16px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    gap: 16px;
}
.room-name i {
    font-size: 12px;
    cursor: pointer;
}
.room-name .items-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow);
    color: var(--dark-green);
    width: max-content;
    min-width: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    font-size: 20px;
    margin-left: 16px;
    padding: 0 2px;
}
.room.open .room-name i::before {
	content: "\f068";
}
.room:not(.open) .room-items-section {
    display: none;
}
.room-items-section {
    padding: 24px;
    background-color: var(--white);
}
.room-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
#overdiv.page-collection .room-items select {
    max-width: 72px;
    margin-right: 12px;
}
.room-items-extra {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--yellow);
}
.room-items-extra h5 {
    margin-bottom: 16px;
}
.room-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--yellow);
}
.room-item-right {
    width: 304px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}
#overdiv.page-collection .room-item-right select {
    width: 128px;
}
.room-items-images {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.room-items-images:empty {
    display: none;
}
.room-items-images .room-items-image {
    position: relative;
    width: 80px;
    height: 56px;
    background-color: #D9D9D9;
    text-align: center;
}
#overdiv .room-items-images .room-items-image button.no-style {
    position: absolute;
    inset: -8px -8px auto auto;
    cursor: pointer;
    font-size: 16px;
    color: var(--dark-green);
    background-color: var(--white);
    border-radius: 100%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.room-items-buttons {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.add-items {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--dark-green);
    cursor: pointer;
}
.add-items i {
    font-size: 24px;
}
.room-files {
    display: none;
}
.submitted-box {
    background-color: var(--light-green);
    padding: 32px;
    font-size: 20px;
    line-height: 1.3;
}
#collection_page_container.payment-confirmation {
    max-width: 1168px;
    padding-top: 64px;
    padding-bottom: 64px;
}
#collection_thanks_text {
    margin-top: 32px;
    margin-bottom: 64px;
}
#overdiv #collection_thanks_button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 288px;
}
.payment-confirmation-details {
    position: relative;
    border-radius: 10px;
    background-color: var(--white);
    margin-top: 64px;
    padding: 64px;
}
.payment-confirmation-print {
    position: absolute;
    inset: 40px 40px auto auto;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.payment-confirmation-print span {
    text-decoration: underline;
}
.payment-confirmation-order {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}
.payment-confirmation-order,
.payment-confirmation-order-details {
    font-size: 20px;
    line-height: 1.3;
}
.payment-confirmation-order > div:first-child {
    width: 100%;
    max-width: 160px;
}
.payment-confirmation-order-details,
.payment-confirmation-order .number {
    font-weight: 900;
}
.payment-confirmation-table-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    font-weight: 900;
    margin-top: 24px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--yellow);
}
.payment-confirmation-table-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding: 8px 0;
    border-bottom: 1px solid var(--yellow);
}
.payment-confirmation-table-bottom {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, .228fr);
    justify-content: end;
    column-gap: 32px;
    row-gap: 8px;
}
.payment-confirmation-table-bottom > div:nth-child(2n+1) {
    text-align: right;
}
.payment-confirmation-table-bottom b {
    font-weight: 900;
}
/* Footer */
#prefooter {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--yellow);
    text-align: center;
}
#prefooter .ext-overdiv {
    max-width: 784px;
}
#prefooter_title {
    font-family: "Limes Slab", sans-serif;
    font-size: 35px;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.45px;
}
#overdiv.page-collection #footer {
    margin-top: 0;
}
#footer.payment-confirmation #footer_bottom {
    background-color: #001760;
    color: var(--white);
}
#timeSelectedText.invalid {
    color: #D0142C;
    font-weight: bold;
}