body {
    background-color: #eee;
}

.accordion .card-header {
    cursor: pointer;
}

.list {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.list li {
    display: block;
    float: left;
}

/****************************************************************************************/

/**
 * Functionality Classes
 */

.click-to-copy input {
    cursor: pointer;
}

/****************************************************************************************/

/**
 * Emojis Page
 */

#emojis h2 {
    color: #aaa;
    font-size: 1em;
    margin-left: 10px;
    text-transform: uppercase;
}

#emojis ul.list {
    font-size: 2em;
}

#emojis ul.list li {
    width: 50px;
}

#emojis ul.list li input {
    background-color: transparent;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 100%;
}

#emojis ul.list li input:hover {
    background-color: #eee;
}

#emojis ul.list li input:focus {
    background-color: #eee;
    outline: none;
}

#emojis ul.list li input:active {
    background-color: #0ff;
}

#emojis ul.list li input::selection {
    background-color: transparent;
}

#emojis ul.list li .check {
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    border-radius: 50%;
    box-shadow: inset 0 0 0 #7ac142;
    display: none;
    margin: 8px 0 0 10px;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 2;
    width: 30px;
    height: 30px;
}

#emojis ul.list li.copied input {
    display: none;
}

#emojis ul.list li.copied .check {
    display: block;
}

#emojis ul.list li .check__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

#emojis ul.list li .check__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

#emojis .card ul {
    padding-left: 1.25rem;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0 0 0 30px #7ac142;
    }
}

/****************************************************************************************/

/**
 * Whois Page
 */

#whois iframe {
    border: 0;
    overflow: scroll;
    height: 100vh;
    width: 100%;
}