#interior-360 {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#exterior-360 {
    position: absolute;
    width: 90%;
    height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#colors-360 {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    width: 100%;
    /*margin-top: 2%;*/
    position: relative;
    z-index: 9;
}

.color {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 1rem;
    border: 3px solid #707070;
    transition: all 0.5s ease 0s;
}

.color.active {
    border: 3px solid white !important;
    box-shadow: 0px 0px 10px white !important;
}

.color:hover {
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}

.color.blue {
    background-color: #00809B;
}


.color.skygrey {
    background-color: #b6c2d0;
}
.color.darkblue {
    background-color: #31373d;
}

.color.teal {
    background-color: #468fa9;
}

.color.gold {
    background-color: #b6aa99;
}

.color.gray {
    background-color: #646b76;
}

.color.red {
    background-color: #d90d23;
}

.color.white {
    background-color: #d8dadd;
}
.color.skygray {
    background-color: #A3B2B7;
}

#sprites {
    /*margin-top: 15%;*/
    margin-bottom: -10%;
    position: relative;
    z-index: 0;
}

#bg-360 {
    margin: auto;
    margin-top: 2vw;
    width: 70px;
    height: 70px;
    border-radius: 10px;
    padding: 15px;
}

#selector-360 {
    display: flex;
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
}

.spritespin-progress {
    position: absolute;
    top: 45%;
    width: 100%;
}

.btn-s11 {
    background: url('../img/bg-button.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    min-width: 250px;
    color: white;
    font-family: galano-bold;
    padding: 15px 15px 25px;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    letter-spacing: 1px;
}

.btn-s11.active {
    background: url('../img/bg-button-active.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    color: #008DCE;
}

.spritespin-progress-label {
    color: black;
    text-shadow: 1px 1px black;
    margin-bottom: 10px;
}

.spritespin-progress-bar {
    background-color: #ff006a;
    min-height: 3px;
}

@media (max-width: 960px) {
    #sprites {
        margin-top: 10%;
    }

    #colors-360 {
        margin-top: 2%;
    }

    .btn-s11 {
        min-width: 200px;
        font-size: 22px;
        padding: 10px 20px 15px;
    }
}

@media (max-width: 480px) {
    #sprites {
        margin-top: 10%;
    }
    
    #colors-360 {
        margin-top: 10%;
    }

    .btn_left img, .btn_right img {
        width: 40px;
    }

    .btn-s11 {
        min-width: 150px;
        font-size: 16px;
    }

    #bg-360 {
        margin-top: 5vw;
        width: 55px;
        height: 55px;
        padding: 10px;
    }

    .color {
        margin: 0 0.5rem;
        width: 20px;
        height: 20px;
    }
}