body {
    margin: 0;
    padding: 0;
}

#gameOne, #gameTwo {
    width: 100%;
    height: 100%;
    border: 2px solid #66cfc2;;
}

#scoreBoardT1S1 {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fefefe;
}

.coin {
    display: inline-block;
    width: 50px;
    height: 50px;
}

.coin_img {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
}

#scoreBoardT1S1 #one_p,
#scoreBoardT1S1 #two_p,
#scoreBoardT1S1 #five_p,
#scoreBoardT1S1 #ten_p {
    height: 50px;
    width: 50px;
}

#scoreBoardT1S1 #one_p .coin_img {
    background: url('../img/Story_1/Coins/1p.png');
    background-size: 100% 100%;
    background-position: center center;
}

#scoreBoardT1S1 #two_p .coin_img {
    background: url('../img/Story_1/Coins/2p.png');
    background-size: 100% 100%;
    background-position: center center;
}

#scoreBoardT1S1 #five_p .coin_img {
    background: url('../img/Story_1/Coins/5p.png');
    background-size: 100% 100%;
    background-position: center center;
}

#scoreBoardT1S1 #ten_p .coin_img {
    background: url('../img/Story_1/Coins/10p.png');
    background-size: 100% 100%;
    background-position: center center;
}

#t4Items div {
    background: url('../img/Story_1/TaskThree/priceTag.png');
    background-size: 100% 100%;
    line-height: 50px;
    text-align: center;
}

.tooltip {
    position: relative;
    display: inline-block;
    /* If you want dots under the hoverable text */
}
#t4Items .tooltiptext {
    background: none;
    background-color: #fefefe;
    border: 1px solid #010101;
    line-height: 18px;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
.checkButton{
    background-color: #d4294e;
    color: #fefefe;
}

#loading-screen {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	opacity: 1;
 	transition: 1s opacity;
}

#loading-screen.fade-out {
    opacity: 0;
}
#progress{
    display: block;
    position: relative;
    left: 20%;
    top: 70%;
    height: 50px;
    width: 0px;
    color: #18c52f;
}
#progress:before{
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top: solid 2px #18c52f;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #9370DB;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #BA55D3;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #FF00FF;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}