*{
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select:none;
    user-select:none;
    -o-user-select:none;
}


@font-face {
    font-family: 'PixelFont';
    src: url('../font/ArcadeClassic.eot'); /* IE9 Compat Modes */
    src: url('../font/ArcadeClassic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
    url('../font/ArcadeClassic.woff') format('woff'), /* Modern Browsers */
    url('../font/ArcadeClassic.ttf')  format('truetype'), /* Safari, Android, iOS */
    url('../font/ArcadeClassic.svg#svgFontName') format('svg'); /* Legacy iOS */
}


body{
    background-color: #B6D0E2
}

.gameFrame{
    position: absolute;
    z-index: 0;

    width: 800px;
    height: 500px;
    margin-left: 250px;
    border: 2px solid black;
    background-color: white;
}

.left{
    -webkit-transform: scaleX( 1);
    transform: scaleX( 1);
}

.right{
-webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.pet{
    position: absolute;
    z-index: 1;
    top: 0px;
    left: 0px;
    /*up to 520px*/
    /*MUST BE SAME AS PET-FRAME*/
    width: 264px;
    height: 282px;
}

.pet_frame{
    position: absolute;
    top: 150px;
    left: 260px;
    text-align: center;
    /*MUST BE SAME AS PET*/
    width: 264px;
    height: 282px;

}

.menu_bar{
    /*position: absolute;*/
    margin-top: 430px;
    justify-content: space-between;
    display: flex;
}

.unselected_icon{
    opacity: 0.25;
}

.selected_icon{
    opacity: 1;
}

.sleep_display{
    position: absolute;
    z-index: 3;
    left: 0px;
    top: 0px;
    display: none;
}

.clock{
    position:absolute;
    z-index: 4;
    font-family: 'PixelFont' , sans-serif;
    color: black;
    font-size: 60px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
    text-align: center;
    left: 320px;
}

.menu_display{
    position: absolute;
    z-index: 5;
    
    left: 260px;
    top: 10px;
    display: none;
}



.food_menu_arrow{
    position: absolute;
    z-index: 6;
    /*200 540*/
    left: 200px;
    top: 300px;
}


.game_text{
    font-family: 'PixelFont' , sans-serif;
    font-size: 60px;
}


.stats_inner_front_age{
    position: absolute;
    left: 190px;
    top: 90px;
}

.stats_inner_front_weight{
    position: absolute;
    left: 190px;
    top: 150px;    
}

.selected_stats_menu{
    display: block;
}

.unselected_stats_menu{
    display: none;
}

.stat_bar_text{
    position: absolute;
    z-index: 4;
    font-family: 'PixelFont', sans-serif;
    font-size: 60px;
    
}

.hunger_title{
    left: 310px;
}

.happiness_title{
    left: 260px;
}

.discipline_title{
    left: 240px;
}

.heart_full{
    height: 128px;
    width: 128px;
    content:url("../images/objects/full_heart.png");
}

.heart_empty{
    height: 128px;
    width: 128px;
    content:url("../images/objects/empty_heart.png");
}

.hunger_heart_1{
    position: absolute;
    left:150px;
    top: 220px;
}

.hunger_heart_2{
    position: absolute;
    left:270px;
    top: 160px;
}

.hunger_heart_3{
    position: absolute;
    left:390px;
    top: 220px;
}

.hunger_heart_4{
    position: absolute;
    left:510px;
    top: 160px;
}

.happy_heart_1{
    position: absolute;
    left:150px;
    top: 220px;
}

.happy_heart_2{
    position: absolute;
    left:270px;
    top: 160px;
}

.happy_heart_3{
    position: absolute;
    left:390px;
    top: 220px;
}

.happy_heart_4{
    position: absolute;
    left:510px;
    top: 160px;
}


.discipline_bar_fill{
    position: absolute;
    background-color: black;
    width: 576px;
    height: 62px;
    top: 200px;
    left: 111px;
}

.button_container{
    position: absolute;
    top: 525px;
    left: 450px;
    width: 400px;
    justify-content: space-between;
    display: flex;
}

.btn{
    width: 100px;
    height: 50px;
    border: 4px solid black;
    border-radius: 10px;

    background-color: pink;
    cursor: pointer;
}

.minigame_menu_symbol{
    position: absolute;
    left: 365px;
    top: 140px;
}

.revealed_minigame_number{
    position: absolute;
    left: 130px;
    top: 120px;

    font-family: 'PixelFont' , sans-serif;
    font-size: 90px;
}


.guessed_minigame_number{
    position: absolute;
    left: 625px;
    top: 120px;
    font-family: 'PixelFont' , sans-serif;
    font-size: 90px;
}

.minigame_score_icon_1{
    position: absolute;
    top: 350px;
    left: 315px;
}

.minigame_score_icon_2{
    position: absolute;
    top: 350px;
    left: 350px;
}

.minigame_score_icon_3{
    position: absolute;
    top: 350px;
    left: 385px;
}

.minigame_score_icon_4{
    position: absolute;
    top: 350px;
    left: 420px;
}


.minigame_score_icon_5{
    position: absolute;
    top: 350px;
    left: 455px;
}

.poop_display{
    z-index: 2;
    position: absolute;
    width: 200px;
    height: 80px;
    top:  120px;
    left: 600px;
}

.poop_display > img{
    display: none;
}

.sick_icon{
    position: absolute;
    z-index: 2;
    left: 200px;
    top: 60px;
}

.sleepy_icon{
    position: absolute;
    z-index: 2;
    left: 5px;
    top: 100px;
}

.hidden_display{
    display: none;
}

.death_display{
    position: absolute;
    z-index: 3;
    left: 260px;
    top: 10px;
}



.sleep_menu_text_on{
    position: absolute;
    top:  150px;
    left: 350px;
}

.sleep_menu_text_off{
    position: absolute;
    top: 250px;
    left: 350px;
}

.sleep_menu_arrow{
    position: absolute;
    z-index: 6;
    /*200 540*/
    top: 150px;
    left: 240px;
    
}

.screen_tint{
    position: absolute;
    z-index: 8;

    top: 10px;
    left: 260px;

    width: 800px;
    height: 500px;

    background-color: #D3F6DB;
    opacity: 0.30;

}

.shell_skin{
    position: absolute;
    z-index: -1;
    left: 160px;
    top: 0px;
    width: 990px;
    height: 610px;
    margin-top: 0;
    background-image: "none";

    border: 5px solid black;
    border-radius: 7px 10px 15px 15px;

    background-color: #1b5583;
}


.toolbar{
    position: absolute;
    left: 10px;
    top: 100px;

}

.toolbar_icon{
    width: 48px;
    height: 48px;
    cursor: pointer;
}


.close_toolbar_menu_button{
    position: absolute;
    left: 416px;
    top: 2px;
    cursor: pointer;
}


.customize_menu{
    position: absolute;
    z-index: 9;
    border: 3px solid black;
    top: 150px;
    left: 425px;
    width: 450px;
    height: 250px;
    /*background-color: rgb(105, 240, 145);*/
    background-color: rgb(154, 153, 228);
    display: none;
}

.customize_menu_decoration{
    position: absolute;
    width: 280px;
    height: 180px;
    left: 45px;
    top: 35px;
    border-radius: 30px;
    background-color: rgb(240, 200, 234);
}

.customize_screen_section{
    position: absolute;
    left: 15px;
    top: 50px;

}

.customize_shell_section{
    position: absolute;
    left: 15px;
    top:80px
}

.customize_button_section{
    position: absolute;
    left: 15px;
    top: 110px;
}

.customize_menu select{
    width: 150px
}

.customize_apply_button{
    position: absolute;

    left: 340px;
    top: 80px;
    cursor: pointer;
}

.customize_apply_button:hover{
    position: absolute;

    left: 340px;
    top: 80px;

    content:url("../images/icons/apply_button_cosmetics_hover.png")
}

.sound_apply_button{
    position: absolute;

    left: 340px;
    top: 80px;
    cursor: pointer;
}

.sound_apply_button:hover{
    position: absolute;

    left: 340px;
    top: 80px;

    content:url("../images/icons/apply_button_sound_hover.png");
    cursor: pointer;
}

.sound_menu{
    position: absolute;
    z-index: 9;
    border: 3px solid black;
    top: 150px;
    left: 425px;
    width: 450px;
    height: 250px;
    /*background-color: rgb(105, 240, 145);*/
    background-color: rgb(29, 38, 114);
    display: none;
}

.sound_menu_decoration{
    position: absolute;
    width: 280px;
    height: 180px;
    left: 45px;
    top: 35px;
    border-radius: 30px;
    background-color: rgb(130, 193, 223);
}

.action_volume_section{
    position: absolute;
    left: 15px;
    top: 40px;

}

.alert_volume_section{
    position: absolute;
    left: 15px;
    top:70px
}

.button_volume_section{
    position: absolute;
    left: 15px;
    top: 100px;
}

.automute_volume_scection{
    position: absolute;
    left: 15px;
    top: 130px;
}

.slider{
    -webkit-appearance: none;
    height: 15px;
    border-radius: 5px;  
    background: #d3d3d3;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider_handle::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border: 0;
    background: url('../images/icons/slider_handle.png');
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border: 0;
    background: url('../images/icons/slider_handle.png');
    cursor: pointer;
}

.savestate_menu{
    position: absolute;
    z-index: 9;
    border: 3px solid black;
    top: 80px;
    left: 425px;
    width: 450px;
    height: 380px;
    /*background-color: rgb(105, 240, 145);*/
    background-color: rgb(118, 92, 179);
    display: none;
}

.savestate_menu_decoration_1{
    position: absolute;
    width: 410px;
    height: 180px;
    left: 20px;
    top: 40px;
    border-radius: 30px;
    background-color: rgb(51, 167, 221);
}

.savestate_menu_decoration_2{
    position: absolute;
    width: 220px;
    height: 120px;
    left: 25px;
    top: 240px;
    border-radius: 30px;
    background-color: rgb(51, 167, 221);
}


.reset_section{
    position: absolute;
    left: 30px;
    top: 10px;

}

.reset_section p{
    text-align: center;
    font-weight: bold;
    padding: 2px;
    margin: 1px;
    left: 5px;
}

.savestate_apply_button{
    position: absolute;

    left: 300px;
    top: 250px;
    cursor: pointer;
}

.savestate_apply_button:hover{
    position: absolute;

    left: 300px;
    top: 250px;

    content:url("../images/icons/apply_button_savestate_hover.png")
}

.reset_lock_icon{
    position: absolute;
    z-index: 11;
    left: 0px;
    top: 25px;

    cursor: pointer;
}

.reset_button{
    z-index: 10;
    position: absolute;
    left: 16px;
    top: 34px;
    cursor: pointer;
}

.gamemode_card{
    position: absolute;
    background-color: white;
    width: 100px;
    height: 150px;
    border-radius: 10px;
    border: 2px solid black;
    cursor: pointer;

}

.gamemode_card img{
    position: absolute;
    top: 5px;
    left: 25px
}

.gamemode_card h4{
    width: 100%;
    position: absolute;
    top:35px;
    text-align: center;
}

.gamemode_card p{
    width: 100%;
    position: absolute;
    top: 63px;
    font-size: 13px;
    text-align: center;
}

.auto-pause_mode p{
    font-size: 11px;
}

.gamemode_card input{
    position: absolute;
    top: 125px;
    left: 40px;
}

.pause_mode{
    top: 10px;
    left: 25px
}

.auto-pause_mode{
    top: 10px;
    left: 155px
}

.continuous_mode{
    top: 10px;
    left: 285px;
}

.difficulty_menu{
    position: absolute;
    z-index: 9;
    border: 3px solid black;
    top: 80px;
    left: 425px;
    width: 450px;
    height: 380px;
    background-color: rgb(145, 0, 0);
    display: none;
}

.difficulty_apply_button{
    position: absolute;

    left: 180px;
    top: 275px;
    cursor: pointer;
}

.difficulty_apply_button:hover{
    position: absolute;

    left: 180px;
    top: 275px;

    content:url("../images/icons/apply_button_difficulty_hover.png")
}

.difficulty_menu_decoration{
    position: absolute;
    width: 410px;
    height: 210px;
    left: 20px;
    top: 40px;
    border-radius: 30px;
    background-color: rgb(255, 181, 181);
}

.difficulty_card{
    position: absolute;
    background-color: white;
    width: 170px;
    height: 180px;
    border-radius: 10px;
    border: 2px solid black;
    cursor: pointer;

}

.difficulty_card img{
    position: absolute;
    top: 10px;
    left: 55px;
    width: 64px;
}

.difficulty_card h4{
    width: 100%;
    position: absolute;
    top:45px;
    text-align: center;
}

.difficulty_card p{
    width: 100%;
    position: absolute;
    top: 73px;
    font-size: 14px;
    text-align: center;
}

.difficulty_card input{
    position: absolute;
    top: 145px;
    left: 75px;
}

.chill_difficulty_mode{
    top: 10px;
    left: 20px
}

.challenge_difficulty_mode{
    top: 10px;
    left: 220px
}

.multi_tab_screenblock{
    position: absolute;
    left: 0px;
    top:  0px;
    width: 100%;
    height: 100%;
    z-index: 14;
    background-color:gray;
    opacity: 0.7;
    overflow: hidden;
}

.multi_tab_warning{
    text-align: center;
    position: absolute;

    border: 3px solid black;
    top: 160px;
    left: 425px;
    width: 450px;
    height: 220px;
    background-color: lightblue;
    z-index: 15;
    padding: 10px;
    opacity: 2;
    border-radius: 10px;
}

.multi_tab_warning p{
    font-size: 18px;;
}

.multi_tab_warning h2{
    padding: 0px;
    margin: 1px;
}

.multi_tab_warning button{
    width: 200px;
    height: 50px;
}