.volunteer_types{
    display: flex;
}

.desktop .volunteer_types{
    flex: 1;
    justify-content: center;
}

.mobile .volunteer_types{
    flex-direction: column;
    justify-content: center;
}

.mobile .volunteer_type{
    margin-left: 0;
    margin-right: 0;
    width: calc(100% - 40px);
}

.volunteer_type{
    /* border: 1px solid black; */
    background-color: #c0defd;
    margin: 20px;
    padding: 20px;
    flex: 1;
}

.volunteer_type:first-of-type{
    margin-left: 0;
}

.volunteer_type:last-of-type{
    margin-right: 0;
}
.volunteer_type_label{
    width: unset;
}

.volunteer_type_checkbox_container{
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-size: 1.5rem;
    align-items: center;
    height: 3rem;
}

.volunteer_type_checkbox{
    height: 100%;
    margin: 0;
    padding: 0;
    aspect-ratio: 1;
    cursor: pointer;
    opacity: 0
}

.volunteer_type_checkbox:checked{
    background-color: var(--theme-red);
    border: 0;
}

.custom_checkbox{
    height: 60%;
    aspect-ratio: 1;
    background-color: rgb(255, 255, 255);
    display: flex;
    border: 2px solid var(--theme-black);
    border-radius: 4px;
    position: relative;
}

.custom_checkmark{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    color: white;
}

.custom_checkmark_img{
    max-width: 80%;
    max-height: 80%;
}

.volunteer_type_checkbox_container .custom_checkbox:has(input:checked){
    background-color: #009f13;
    border-color: #009f13;
}

.volunteer_name{
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
}

.volunteer_description{
    font-size: 1.5rem;
}

.volunteering_info{
    display: flex;
}

.volunteering_info_text{
    flex: 1;
}

.volunteering_image{
    flex: 1;
    width: 100%;
    aspect-ratio: 3/2;
}

.volunteering_description{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.volunteering_images{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mobile .volunteering_images_img{
    max-width: 46%;
    margin: 2% auto;
}

.volunteering_images_img{
    max-width: 32%;
    aspect-ratio: 3/4;
    max-height: 400px;
}