.strikethrough-title {
    margin-bottom: 16px;
}

.slot {
    margin-bottom: 8px;
    padding: 8px 16px;
    border: 3px solid var(--header);
    color: var(--header);

    cursor: pointer;
}

.slot p {
    margin: 0;
    line-height: 1;
}

a {
    cursor: pointer;
}

.title a:hover {
    background-color: white;
    color: var(--header);
}


/* CHECK BOXES */
.checkbox {
	display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;

    width: 32px;
    height: 32px;
    border: 2px solid var(--header);
    font-size: 26px;

    transition: background-color 0.25s ease-out, color 0.25s ease-out;
}

.checkbox div {
    opacity: 0;
    transition: opacity 0.25s ease-out;
}

@media (min-width: 767px) {
	.slot:hover .checkbox {
		background-color: var(--header);
		color: white;
	}

	.slot:hover .checkbox div {
		opacity: 1;
	}
}

.slot.selected .checkbox div {
	opacity: 1;
}

@media (min-wdith: 767px) {
	.slot:hover .checkbox {
		background-color: var(--header);
    	color: white;
	}
}


/* CAMPAIGN EVENT SLOTS */
.campaign-slot {
    padding: 16px;
}

.campaign-slot .flex-row {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.campaign-slot .flex-row > h3 {
    font-size: 26px;
}

.campaign-slot .flex-row > div:nth-child(2) {
    flex: 1;
}

.campaign-slot .info {
    margin: 12px 0;

    font-weight: bold;
    font-size: 18px;
}

.campaign-slot .info > p:first-child {
    text-transform: uppercase;
    font-size: 20px;
}

.campaign-slot .desc > p {
    margin: 6px 0;
}


/* VOLUNTEER SLOTS */
.volunteer-slot {
    display: flex;
    flex-flow: row nowrap;
    column-gap: 16px;
    align-items: center;
}

.volunteer-slot > div:nth-child(2) {
    flex: 1;
}

.volunteer-slot > div:last-child {
    font-size: 19px;
    font-weight: bold;
    flex-shrink: 0;
}

h3.date {
    font-size: 24px;
    margin-bottom: 0px;
    margin-top: 16px;
    color: var(--header);
}



/* THE SUBMISSION FORM */
#sign-up {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 0;

    background-color: var(--header);
    background-image: linear-gradient(30deg, var(--header-dark), var(--header), var(--header-dark));
    color: white;

    transition: max-height 0.4s linear;
}

#sign-up.active {
    max-height: 400px;
}

#sign-up > div {
    margin: 16px auto 32px;
}

#sign-up hr, #sign-up input {
    border-color: white;
    color: white;
}

#sign-up input[type="Submit"] {
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 4px 0;
    cursor: pointer;

    transition: background-color 0.25s ease-out, color 0.25s ease-out;
}

#sign-up input[type="Submit"]:hover {
    background-color: white;
    color: var(--header);
}