.conferences .Normal h4 {
    padding: 0;
    margin: 0;
}
.conferences .card img {
    max-width:170px;
    min-width:170px;
}
a.conference-link, a.conference-link:link, a.conference-link:active, a.conference-link:visited {
    background-color: #334D7F;
    color: white;
    margin: 1rem 0;
}
    a.conference-link:hover {
        background-color: #e5ecfc;
        color: #334D7F;
    }
.conference-details img {
    max-width: 206px;
}
.switch-field {
    display: flex;
    margin-bottom: 2rem;
    overflow: hidden;
}

    .switch-field input {
        position: absolute !important;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        width: 1px;
        border: 0;
        overflow: hidden;
    }

    .switch-field label {
        background-color: #e4e4e4;
        color: rgba(0, 0, 0, 0.6);
        font-size: 1.25em;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        padding: 8px 16px;
        margin-right: -1px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease-in-out;
    }

        .switch-field label:hover {
            cursor: pointer;
        }

    .switch-field input:checked + label {
        background-color: #334D7F;
        box-shadow: none;
        color: #fff;
    }

    .switch-field label:first-of-type {
        border-radius: 4px 0 0 4px;
    }

    .switch-field label:last-of-type {
        border-radius: 0 4px 4px 0;
    }
