* {
    padding: 0;
    margin: 0;
}

.blankDiv {
    background-color: black;
    width: 100%;
    height: 50px;
}

.scoreBoard {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

.block {
    height: 50px;
    width: 50px;
    background-color: #d427277a;
    position: relative;
    z-index: 0;
    visibility: hidden;
}

.even {
    position: relative;
    top: 20px;
    left: -15px;
    background-color: #585858a8;
    border-radius: 50%;
    visibility: visible;
}

.car {
    height: 50px;
    width: 50px;
    /* background-color: #1026e97a; */
    position: absolute;
    border-radius: 50%;
    opacity: 1;
    z-index: 5;
    left: 0px;
    transition: transform 2s ease-in-out;
}

.car img {
    width: 100px;
    position: relative;
    top: -10px;
    opacity: 1;
}

.move {
    animation-name: moveForward;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes moveForward {
    0% {
        right: 0px;
    }
    100% {
        right: 100px;
    }
}

.itemDiv {
    position: relative;
    width: 100%;
    height: 150px;
    background-color: rgba(167, 116, 8, 0.281);
}

.item {
    width: 100px;
    height: 100px;
    background-color: rgba(8, 19, 167, 0.281);
}

.onSale {
    width: 220px;
    height: auto;
    z-index: 10;
}

.onSale:hover {
    animation-name: zoom;
    animation-duration: 2s;
    animation-timing-function: ease-oin;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    cursor: pointer;
}

@keyframes zoom {
    0% {
        width: 220px;
    }
    100% {
        width: 100%;
    }
}

.trans {
    position: absolute;
    transition-property: all;
    transition-duration: 2.6s;
    transition-timing-function: ease-out;
    /* transform: translate(560px, 0px); */
    width: 110px;
    /* height: 80px; */
}

.borderAdded {
    border: 2px dashed gray;
    z-index: 100;
}

.picContainer {
    display: inline-block;
    position: absolute;
}

.price {
    position: fixed;
    left: 10px;
    top: 180px;
    width: 180px;
    height: 100px;
    background-color: rgba(3, 18, 104, 0.671);
    border-radius: 10px;
    box-shadow: 2px 5px 12px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.price p {
    padding: 5px 5px 5px 5px;
    font-size: 1.5rem;
    color: white;
}

.itemName {
    font-size: 0.5rem;
}

.destContainer {
    position: absolute;
    right: 0;
    width: 200px;
}

.dest {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: rgba(8, 19, 167, 0.281);
}

.panelBox {
    margin: 30px auto 10px auto;
    width: 1024px;
    height: 420px;
    /* border: 2px dotted grey; */
    display: flex;
    justify-content: space-around;
}

.rotate {
    animation-name: rotation;
    animation-duration: 2.7s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    cursor: pointer;
}

@keyframes rotation {
    0% {
        transform: rotateY(0deg)
    }
    100% {
        transform: rotateY(1080deg)
    }
}

.option {
    width: 245px;
    height: 420px;
    margin: 0;
    padding: 0;
    background-color: rgba(23, 92, 5, 0.397);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: 2px dotted black;
    border-radius: 10px;
}

.evenOpt {
    background-color: rgba(38, 77, 250, 0.26);
}

.questionBlc {
    background-color: rgba(255, 217, 0, 0.555);
    align-self: flex-start;
}

.coin {
    width: 50px;
}

.shapeBlc {
    width: 60px;
    height: 60px;
    border: 2px solid grey;
    background-color: royalblue;
}

.answerSelection {
    margin: 0px auto;
    width: 900px;
    height: 60px;
    /* border: 1px solid grey; */
    display: flex;
    justify-content: space-between;
}

.answerSlot {
    width: 200px;
    height: 60px;
    border-radius: 10px;
    background-color: #16697a;
    color: white;
    font-size: 1.5em;
    text-align: center;
    align-items: center;
    padding: 15px 0px 0px 0px;
}

.answerSlot:hover {
    background-color: #61b15a;
    cursor: pointer;
}

.wcIcon {
    position: absolute;
    z-index: 5;
}

.pringTag {
    width: 200px;
    align-self: flex-start;
    align-content: flex-start;
}

#savingIcon {
    width: 200px;
    position: absolute;
    z-index: 5;
    bottom: 5px;
}

.hooray {
    position: absolute;
    bottom: 30%;
    display: none;
    z-index: 100;
}

#output {
    /* background-color: #2741d444; */
    width: 225px;
    height: 20px;
    font-size: 1em;
    z-index: 10;
    bottom: 0;
    position: relative;
}


/* 
colorBoard:
blue: #16697a
orange: #db6400
yellow: #ffa62b
ivory: #f8f1f1
green:#61b15a;

*/