

body,
html {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Akshar';
    color: #2C2E35;
}


model-viewer {
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.container {
    width: 100%;
    height: 100%;
    background: #ffffff;
}


#ar-button {
    width: calc(100% - 40px);
    box-sizing: border-box;
    padding: 0px 16px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    align-items: center;
    appearance: none;
    background: #2D88D9;
    border: 0;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    height: 40px;
    justify-content: center;
    list-style: none;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
}

#ios-ar-btn{
    width: calc(100% - 40px);
    box-sizing: border-box; 
}


#ios-ar-btn a, #scene-viewer-btn a{
    
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    appearance: none;
    background: #2D88D9;
    border: 0;
    border-radius: 3px;
    color: #fff;
    cursor: pointer;
    height: 40px;
    list-style: none;
    overflow: hidden;
    text-align: left;
    text-decoration: none;
}
#ios-ar-btn a img, 
#ar-button img, 
#scene-viewer-btn a img, 
#btnToWebsite img, 
#btnToWebsite-ios img{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}



h2 {
    font-size: 1em;
    text-align: center;
}



.inactive {
    opacity: 0;
    pointer-events: none;
}

.lds-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ripple div {
    position: absolute;
    border: 4px solid #2999d1;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

.cta-container{
    position: absolute;
    width: 100%;
    height: 100vh;
}

#btnToWebsite{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 12vh;
}

#btnToWebsite, #btnToWebsite-ios {
font-weight: 400;
  align-items: center;
  appearance: none;
  background: #2D88D9;
  border: 0;
  border-radius: 3px;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  font-size: 16px;
}
.hidden{
    display: none !important;
}
#btnToWebsite{
    position: absolute;
}
#btnToWebsite-ios{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}


.title{
font-size: 32px;
font-weight: 700;
color: #2D88D9;
}
.subtitle{
    font-size: 14px;
}

#gestures-tooltip.android{
    position: absolute;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

#gestures-tooltip.ios{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    height: 100vh;
}

#instruction{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.instruction-container{
    border: 2px solid #ccc;
    border-radius: 2px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.instruction-title{
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 50px;
    border-bottom: 2px solid #ccc;
}
.instruction-content{
    padding: 20px;
}

.gesture {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 10px;
}

.gesture img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-right: 10px;
}

.gesture h3 {
    margin: 0;
    font-size: 16px;
}

.gesture p {
    margin: 0;
    font-size: 12px;
}



footer{
    position: fixed;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 300;
    color: #7F8D9B;
}

@supports (height: 100dvh) {
    #gestures-tooltip.ios, #gestures-tooltip.android {
        height: 100dvh;
    }
}

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}