body {
    font-family: Monospace;
    background-color: #222222;
    margin: 0px;
    overflow: hidden;
}

.rotate {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height:100%;
    background-image: url(Ic_screen_rotation_48px.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-color: rgb(99, 212, 240);
    z-index: 100;
}
.rotate-hide {
    display: none;
}

#container {
    position: absolute;
    top: 0px;
    right: 300px;
    width: calc(100% - 300px);
    height:100%;
}

.test{
    height: 2000px;
}

#gui{
    overflow: auto;
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0px;
    right: 0px;
}

#gui * {
    box-sizing: border-box;
}

#gui::-webkit-scrollbar{
    width:4px;
}
#gui::-webkit-scrollbar-thumb{
    border-width:1px 1px 1px 2px;
    border-color: #777;
    background-color: #aaa;
}
#gui::-webkit-scrollbar-thumb:hover{
    border-width: 1px 1px 1px 2px;
    border-color: #555;
    background-color: #777;
}
#gui::-webkit-scrollbar-track{
    border-width:0;
}
#gui::-webkit-scrollbar-track:hover{
    border-left: solid 1px #aaa;
    background-color: #eee;
}

/* Content */
.start-info {
    color: white;
    text-align: center;
}

.gui-item {
    height: auto;
    padding: 0px;
    background: rgb(76, 255, 85);
    margin-top: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
    -webkit-transition: .4s;
    transition: .4s;
}

.hide-gui-item {
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.switch-color-img {
    display: flex;
    margin: auto;
}

.switch-color-img > *{
    display: block;
    margin: auto;
}

span.from {
    /* display: block;
    margin: auto; */
}
span.to {
    /* display: block;
    margin: auto; */
}
span.center {
    /* display: block;
    margin: auto; */
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2196F3;
    -webkit-transition: .4s;
    transition: .4s;
}
.toggle:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked + .toggle {
    background-color: #ccc;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked + .toggle:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
.toggle.round {
    border-radius: 34px;
}
.toggle.round:before {
    border-radius: 50%;
}

input[type="file"] {
    display: none;
}
.custom-file-upload {
    position: relative;
    display: block;
    background-color: #ccc;
    cursor: pointer;
    margin: auto;
    width: 130px;
    height: 34px;
    border-radius: 34px;
}
.change-img{
    position: relative;
}
.change-img .content {
    pointer-events: none;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}
.thumb {
    position: relative;
    padding-top: 10px;
    width: 45%;
    padding-left: 1.7%;
}

.change-color{
    height: 200px;
    background-color: #ffffff;
    position: relative
}
.picker{
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}
.hex-color {
    width: 100px;
    margin-top: 10px;
    margin-bottom: 10px;
    border: 2px solid rgb(175, 175, 175);
    border-radius: 4px;
    text-align: center;
}

.slidecontainer {
    width: 100%;
    margin-top: 30px;
}
.slider {
    position: relative;
    -webkit-appearance: none;
    width: 100%;
    height: 20px;
    background: #2196F3;
    outline: none;
    /* opacity: 0.7; */
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin: 0px 0px 10px 0px;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    content: "1111";
    width: 25px;
    height: 25px;
    background: rgb(255, 255, 255);
    cursor: pointer;
    border-radius: 50%;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: rgb(255, 255, 255);
    cursor: pointer;
  }