html, body {
	height: 100%;
	margin: 0;
	background-image: url("../images/home/living_room/living_room.jpg");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center bottom;
    background-size: cover;
    overflow: hidden;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Start game CSS*/

.start-game-wall {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: rgb(49, 49, 49);
    z-index: 990;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.tamadragon-logo {
    height: 50px;
    background-image: url("../images/startup/name/tamadragon_start.png");
	background-repeat: no-repeat;
	background-position: center bottom;
    background-size: contain;
    overflow: hidden;
}

.credits_text {
    text-align: center;
}

/* Totaly my button */
.button2 {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    display: block;
    padding: 30px 61px;
    border-radius: 4px;
    color: #03e9f4;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    margin: 25px;
    font-family: "Roboto", sans-serif;
    filter: hue-rotate(0deg);
    border: 2px solid #d2bdff;
    transition: all 0.1s linear;
    text-align: center;
}
.button2:hover {
    border: 1px solid transparent;
}
.button2:hover span {
    position: absolute;
    display: block;
}
.button2:hover span:nth-child(1) {
    filter: hue-rotate(0deg);
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3a86ff);
    animation: animate1 1s linear infinite;
}
@keyframes animate1 {
    0% {
        left: -100%;
   }
    50%, 100% {
        left: 100%;
   }
}
.button2:hover span:nth-child(2) {
    filter: hue-rotate(60deg);
    top: -100%;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #3a86ff);
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}
@keyframes animate2 {
    0% {
        top: -100%;
   }
    50%, 100% {
        top: 100%;
   }
}
.button2:hover span:nth-child(3) {
    filter: hue-rotate(120deg);
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(270deg, transparent, #3a86ff);
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}
@keyframes animate3 {
    0% {
        right: -100%;
        height: 3px;
   }
    50%, 100% {
        height: 2px;
        right: 100%;
   }
}
.button2:hover span:nth-child(4) {
    filter: hue-rotate(300deg);
    bottom: -100%;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #3a86ff);
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}
@keyframes animate4 {
    0% {
        bottom: -100%;
   }
    50%, 100% {
        bottom: 100%;
   }
}

/* End of totaly my button */



/*============================================================================================================*/
/*============================================================================================================*/
/*Satire warning CSS*/

.satire-warning-wall {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(49, 49, 49);
    z-index: 900;
    overflow: auto;
}

.satire-warning-box {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    transition: all 5.0s;
}

.satire-warning-button {
    width: 230px;
    height: 200px;
    margin: auto;
    background-image: url("../images/startup/satire_warning/Goldman.png");
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

.satire-warning-textbox {
    text-align: center;
}

.satire-warning-text {
    color: red;
    font-size: 10rem;
}

.satire-warning-info {
    color: white;
    font-size: x-large;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Intro CSS*/

.intro {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    z-index: 800;
    transition: all 4.0s;
    opacity: 100;
}

.introtext {
    background-color: white;
    color: black;
    font-size: 0;
    font-weight: bold;
    text-align: center;
    mix-blend-mode: screen;
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    transition: all 5.0s;
}


/*============================================================================================================*/
/*============================================================================================================*/

.resetclass {
}

.main-container {
	height: 100%;
    width: 100%;
	display: flex;
    z-index: 100;
}

.tama-dead strong {
    color: red;
}

.tama-dead strong:hover {
    cursor: pointer;
}

.logo{
	width: 100%;
	margin-bottom: 5px;
}

.logotext {
	background-color: white;
	color: black;
	font-size: 1.8vw;
	font-weight: bold;
	text-align: center;
	mix-blend-mode: screen;
}

.version {
    color: black;
    font-weight: bold;
    text-align: center;
    mix-blend-mode: screen;
    background-color: white;
}

.switch-btn {
    z-index: 10;
    position: fixed;
    bottom: 8px;
    right: 16px;
    font-size: 18px;
}

.dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
}

.dropdown-toggle {
    text-align: left;
}

.dropup-container {
    position: absolute;
    right: 10px;
    bottom: 10px;

}

.dropup-container {
    z-index: 250;
}

.dropup-content {
    display: none;
    position: fixed;
    background-color: #4CAF50;
    min-width: 160px;
    bottom: 89px;
    z-index: 1;
    right: 20px;
    font-size: 18px;
}

.dropup-content div {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropup-content div:hover {background-color: #3e8e41}

.dropup:hover .dropup-content {
    display: block;
}


.left-container:hover {
    left: 0;
}

.pin {
    width: 15px;
    height: 15px;
    cursor: pointer;
    color: red;
    position: absolute;
    left: 230px;
}

.pin:hover {
    color: #666666 !important;
}

.left-container-button {
    position: absolute;
    left: 100%;
    top: 50%;
    background-color: #4c4c4c;
    width: 35px;
    font-size: 50px;
    padding: 10px;
    border-radius: 0 10px 10px 0;
    transform: translateY(-50%);
    overflow-clip: auto;
}

.left-icon {
    color: white;
}

.left-container-button:hover {
}

.left-container {
    min-width: 250px;
    height: 100%;
    background-color: #4c4c4c;
    box-shadow: 1px 0 12px black;
    position: absolute;
    transition: all 1.0s;
    z-index: 250;
}

.scroll {
    left: -250px;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.scroll-container {
    overflow: auto !important;
    height: 100%;
}

.buttons button{
    margin-left: 5px;
    margin-bottom: 15px;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    width: 200px;
    display: block;
}

.get-out-car {
    font-size: 22px !important;
}

.buttons button:hover {background-color: #3e8e41}

.buttons button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}

#wheelie {
    display: none;
}

.wheelie:hover {
    -ms-transform: rotate(20deg); /* IE 9 */
    -webkit-transform: rotate(20deg); /* Safari 3-8 */
    transform: rotate(20deg);
}

.rotate {
    -ms-transform: rotate(20deg); /* IE 9 */
    -webkit-transform: rotate(20deg); /* Safari 3-8 */
    transform: rotate(20deg);
    z-index: 1;
}

.helikopter {
    animation-name: helikopter;
    animation-duration: 200ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes helikopter {
    from {
        transform:rotateZ(0deg);;
    }
    to {
        transform:rotateZ(360deg);
    }
}

.progress-bars {
	margin: 5px;
}

.progress-text {
	color: white;
}

.progress{
	margin-bottom: 5px;
}

.bg-energy {
    background-color: darkorange !important;
}

.bg-magic {
    background-color: darkorchid !important;
}

.money {
    font-size: 21px !important;
    height: 30px !important;
    background-color: firebrick !important;
}

.content-container{
    width: 100%;
    height: 105%;
}

.TamaMain{
	text-align: center;
    height: 100%;
    width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-end;
}


.TamaFoto,img{
	height: auto;
    max-width: 60%;
    max-height: 60%;
    position: relative;
    left: 0;
}

.transition{
	transition: all 1.0s;
}

.brommer{
    position: absolute;
}

.torture {
    position: absolute;
    right: 5px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-color: red;
}

#hanghim {
    display: none;
}

/*============================================================================================================*/

.reset {
	transform:rotate(0deg);
	-ms-transform:rotate(0deg); /* IE 9 */
	-webkit-transform:rotate(0deg); /* Safari and Chrome */
}

.flips {
	transform:rotate(-360deg);
	-ms-transform:rotate(-360deg); /* IE 9 */
	-webkit-transform:rotate(-360deg); /* Safari and Chrome */
	transition: all 1.0s;
}

.jelle-flips {
	transform:rotate(360deg);
	-ms-transform:rotate(360deg); /* IE 9 */
	-webkit-transform:rotate(360deg); /* Safari and Chrome */
	transition: all 1.0s;
}



/*============================================================================================================*/

#tamadeadtekst {
    display: none;
}

.tekst{
    position: absolute;
    text-align: center;
    color: white;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 2.0rem;
    font-weight: bold;
    background-color: rgba(99, 99, 99, 0.5);
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Bathroom CSS*/



/*============================================================================================================*/
/*============================================================================================================*/
/*Bedroom CSS*/

#wakeup {
    display: none;
}

#key {
    display: none;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Basement CSS*/

#try_door {
    display: none;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Shopping center CSS*/

#confirm_car_steal {
    display: none;
}

#get_out_car {
    display: none;
}

#get_in_car {
    display: none;
}


/*============================================================================================================*/
/*============================================================================================================*/
/*Shop CSS*/



/*============================================================================================================*/
/*============================================================================================================*/
/*Night club CSS*/



.club {
    filter: brightness(50%);
}

.moonwalk {
    position: absolute;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Prison CSS*/



/*============================================================================================================*/
/*============================================================================================================*/
/*Mcdonalds CSS*/


#mcdonalds_work_overlay {
    display: none;
}

#start-working {
    display: none;
}

#mcdonalds-apply-for-work {
    display: none;
}

.mcdonalds_work_overlay {
    background-image: url("../images/shopping_center/mcdonalds/mcdonalds_work_overlay.png");
}

.mcdonalds-container {
    width: 100vw;
    height: 100vh;
    z-index: 1;
}

.backshit {
    position: absolute;
    min-width: 100%;
    height: 100%;
    margin: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center bottom;
    background-size: cover;
    overflow: hidden;
}

.background {
    background-image: url("../images/shopping_center/mcdonalds/mcdonalds_work.png")
}

.mcimg {
    position: absolute;
    top: 0;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: auto;
    height: 65%;
}

.foreground {
    background-image: url("../images/shopping_center/mcdonalds/mcdonalds_work_overlay.png");
}

.mcdonalds-container {
    display: none;
}

.mcflip {
    transform:rotate(-360deg);
    -ms-transform:rotate(-360deg); /* IE 9 */
    -webkit-transform:rotate(-360deg); /* Safari and Chrome */
    transition: all 1.0s;
}

.mcreset {
    transform:rotate(0deg);
    -ms-transform:rotate(0deg); /* IE 9 */
    -webkit-transform:rotate(0deg); /* Safari and Chrome */
}

.relative {
    position: relative;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Torture chamber CSS*/



/*============================================================================================================*/
/*============================================================================================================*/
/*clock CSS*/

.clock-container {
    background-color: black;
    width: 150px;
    text-align: center;
    color: white;
    font-size: 50px;
    margin-left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.clock {
    display: inline;
}

.hours {
    display: inline;
}

.minutes {
    display: inline;
}

.middle {
    display: inline;
    color: #666666;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*============================================================================================================*/
/*Option CSS*/

.btn-options {
    background-color: #4c4c4c;
    border: none;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
}

/* Darker background on mouse-over */
.btn-options:hover {
    background-color: RoyalBlue;
}

.right-container {
    position: absolute;
    height: 100%;
    display: inline;
    right: 0;
    top: 0;
}

.right-container-content {
    position: absolute;
    background-color: #4c4c4c;
    height: 100%;
    width: 350px;
    right: 0;
    bottom: 100%;
    opacity: 0;
    transition: all 1.0s;
}

.options-content {
    margin: 10px;
    color: white;
}

.divider {
    width: 100%;
    height: 2px;
    background-color: white;
    margin: 50px 0 25px 0;
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Religion CSS*/

.jew {
    top: -20%;
    position: absolute;
    left: 50%;
    transform: translateX(-62%) rotate(180deg);
}

/*============================================================================================================*/
/*============================================================================================================*/
/*Modal CSS*/

/*============================================================================================================*/
/*============================================================================================================*/
/*============================================================================================================*/
/*Responsive CSS*/

@media only screen and (max-width: 500px) {
    .left-container {
        min-width: 100px;
        max-width: 100px;
        z-index: 250;
    }

    .scroll {
        left: -100px;
    }

    .buttons button {
        margin-left: 5px;
        margin-bottom: 10px;
        padding: 8px 2px;
        font-size: 11px;
        cursor: pointer;
        text-align: center;
        text-decoration: none;
        outline: none;
        color: #fff;
        background-color: #4CAF50;
        border: none;
        border-radius: 8px;
        box-shadow: 0 4px #999;
        width: 80px;
        display: block;
    }

    .progress-container {
        font-size: 11px;
    }

    .pin {
        left: 90px;
        font-size: 12px;
    }
}