html {
    image-rendering: optimizeQuality;
}

body {
    margin: 0;
}

.container {
    flex-flow: row wrap;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: #FDAE04;/* #f38211; */
}

.container h1 {
    text-align: center;
    width: 100%;
    color: white;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 5vh;
}

#sarahMockup {
    position: relative;
}

#svg-container {
    display: inline-flex;
    padding: 2.7vh; /* 0.0701888718734048 * width */
    align-items: center;
    background: url('/images/nexus6-v2.png')  center center no-repeat;
    background-size: contain;
    width: 39.18vh; 
    height: 80vh; /* 2,041675 * width */
}

@media only screen and (max-width: 750px) {
    #svg-container {
        display: inline-flex;
        padding: 2.0625vh; /* 0.0701888718734048 * width */
        align-items: center;
        background: url('/images/nexus6-v2.png')  center center no-repeat;
        background-size: contain;
        width: 29.385vh; 
        height: 60vh; /* 2,041675 * width */
    }
}

@media only screen and (max-width: 750px) {
    #svg-container {
        display: inline-flex;
        padding: 2.0625vh; /* 0.0701888718734048 * width */
        align-items: center;
        background: url('/images/nexus6-v2.png')  center center no-repeat;
        background-size: contain;
        width: 29.385vh; 
        height: 60vh; /* 2,041675 * width */
    }
}

.text-component {
    position: absolute;
    display: inline-block;
    width: 0;
    pointer-events: none;
}

.text-component img {
    width: 100%;
    opacity: 0;
  /*   background: rgba(243, 130, 17, 0.75); */
}

#svg-container svg {
    width: 100%;
    background: #303030;
}

.selectable {
    cursor: pointer;
}

.selectable:not(.toolbar-icon):hover {
    opacity: 0.8;
}


.toolbar-icon.active path {
    stroke: #007aff !important;
    fill: #007aff !important;
}

#hamburgerIcon.active line {
    stroke: #007aff !important;
    fill: #007aff !important;
}

#tabbarDashboardIcon.active path {
    stroke: none !important;
    fill: #007aff !important;
}

#toDoListIcon.active polyline {
    stroke: #007aff !important;
    fill: #007aff !important;
}

#toDoListIcon.active #toDoListCheck {
    stroke: white !important;
}

#toDoListIcon.active path {
    stroke: #007aff !important;
    fill: white !important;
}

.tab-text.active {
    fill: white !important;
}


.card {
    transform-style: preserve-3d;
    transform-origin: 26.36%;
   /*  transform-origin: 215.15625px; */
    transition: transform 1s;
}

.card g {
    backface-visibility: hidden;
    /** delay of 30 percent of 1s **/
    transition: opacity 0s linear 0.3s;
}

.card .back {
    transform: rotateY( -180deg );
    transform-origin: 26.36%;
    opacity: 0;
     /* transform-origin: 215.15625px; */
  }

.card.flipped {
    transform: rotateY( 180deg );
}

.card.flipped g:not(.back) {
    opacity: 0;
}

.card.flipped g.back {
    opacity: 1;
}

.mood-check {
    display: none;
}