﻿.shop-by-age-level-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 35px;
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .shop-by-age-level-grid {
        grid-template-columns: 1fr;
    }
}
        

.large-circle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 50%;    
    margin: 15px;    

    position: relative;
}

/* --------- ipad portrait -------------  */
@media screen and (min-width: 481px) and (max-width: 1366px) {
    .large-circle {
        width: 175px;
        height: 175px;
    }
}


/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .large-circle {
        width: 125px;
        height: 125px;
    }
}
        


    .large-circle > .sub-text {        
        font-weight: bold;
        font-size: 1rem;
        width: 100%;
        padding:10px;
    }


    /* --------- iphone portrait -----------  */
    @media only screen and (max-device-width: 540px) {
        .large-circle > .sub-text {             
            font-size: .8rem;
        }
    }
        


.large-circle-text {
    font-size: 3rem;
    font-weight: bold;
}



/* --------- iphone portrait -----------  */
@media only screen and (max-device-width: 540px) {
    .large-circle-text {
        font-size: 2rem;
    }
}
        
        
        

.shop-by-age-level-container {
    margin-bottom: 150px;
    text-align: center;
}
