.radius-table-wrapper {
    position: relative;
    margin: 48px auto;
    width: 90%;
}

.radius-table {
    border: 1px solid #9BC01B;
    border-radius: 14px;
    background-color: white;
}

.radius-table-row {
    display: flex;
}

.radius-table-border-bottom {
    border-bottom: 1px solid #9BC01B;
}

.radius-table-detail {
    width: 100%;
    text-align: left;
}

.radius-table-title,
.radius-table-detail {
    padding: 32px 48px;
    vertical-align: middle;
    border-bottom: 1px solid #9BC01B;
}

.radius-table.dark {
    border: 1px solid #D8D8D8;
}

.radius-table-title.dark {
    color: white;
    background-color: #71A370;
    border-right: 1px solid #D8D8D8;
}

.radius-table.dark .radius-table-title,
.radius-table.dark .radius-table-detail {
    border-bottom: 1px solid #D8D8D8;
}

.radius-table-title {
    font-weight: bold;
    color: #517550;
    border-right: 1px solid #9BC01B;
    background-color: #E2ECBA;
    width: 410px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radius-table .radius-table-detail {
    color: black;
}

.radius-table-row:last-child .radius-table-title,
.radius-table-row:last-child .radius-table-detail {
    border-bottom: none;
}

.radius-table-row:first-child .radius-table-title {
    border-top-left-radius: 12px;
}

.radius-table-row:first-child .radius-table-detail {
    border-top-right-radius: 12px;
}

.radius-table-row:last-child .radius-table-title {
    border-bottom-left-radius: 12px;
}

.radius-table-row:last-child .radius-table-detail {
    border-bottom-right-radius: 12px;
}

.feature-icon-top {
    position: absolute;
    top: -40px;
    left: 0px;
}

.feature-icon-top-building {
    margin-left: 16px;
}

#chick {
    height: 64px;
    width: auto;
}

.feature-icon-bottom {
    position: absolute;
    bottom: -52px;
    right: -13px;
}

#artwork {
    height: 148px;
    width: auto;
}

#panda {
    height: 64px;
    width: auto;
}

#rabbit {
    height: 64px;
    width: auto;
}

#building {
    height: 64px;
    width: auto;
}

.media-section {
    margin: 96px 0px;
}

.image-comment {
    text-align: center;
}

@media screen and (max-width: 768px) {
    .radius-table-wrapper {
        width: 100%;
    }

    .radius-table-title {
        width: 100%;
        border-right: none;
        justify-content: left;
        font-size: 1.2rem;
    }

    .radius-table-detail {
        justify-content: left;
    }

    .radius-table-row {
        display: block;
    }
    
    .radius-table-border-bottom {
	    border-bottom: 3px solid #9BC01B;
	}

    .radius-table-row:first-child .radius-table-title {
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .radius-table-row:last-child .radius-table-detail {
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }

    .radius-table-row:last-child .radius-table-title {
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
    }

    .radius-table {
        border: 3px solid #9BC01B;
    }

    .radius-table-row:last-child .radius-table-title {
        border-bottom: 3px solid #9BC01B;
    }

    .radius-table-title,
    .radius-table-detail {
        border-bottom: 3px solid #9BC01B;
        padding: 16px 24px;
    }

    .radius-table.dark {
        border: 3px solid #D8D8D8;
    }

    #chick {
        height: 48px;
    }
    
    #artwork {
	    height: 78px;
	}
    
    #panda {
        height: 48px;
    }
    
    #rabbit {
        height: 48px;
    }
    
    #building {
        height: 48px;
    }

    .feature-icon-top {
        left: 16px;
    }

    .feature-icon-bottom {
        right: 16px;
        bottom: -32px;
    }
}