html,
body {
    overflow-x: hidden;
}
html,
body {
    height: 100%;
    margin: 0;
}
.full-height {
    height: 100%;
    background: yellow;
}

.section-body {
    height: 100%;
    width: 100%;
    max-width: 450px;
    background: #fff;
}

.section-body .content-viewer button {
    position: absolute;
}

.section-body model-viewer {
    height: 100%;
    width: 100%;
}

.active {
    opacity: 1;
    width: 100%;
    height: 100%;
    margin: 0;
}

model-viewer{
    background-color: #ccc;
}
/* Content Viewer */
.content-viewer {
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    max-width: 450px;
    height: 100%;
    overflow: hidden;
}

.sliders {
    z-index: 2;
    color: #fff;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}
.sliders .active {
    font-size: 25px;
}
#last-display-img {
    position: absolute;
    top: 0;
    z-index: -1;
}

#home_color_1 {
    width: 50px;
    overflow: hidden;
    margin-top: -15px;
}
.home_color {
    height: 50px;
    width: 65px;
    border-radius: 15px;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
    transform: translate(0px, 15px);
    font-size: 10px;
    transition: 0.25s;
    opacity: 1;
}
.home_icon {
    width: 80px;
    height: 80px;
    margin: -15px;
    opacity: 0;
    animation: homeani 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.home_white {
    position: fixed;
    background: white;
    border-radius: 12px;
    top: 5px;
    left: 5px;
    width: 40px;
    opacity: 0;
    height: 40px;
}
.home_img {
    position: fixed;
    top: 8px;
    left: 50%;
    transform: translate(-50%, 0px);
    width: 25px;
    opacity: 1;
    height: 25px;
}
.home_text {
    position: fixed;
    width: 65px;
    height: 50px;
    top: 50%;
    line-height: 50px;
    text-align: center;
    transform: translate(0px, -50%) scale(0.8);
    font-size: 10px;
    color: white;
    margin-top: 15px;
}
@keyframes homeani {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*NAVBAR*/
.navbar {
    max-width: 450px;
    background: #000;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
}
.navbar .nav-link {
    color: #fff;
    font-size: 0.7rem;
}
.navbar img.color {
    height: 2.5rem;
}
.navbar img.icon {
    height: 2rem;
}

.navbar .color-chooser {
    background: transparent;
    position: absolute;
    top: -50px;
}
.navbar .color-chooser .color-img {
    height: 3rem;
}


/*ARROW ANIMATION */
.arrow-box{
    height: 100px;
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    background: rgba(0,0,0,0.5);
    border-top-left-radius:30px;
    border-top-right-radius:30px;
}
.arrow-box img{
    width:20px !important;
}
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}