#customOpenHeyday {
    cursor: pointer;
}

.contact-support h2 {
    text-align: center;
    margin: 75px 30px 35px 30px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    font-weight: 700;
    font-size: 43px;
    color: #00a5ff!important;
}

/* Desktop */
@media (min-width: 981px) {
    .contact-support h2.spacing-minimal {
        margin: 0px 30px 35px 30px;
    }
}
    

.blue-text {
    color: var(--main-blue);
    font-weight: 700;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px;
}

.support-card {
    border:  var(--default-border);
    background-color: #FFFFFF;
}

.support-card:first-child {
    border-radius: 15px 0 0 15px;
}

.support-card:last-child {
    border-radius: 0 15px 15px 0;
}


.support-card-container {
    display: grid;
    grid-template-rows: min-content 50px auto auto 100px;
    flex-direction: column;
    padding: 42px;
    height: 100%;
    box-sizing: border-box;
}



.support-card-headline {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.support-card-title {
    font-size: 30px;
    font-weight: 700;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
    margin: 0;
    padding-bottom: 0;
}

.support-card-img {
    height: 60px;
}

.heyday-img {
    width: 100px;
}

.heyday-img, .phone-email {
    padding: 15px 0;
}

.hours-img {
    width: 20px;
    height: 20px;
    margin: 1em 1em 1em 0;
}

.hours-and-divider {
    border-left: 1px solid var(--main-blue);
    list-style: none !important;
    padding: 0 0 0 15px !important;
}

.phone-email {
    color: var(--main-blue);
    text-decoration: underline;
    font-weight: 700;
}

.support-card-text {
    margin: 15px 0;
    line-height: 22px;
}

.support-card-hours {
    display: flex;
}

.support-card-btn {
    color: #FFFFFF;
    border-width: 0px;
    border-radius: 38px;
    font-size: 17px;
    background-color: var(--main-blue);
    grid-row: 5 / 6;
    justify-self: start;
    align-self: end;
    padding: 7.5px 20px;
    text-transform: uppercase;
    font-weight: 700;
}



.connect-cards {
    display: grid;
    grid-template-columns: repeat(5, 19%);
    justify-content: space-between;
    /* column-gap: 15px; */
}

.connect-card {
    display: grid;
    border:  var(--default-border);
    align-items: center;
    justify-items: center;
    text-decoration: none;
    background-color: #FFFFFF;
}

.connect-card:first-child {
    border-radius: 15px 0 0 15px;
}

.connect-card:last-child {
    border-radius: 0 15px 15px 0;
}

.connect-card-title {
    color: #404040;
    font-weight: 700;
    text-align: center;
    margin: 45px 20px 15px 20px;
    font-size: 30px;
    font-family: 'Roboto',Helvetica,Arial,Lucida,sans-serif;
}

.connect-card-img {
    width: 150px;
    margin: 15px 10px 45px 10px;
}

/* Tablet Only */
@media (min-width: 768px) and (max-width:980px) {

    .contact-support h2 {
        font-size: 40px;
    }

    .support-card-container {
        padding: 15px;
    }

    .support-cards {
        column-gap: 7.5px;
    }

    .contact-support h3 {
        font-size: 20px;
    }

    .connect-cards {
        column-gap: 7.5px;
    }
    
    .support-card-btn {
        font-size: 16px;
    }

    .connect-card-title {
        margin: 45px 8px 15px 8px;
    }

    .connect-card-img {
        width: 75px;
    }
}

/* Small Mobile*/

/* Mobile Only */

@media (max-width: 767px) {
    
    .hide-mobile {
        display: none;
    }

    .contact-support h2 {
        font-size: 35px;
    }

    .support-card-container {
        grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
        grid-template-rows: 75px auto;
        padding-top: 30px;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }

    .support-card {
        border-bottom: none;
    }

    .support-card:last-child {
        border-bottom: var(--default-border);
        border-radius: 0 0 15px 15px;
    }

    .support-card:first-child {
		border-radius: 15px 15px 0 0;
	}

    .support-card-headline {
        justify-content: start;
    }

    .support-card-title {
        order: 1;
    }

    .phone-email, .heyday-img {
        justify-self: start;
        align-self: center;
        padding-bottom: 19px;
    }

    .support-card-img {
        order: 0;
        height: 50px;
        margin-right: 10px;
    }

    .support-card-btn {
        grid-row: unset;
        font-size: 12px;
        justify-self: start;
        margin-top: 23px;
    }

    .connect-cards {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0;
    }

    .connect-card {
        border-bottom: none;
    }

    .connect-card:nth-child(odd) {
        border-right: none;
    }

    .connect-card.first {
		border-radius: 15px 0 0 0;
	}

    .connect-card.second {
		border-radius: 0 15px 0 0;
	}

    .connect-card:last-child {
        grid-column: span 2;
        border: var(--default-border);
        border-radius: 0 0 15px 15px;
    }

    .connect-card-title,
    .support-card-title {
        font-size: 24px;
        padding: 0 0 0 5px;
    }
}

/* Small Desktop */
@media (min-width: 981px) and (max-width:1499px) {
    .connect-card-title,
    .support-card-title {
        font-size: 25px;
    }

    .connect-card-img {
        width: 100px;
    }
}

:root {
    --main-blue: #00a5ff;
    --default-border: 2px solid var(--main-blue);
}