/*3D*/
.threedsection {
    width: 100vw;
    height: 100vh;
}

/*Hotspot Switch*/
#mainmodelload {
    width: 60vw;
    height: 100vh;
    left: 20vw;
}


.htsptswhwrp {
    z-index: 99;
    display: block;
    position: absolute;
}

/* Toggle Switch */

.toggle {
    position: relative;
    display: inline-block;
    height: 35px;
    width: 180px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    top: 90vh;
    margin: 20px;
    z-index: 100;

    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.toggle p {
    margin: 0 0 0 0;
    padding: 10px 0px 0px 15px;
    color: #fff;
    color: #423056;
    display: block;
    font-family: Futura, Helvetica Neue, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    width: 60px;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #423056;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-radius: 50%;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196f3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.Hotspot {
    background: #fff;
    border-radius: 32px;
    border: 0;
    box-shadow: 0 2px 4px #423056;
    box-sizing: border-box;
    cursor: pointer;
    height: 10px;
    width: 10px;
    padding: 8px;
    position: relative;
    transition: opacity 0.3s;
}

.Hotspot:not([data-visible]) {
    background: transparent;
    border: 4px solid #fff;
    box-shadow: none;
    height: 14px;
    width: 14px;
    pointer-events: none;
}

.Hotspot:focus {
    border: 4px solid #e1c16e;
    height: 14px;
    outline: none;
    width: 14px;
}

.Hotspot>* {
    opacity: 1;
    transform: translateY(-50%);
}

.HotspotAnnotation {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    color: #423056;
    display: block;
    font-family: Futura, Helvetica Neue, sans-serif;
    font-size: 10px;
    font-weight: 700;
    left: calc(100% + 0.5em);
    max-width: 128px;
    overflow-wrap: break-word;
    padding: 0.5em 0.5em;
    position: absolute;
    top: 50%;
    width: max-content;
}

.Hotspot:not([data-visible])>* {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% + 4px));
    transition: transform 0.3s, opacity 0.3s;
}

.wrapper {
    position: absolute;
    width: 330px;
    z-index: -10;
}

.figcaption {
    opacity: 0;
    position: absolute;
    z-index: -40;
    background: #ffffff;
    color: #423056;
    width: 30px;
    height: auto;
    max-height: 30px;
    border-radius: 50%;
    max-width: 220px;
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0.3s;
}

.figcaption.is-expanded {
    opacity: 1;
    width: 210px;
    border-radius: 4px;
    max-width: 220px;
    max-height: 200px;
    box-shadow: 0 2px 30px 0 rgba(0, 0, 0, 0.3);
    transition-delay: 0s;
}

.caption-copy-wrap {
    opacity: 0;
    overflow: hidden;
    max-height: 60px;
    transition: all 0.2s;
    transition-delay: 0s;
}

.figcaption.is-expanded .caption-copy-wrap {
    opacity: 1;
    white-space: normal;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-delay: 0.4s;
}

.caption-copy {
    font-family: sans-serif;
    margin: 0;
    padding: 10px 20px 20px 20px;
    font-size: 0.875rem;
    line-height: 1.28571429;
}


/*Color Switches*/
.variantwrp {
    z-index: 99;
    position: fixed;
    top: 50%;
    left: 85vw;
}

.flex-container {
    display: flex;
    flex-direction: column;
    position: sticky;
    bottom: 1%;
    right: 1%;
}

.flex-item-right {
    cursor: pointer;
    margin: 10px;
    width: 40px;
    height: 40px;
    transition: transform 0.2s;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
    color: #000;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.5);
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.flex-item-right:hover {
    transform: scale(1.1);
}