svg{
    color: var(--lightWhite);
}

.center{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.innerTitle{
    width: 880px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.realTitle{
    font-size: 38px;
    font-weight: 800;
    border-left: 8px solid var(--themeColor-light);
    padding-left: 10px;
}

.title .innerTitle span.Search {
    background-color: var(--body);
    color: #AAAAAA;
    border: 2px solid var(--body);
    border-radius: 8px;
    font-size: 0.8em;
    display: inline-block;
}

span#CLEAR_SEARCH_C {
    font-size: 1.5em;
    cursor: pointer;
}

.title .innerTitle span.Search {
    width: auto;
    height: 50px;
    margin-left: 15px;
    padding: 6px 15px;
}

.title .innerTitle span.Search>input {
    border-style: none;
    background-color: var(--body);
    height: 45px;
    font-size: 18px;
}

.title .innerTitle span.Search>input {
    display: inline-block;
    border: 0px solid #000000;
    border-radius: 0.5rem;
    padding: 0.3rem 0;
    margin: -0.3rem 0;
    outline: none;
}

.palette{
    max-width: 880px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, 160px);
    grid-gap: 30px 20px;
    margin-top: 45px;
}

.colorContainer{
    display: block;
    width: 160px;
    height: 220px;
}

.innerColor{
    padding: 15px 5px;
    background-color: var(--body);
    box-shadow: var(--boxShadow) 0 0 3px;
    border-radius: 5px;
    position: relative;
}

.color{
    width: 140px;
    height: 140px;
    margin: auto;
    margin-bottom: 5px;
}

.innerColor p{
    display: flex;
    justify-content: center;
}

.colorNum{
    font-size: 16px;
    color: #888888;
}

.copyNum{
    width: 25px;
    height: 25px;
    bottom: 0;
    right: 0;
    background-color: var(--themeColor-dark);
	padding: .3125rem;
	border-radius: 8px 0 5px 0;
    z-index: 1;
	position: absolute;
    color: var(--lightWhite);
    cursor: pointer;
}

.colorName{
    font-size: 18px;
    font-weight: 600;
}

div.copyIcon {
    margin-top: -0.150rem;
}

@media only screen and (max-width: 900px) {
    .palette{
        grid-template-columns: repeat(4, 160px);
    }

    .innerTitle{
        width: 700px;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 735px) {
    .palette{
        grid-template-columns: repeat(3, 160px);
    }
    .realTitle{
        margin-bottom: 15px;
    }
    .innerTitle{
        width: 520px;
    }
}

@media only screen and (max-width: 560px) {
    .palette{
        grid-template-columns: repeat(2, 160px);
    }
    .innerTitle{
        width: 340px;
    }
}

#INFO_SHOW_P {
    background-color: var(--themeColor-light);
    border: 2px solid #202020;
    border-radius: 1rem 1rem;
    padding: 0.3rem 2rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.5em;
    position: fixed;
}
