.carousel-inner {
    position: relative;
}
.home-icon {
    position: absolute;
    margin: 14px 0 0 88%;
    z-index: 1;
}
/*-------Reusable parts-------*/

.game-container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-family:'Roboto', sans-serif;
    backface-visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    
}

.game-container p {
    text-align: center !important;
}

.drag-game-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 25px;
}

.interface {
    position: relative;
    height: 150px;
    width: 100%;
}

.content-container {
    display: none;
}

.values-container {
    margin: 25px auto;
    padding: 10px;
}

.values {
    font-size: 60px;
    color: #B7A728;
    background-color: #272727;
    padding: 20px;
    border-radius: 10px;
}

.answer-container {
    max-width: 290px;
    max-height: 600px;
    text-align: center;
    margin: 0 20px;
    padding: 0;
    display: inline-block;
}

/*-------Btns-------*/

.btn-ctrls {
    margin-top: 25px;
    display: none;
}

.btn:link,
.btn:visited,
input[type=submit] {
    display: inline-block;
    padding: 10px 30px;
    font-weight: 300;
    text-decoration: none;
    border-radius: 200px;
    border: 1px solid #e67e22;
}

.btn-full:link,
.btn-full:visited,
input[type=submit] {
    background-color: #e67e22;
    color: #fff;
    margin: 7.5px;
}

.btn:hover,
.btn:active,
input[type=submit]:hover,
input[type=submit]:active {
    background-color: #cf6d17;
    border: 1px solid #cf6d17;
    color: #fff !important;
}

.next-btn {
    color: #B7A728 !important;
    background-color: #272727;
}

.game-container .next-btn {
    margin: 50px 0 20px 260px;
}

.disabled {
    pointer-events: none;
}

.cont {
    display: none;
}

.not-active {
    pointer-events: none !important;
    cursor: default;
    text-decoration: none;
    color: black;
}

/*-------Data-type Game styles-------*/
.instructions {
    display: block
}

.timer {
    position: absolute;
    left: 75%;
}

.score {
    position: absolute;
    left: 66%;
    top: 70px;
}

.question {
    position: absolute;
    left: 10%;
    top: 70px;
}

.images {
    display: inline;
    margin: 25px;
}

.data-type-images {
    max-height: 100px;
    max-width: 200px;
    display: inline;
    margin: 25px;
}

.data-types {
    margin: 15px;
    display: inline-block;
}

.data-type-gif {
    max-width: 300px !important;
}

/*-------Animations-------*/

@keyframes carMove {
    0% {
        transform: translate(0px, 0) rotate(0deg);
        transform-origin: center 100px;
    }


    100% {
        transform: translate(0, 0) rotate(360deg);
        transform-origin: center 100px;
    }
}

@keyframes ballBounce {
    0% {
        transform: translate(0, 0) scaleY(1);
    }

    50% {
        transform: translate(0, -100px) scaleY(1.2);
    }

    95% {

        transform: translate(0, 0) scaleY(1);
    }

    100% {

        transform: translate(0, 0) scaleY(.7);
    }
}

/*-------Atm Ex: styles-------*/

.atm-container {
    margin: 0 auto;
    background-image: url(../Loops/Images/ATM.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 230px;
    height: 300px;
    max-width: 400px;
    position: relative;
}

#debit-card {
    margin: 0 auto;
    background-color: yellow;
    width: 75px;
}

#atm-input {
    margin: 18% 0 0 0;
    max-width: 70px;
}

#atm-message {
    max-width: 100px;
    margin: 2px auto;
}

#moneycontainer {
    position: absolute;
    top: 0%;
    left: 80%

}

.money {
    background-color: aquamarine;
    width: 100px;
    display: inline-block;
    margin: 2px;
}

/*-------Clock Ex: Styles-------*/

#clock {
    background-image: url(../Loops/Images/clock.png);
    background-size: 278px;
    background-position: center;
    background-repeat: no-repeat;
    width: 300px;
    height: 350px;
    margin: 0 auto;
    position: relative;
}

#hour-hand {
    width: 10px;
    height: 50px;
    background-color: #000;
    position: absolute;
    top: 36%;
    left: 48%;
}

/*-------sother styles-------*/
.input {
    text-align: center;
    margin: 25px;
}

.inline-input {
    margin: 10px;
    display: inline-block;
}

.shape {
    width: 100px !important;
    height: 100px !important;
    border-radius: 50% !important;
    margin: 25px;
    color: aliceblue !important;
    padding: 20px;
}

.noshape {
    display: none !important;
}

#ball {
    margin: 0 auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    animation-fill-mode: backwards;
}

.bounce-container {
    margin-top: 125px !important;
}

.conditional-container {
    background-image: url(../Conditionals/Images/Coin_heads.png);
    background-size: 200px;
    background-position: center;
    background-repeat: no-repeat;
    height: 250px;
    position: relative;
    display: none;
}

.drop-container {
    max-width: 400px;
    height: 600px;
    text-align: center;
    margin: 0 20px;
    padding: 0;
    display: inline-block;
}

#operators {
    margin-right: 20px;
}

/*---------Conditional shape appear demo styles-------*/
#blue-square {
    width: 200px;
    height: 200px;
    background-color: aqua;
    display: inline-block;
    margin: 40px 20px 0 0;
}

#red-circle {
    width: 200px;
    height: 200px;
    background-color: red;
    border-radius: 100px;
    display: inline-block;
}




