html,
body {
    padding: 0;
    margin: 0;
    background: rgb(31, 31, 31);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.disablescroll {
    overflow: hidden;
}

#container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    min-width: 640px;
}

#confirmcopy {
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    color: #fff;
    position: absolute;
    z-index: 10;
    background-color: black;
    display: none;
}

#confirmcopy.show {
    display: flex;
}

textarea {
    opacity: 0;
    position: absolute;
    z-index: -1;
    top: 0;
}

.copycontainer {
    background-color: #ea524f;
    margin: 0 auto;
    padding: 10px 2px 38px 0px;
    color: #fff;
    text-align: center;
    position: fixed;
    right: 0;
    top: calc(50% - 104px);
    z-index: 2;
    transition: all 1s ease;
}

.outtie {
    transform: translateX(0%);
    transition: all 1s ease;
}

.innie {
    transform: translateX(100%);
    transition: all 1s ease;
}

.copycontainer::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 20px;
    top: 0;
    left: -20px;
    background-color: #da4643;
    cursor: pointer;
}

.copycontainer span {
    position: absolute;
    width: 189px;
    transform: rotate(-90deg);
    left: -105px;
    font-size: 13px;
    color: #ff9e9c;
    top: 90px;
    cursor: pointer;
}

#copyhtml,
#copycss {
    cursor: pointer;
    margin-top: 20px;
}

.copycontainer i {
    font-size: 30px;
    font-size: 30px;
    width: 100%;
    text-align: center;
}

#colorpicker {
    height: 400px;
    width: 300px;
    background-color: rgb(53, 53, 53);
    border-radius: 5px;
    margin: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#example {
    margin: 40px;
}

#colorpicker .colorp {
    width: 16.666%;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#shadcolorvalue {
    color: #717171;
    font-size: 18px;
    text-align: center;
    margin-top: 50px;
    position: relative;
}

#copytoclip {
    width: 100%;
    text-align: center;
    color: rgb(228, 228, 228);
}

#bgtitle,
#shadowtitle {
    font-size: 14px;
}

#bghextitle,
#shadowhextitle {
    font-size: 18px;
}

#bgcolorvalue {
    color: #717171;
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

#bgcolorvalue span {
    font-size: 25px;
}

#bgcolorvalue::after {
    content: '';
    position: absolute;
    z-index: 0;
    border: 2px solid #717171;
    height: 128px;
    width: 50px;
    border-right: none;
    top: 29px;
    left: -20px;
}

#shadcolorvalue::after {
    content: '';
    position: absolute;
    border: 2px solid #717171;
    height: 121px;
    width: 47px;
    border-left: none;
    top: -92px;
    right: -14px;
}

#colorpicker .colorp .lilcircle {
    height: 30px;
    width: 30px;
    transform: scale(.7);
    background-color: #008fee;
    border-radius: 50%;
    cursor: pointer;
    transition: all .5s ease;
}

#colorpicker .colorp .lilcircle:hover,
#colorpicker .colorp .lilcircle.active {
    transform: scale(1);
    transition: all .5s ease;
}

#colorpicker #example {
    height: 400px;
    width: 300px;
    background-color: rgb(53, 53, 53);
    border-radius: 5px;
    margin: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#circle {
    background-color: #6200EE;
    width: 180px;
    z-index: 1;
    position: relative;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#circle i {
    font-size: 100px;
    color: white;
}

#icon {
    cursor: pointer;
}

@media only screen and (max-width: 740px) {
    .copycontainer {
        display: none;
    }
}