@charset "UTF-8";

.defs {
    display: none;
}

a {
    color: #0ad;
    text-decoration: none;
}

a:hover {
    color: #07d;
    text-decoration: underline;
    cursor: pointer;
}

a.active {
    color: #454545;
    pointer-events:none;
}

ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

main {
    flex: 1;
}

h1 {
    font-size: 26px;
    max-width: 100%;
}

h2 {
    font-size: 22px;
}

h3 {
    font-size: 18px;
}

.reverse-color {
    color: #fdfdfd;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.flexbox-center {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    -webkit-align-items: center;
    -webkit-flex-direction: column;
    -webkit-justify-content: center;
}

.ring-item {
    border: 1px solid #ddd;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    cursor: pointer;
}

.ring-item:hover {
    background-color: #fdfdfd;
    transition: background 0.4s;
}

.ring-shadow {
    box-shadow: 0 2px 1px rgba(0,0,0, 0.05),0 2px 3px rgba(0,0,0, 0.05),0 3px 6px rgba(0,0,0, 0.05);
}

/***************************************************
* Media Queries
*/
@media (max-width: 1023px) {
    h1 {
        margin: 0 80px;
    }
}

@media (max-width: 414px) {
    body {
        font-size: 14px;
        line-height: 30px;
    }
    h1 {
        font-size: 22px;
        line-height: 32px;
        margin: 0 15px;
    }
}
