/* FONTS */
@font-face {
    font-family: 'SourceCodePro-Regular';
    src: url('../fonts/SourceCodePro-Regular.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'SourceCodePro-Italic';
    src: url('../fonts/ourceCodePro-Italic.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'SourceCodePro-Bold';
    src: url('../fonts/SourceCodePro-Bold.woff') format('woff');
    font-style: normal;
}

@font-face {
    font-family: 'SourceCodePro-Black';
    src: url('../fonts/SourceCodePro-Black.woff') format('woff');
    font-style: normal;
}


/* ROOT */
:root {
    /* TYPOGRAPHY */
    --h1: 60px;
    --h2: 48px;
    --h3: 38px;
    --h4: 30px;
    --h5: 26px;
    --text-lg: 1.75rem;
    --text-md: 1.5rem;
    --text-sm: 1.25rem;

    /* COLORS */
    --text-dark: #000000;
    --text-light: #FFFFFF;
    --text-green: #26eaa3;
    --text-pink: #ea668e;
    --text-yellow: #F5C242;
    --text-ltBlue: #74F9FB;
    --text-ltOrange: #FF8F6C;
    --text-medBlue: #0071BC;
    --text-blue: #005591;
    --bg-vlGrey: #f2f2f2;
    --bg-lightGrey: #cccccc;
    --bg-medPink: #ed1e79;    
    --bg-darkPink: #9e005d;    
    --bg-white: #ffffff;
    --bg-blue: #005591;
    --bg-ltGreen: #c3eac6;
    --bg-ltRed: #e2babd;
    --bg-blur-dk: rgba(0, 0, 0, .85);
    --bg-blur-lt: rgba(255, 255, 255, .3);
}

* {
    user-select: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'SourceCodePro-Regular';
}

body {
    color: var(--text-dark);
    /* Barras pretas laterais */
    background: black;
}

a,
a:visited,
a:hover, 
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}


/* STATUS */
.no-click{
    pointer-events: none;
}
.hidden{
    opacity: 0;
    pointer-events: none;
}
.d-none{
    display: none !important;
}
.d-block{
    display: block !important;
    animation: fade-in 0.1s both 1 1s;
}
.deactivated {
    opacity: 0.5;
}
.c-pointer{cursor: pointer;}

/* TEXTS */
.txt_color-green{
    color: var(--text-green) !important;
}
.txt_color-pink{
    color: var(--text-pink) !important;
}
.txt_color-yellow{
    color: var(--text-yellow) !important;
}
.txt_color-ltBlue{
    color: var(--text-ltBlue) !important;
}
.txt_color-ltOrange{
    color: var(--text-ltOrange) !important;
}
.txt_color-medBlue{
    color: var(--text-medBlue) !important;
}
.txt_color-blue{
    color: var(--text-blue) !important;
}
.title_big {
    font-size: var(--h1);
    font-family: 'SourceCodePro-Bold';
    font-weight: normal;
}
.title {
    font-size: var(--h2);
    font-family: 'SourceCodePro-Bold';
    font-weight: normal;
}
.subtitle_big {
    font-size: var(--h3);
    font-family: 'SourceCodePro-Regular';
    font-weight: normal;
}
.subtitle {
    font-size: var(--h4);
    font-family: 'SourceCodePro-Regular';
    font-weight: normal;
}
strong{
    font-family: 'SourceCodePro-Bold';
    font-weight: normal;
}

/* BUTTONS */
.btn {
    background: var(--bg-lightGrey);
    color: var(--text-dark);
    border-radius: 150px;
    border: none;
    padding: 10px 35px;
    cursor: pointer;
    transition: transform 0.25s ease;
    font-size: 24px;
    font-family: 'SourceCodePro-Bold';
    display: inline-block;
}
.btn:hover {
    background: var(--bg-medPink);
    color: var(--text-light);
}

/* HEADER & FOOTER */
header#slide-header,
footer#slide-footer {
    display: none;
}
main#slide-container {
    top: 3em;
    top: 0;
    bottom: 0;
    height: calc(100% - 6em);
    height: calc(100% - 3em);
    height: 100%;
}

/* ALIGNMENTS */
.center_hrz{
    position: relative;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: 0;
}
.center_vrt{
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
}
.center_vrt_hrz{
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.p-absolute{position: absolute !important;}
.p-relative{position: relative !important;}

.text-center{
    text-align: center !important;
}

.d-inline-block{
    display: inline-block !important;
}

/* PADDINGS + MARGINS */
.mb-1 {margin-bottom: 1rem!important;}
.mb-2 {margin-bottom: 2.5rem!important;}
.mb-3 {margin-bottom: 3rem!important;}
.mb-4 {margin-bottom: 3.5rem!important;}
.mb-5 {margin-bottom: 4rem!important;}
.mb-6 {margin-bottom: 5rem!important;}

.mt-1 {margin-top: 1rem!important;}
.mt-2 {margin-top: 2.5rem!important;}
.mt-3 {margin-top: 3rem!important;}
.mt-4 {margin-top: 3.5rem!important;}
.mt-5 {margin-top: 4rem!important;}
.mt-6 {margin-top: 5rem!important;}

.pb-6 {padding-bottom: 5rem!important;}

.pt-6 {padding-top: 5rem!important;}

.w-1000{width: 1000px !important;}

/* BG OVERLAY */
.bg_overlay {
    background-image: url('../images/background/background-overlay.png');
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}


/* ROBOT ANIMATIONS */
.shake-vertical {
	-webkit-animation: shake-vertical 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	animation: shake-vertical 5s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

 @-webkit-keyframes shake-vertical {
    0%,
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    10%,
    30%,
    50%,
    70% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
    }
    20%,
    40%,
    60% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
    }
    80% {
      -webkit-transform: translateY(6.4px);
              transform: translateY(6.4px);
    }
    90% {
      -webkit-transform: translateY(-6.4px);
              transform: translateY(-6.4px);
    }
  }
  @keyframes shake-vertical {
    0%,
    100% {
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
    10%,
    30%,
    50%,
    70% {
      -webkit-transform: translateY(-8px);
              transform: translateY(-8px);
    }
    20%,
    40%,
    60% {
      -webkit-transform: translateY(8px);
              transform: translateY(8px);
    }
    80% {
      -webkit-transform: translateY(6.4px);
              transform: translateY(6.4px);
    }
    90% {
      -webkit-transform: translateY(-6.4px);
              transform: translateY(-6.4px);
    }
  }  



/* TITLE BOXES */
.area_title_box{
    position: fixed;
    z-index: 99;
    top: 160px;
    left: 0;
    padding: 5px 15px 5px 40px;
    font-size: 24px;
    font-weight: normal;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 0px 8px 8px 0px;
    -webkit-border-radius: 0px 8px 8px 0px;
    -moz-border-radius: 0px 8px 8px 0px;
}

/* HEADER MENU TOP BAR */
.progress_bar_top{
    position: relative;
    top: -10px;
    z-index: 99;
}
.bg_menu_top{
    position: relative;
    background:rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 120px;
    z-index: 99;
}
.logo_menu_top{
    position: absolute;
    left: 40px;
}
.icons_menu_top{
    position: relative;
    height: 120px;
}
.container_keys_points{
    position: absolute;
    right: 335px;
    top: 26px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.bg_boder_keys{
    background: transparent;
    border-radius: 150px;
    border: 2px solid white;
    padding: 10px 25px;
    display: inline-block;
}
.bg_boder_points{
    background: transparent;
    color: var(--text-light);
    border-radius: 150px;
    border: 2px solid white;
    padding: 10px 25px;
    font-size: 36px;
    font-family: 'SourceCodePro-Regular';
    display: inline-block;
    line-height: 1.05em;
}
.open-info,
.open-location,
.exit-course,
.audio-course_on,
.audio-course_off {
    position: absolute;
    top: 26px;
    height: 64px;
    cursor: pointer;
    transition: transform 0.25s ease;
}
.exit-course {
    right: 40px; 
    width: 54px; 
    height: 64px;
    background-image: url('../images/icons/icon_exit.png');
}
.exit-course:hover {
    background-image: url('../images/icons/icon_exit_hover.png');
}
.audio-course_on {
    right: 115px;
    width: 51px;
    height: 64px;
    display: none;
    background-image: url('../images/icons/icon_sound_on.png');
}
.audio-course_on:hover {
    background-image: url('../images/icons/icon_sound_on_hover.png');
}
.audio-course_off {
    right: 115px;
    width: 51px;
    height: 64px;
    display: none;
    background-image: url('../images/icons/icon_sound_off.png');
}
.audio-course_off:hover {
    background-image: url('../images/icons/icon_sound_off_hover.png');
}
.open-location {
    right: 191px;
    width: 32px;
    height: 64px;
    background-image: url('../images/icons/icon_location.png');
}
.open-location:hover {
    background-image: url('../images/icons/icon_location_hover.png');
}
.open-info {
    right: 247px;
    width: 52px;
    height: 64px;
    background-image: url('../images/icons/icon_info.png');
}
.open-info:hover {
    right: 247px;
    width: 52px;
    height: 64px;
    background-image: url('../images/icons/icon_info_hover.png');
}

/* INTRO */
.intro {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    color: var(--text-light);
}
.bg_charlieHouseInicial{
    background-image: url('../images/background/bg-house-inicialScreen.jpg');
}
.intro_hide{
    background-image: url('../images/background/bg-house-inicialScreen.jpg');
}
.footer_intro{
    position: absolute;
    bottom: -5px;
}

/* CONTENTOR HALL */
.contentor_hall {
    background-image: url('../images/background/01_hall.jpg');
    background-size: cover !important;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.contentor_room1,.contentor_room2,.contentor_room3,.contentor_room4,.contentor_room5 {
    height: 1080px;
    position: relative;
    overflow: hidden !important;
}

/* CONTENTOR ROOM 1 */
.contentor_room1_bg {
    background-image: url('../images/background/02_room01.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 50%;
    width: 2593px;
    height: 1080px;
    position: absolute;
    transform: translateX(-357px);
}

.contentor_room2_bg {
    background-image: url('../images/background/03_room02.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 50%;
    width: 2593px;
    height: 1080px;
    position: absolute;
    transform: translateX(-357px);
}

.contentor_room3_bg {
    background-image: url('../images/background/04_room03.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 50%;
    width: 2593px;
    height: 1080px;
    position: absolute;
    transform: translateX(-357px);
}

.contentor_room4_bg {
    background-image: url('../images/background/05_room04.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 50%;
    width: 2593px;
    height: 1080px;
    position: absolute;
    transform: translateX(-357px);
}

.contentor_room5_bg {
    background-image: url('../images/background/06_exitRoom05.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: 50% 50%;
    width: 2593px;
    height: 1080px;
    position: absolute;
    transform: translateX(-357px);
}

/* INSTRUCTIONS */
.instruction-slide {
    width: 100%;
    height: 100%;
    display: none;
}
.instruction-slide-content {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.btnContinue {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}
.navigate-previous{
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    width: 37px;
    height: 101px;
    background-color: transparent;
    border: 0;
    outline: none;
    background-image: url('../images/icons/icon_arrow_left.png');
}
.navigate-previous:hover{
    background-image: url('../images/icons/icon_arrow_left_hover.png');
}
.navigate-next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    width: 37px;
    height: 101px;
    background-color: transparent;
    border: 0;
    outline: none;
    background-image: url('../images/icons/icon_arrow_right.png');
}
.navigate-next:hover{
    background-image: url('../images/icons/icon_arrow_right_hover.png');
}
.navigate-next.inactive,
.navigate-previous.inactive,
.btnContinue.inactive {
    pointer-events: none;
}
.text_a_map{
    position: absolute;
    top: 415px;
    left: 225px;
}
.text_b_map{
    position: absolute;
    top: 485px;
    right: 200px;
    text-align: left;
}

/* AVATAR CHOICE */
.bg_avatar_big{
    width: 170px;
    height: 170px;
    border: 5px solid #EA668E;
    border-radius: 20px;
    background: white;
    position: relative;
    cursor: pointer;
    margin: 0 auto;
}
.bg_avatar_big img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    cursor: pointer;
}
.bg_avatar_big:hover{scale: 1.05; transition: transform 0.25s ease;}

.bg_avatar_big.highlight {
    box-shadow: 0 0 10px 5px rgba(0, 0, 255, 0.5);
}

.bg_avatar_small{
    width: 70px;
    height: 70px;
    border: 3px solid #EA668E;
    border-radius: 13px;
    background: white;
    position: relative;
    /*cursor: pointer;*/
    margin: 0 20px 0 0;
}
.bg_avatar_small img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 57px;
    /*cursor: pointer;*/
}
.avatar_info{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

/* MAPAS DO JOGO */
.mapa_inicial_1{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.mapa_inicial_room2{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.mapa_inicial_room3{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.mapa_inicial_room4{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
.mapa_inicial_room5{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.map_container{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 100;
}

.map_container .tooltip.c-default{
    cursor: default !important;
}


/* CHAT BOT GAME 01 */
.chat_bot_game_1{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

/* JOGO DE CHAT */
.whiteBoxChatGame{
    position: absolute;
    right: 20px;
    top:145px;
    height: 920px;
    width: 625px;
    border-radius: 20px;
    font-size: 18px;
    background: var(--bg-white);
    padding: 35px 35px;
}
.blueBoxChat{
    border-radius: 10px;
    background: var(--bg-blue);
    padding: 10px 10px;
    color: var(--text-light);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.speech-bubble_left {
	position: relative;
	background: var(--bg-vlGrey);
	border-radius: 0 10px 10px 10px;
    color: var(--text-dark);
    padding: 15px 15px;
}
.speech-bubble_left:after {
	content: '';
	position: absolute;
	left: 1px;
    top: 10px;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-right-color: var(--bg-vlGrey);
	border-left: 0;
	border-top: 0;
	margin-top: -10px;
	margin-left: -15px;
}
.speech-bubble_right {
	position: relative;
	background: var(--bg-vlGrey);
	border-radius: 10px 0 10px 10px;
    color: var(--text-dark);
    padding: 15px 15px;
}
.speech-bubble_right:after {
	content: '';
	position: absolute;
	right: 1px;
	top: 10px;
	width: 0;
	height: 0;
	border: 15px solid transparent;
	border-left-color: var(--bg-vlGrey);
	border-right: 0;
	border-top: 0;
	margin-top: -10px;
	margin-right: -15px;
}
.speech-bubble_right:hover {
	background: var(--bg-lightGrey);
}
.speech-bubble_right:hover::after {
	border-left-color: var(--bg-lightGrey);
}
.speech-bubble_right_selected {
	background: var(--bg-lightGrey);
}
.speech-bubble_right_selected:after {
	border-left-color: var(--bg-lightGrey);
}
.speech-bubble_right_correct {
	background: var(--bg-ltGreen);
}
.speech-bubble_right_correct:after {
	border-left-color: var(--bg-ltGreen);
}
.speech-bubble_right_incorrect {
	background: var(--bg-ltRed);
}
.speech-bubble_right_incorrect:after {
	border-left-color: var(--bg-ltRed);
}
.border2grey{
    border-radius: 10px;
    border: 2px solid #cccccc;
    padding: 10px 20px;
    width: 100%;
    background-color: transparent;
    color: var(--text-dark);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 20px;
}

/* JOGO MULTIPLE CHOICE */
.box_white_big_multiple{
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 40px;
    width: 1400px;
    text-align: center;
}
.box_white_big_multiple p{
    font-size: 24px;
    font-weight: normal;
    color: var(--text-dark);
    text-align: left;
}
.greyBoxResp{
    border-radius: 15px;
    background: var(--bg-vlGrey);
    padding: 15px 15px;
    color: var(--text-light);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    cursor: pointer;
}
.greyBoxResp:hover{
    background: var(--bg-lightGrey);
}
.greyBoxResp p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}
.circle_resp{
    background: var(--bg-white);
    border-radius: 250px;
    padding-top: 23px;
    color: var(--text-dark);
    font-size: 30px;
    height: 50px;
    line-height: 0;
    text-align: center;
    flex-basis: 50px;
    flex-grow: 0;
    flex-shrink: 0;
}
.box_perguntas{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    /*justify-content: center;*/
    gap: 20px;
}
.boxFeedbackMultiCorrect, .boxFeedbackMultiIncorrect{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: flex-start;
    justify-content: start;
    gap: 20px;
}
.boxFeedbackMultiCorrect p, .boxFeedbackMultiIncorrect p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}
.boxFeedbackMultiCorrectInner, .boxFeedbackMultiIncorrectInner{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: flex-start;
    justify-content: start;
    gap: 20px;
}
.boxFeedbackMultiCorrectInner p, .boxFeedbackMultiIncorrectInner p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}

.greyBoxResp.selected{
    background: var(--bg-lightGrey);
}
.greyBoxResp.correct{
    background-color: #90e090;
    pointer-events: none;
}
.greyBoxResp.wrong{
    background-color: #ff9e9e;
    pointer-events: none;
}
/* JOGO PHOTOS CHOICE */

.photo_source{
    font-size: 12px !important;
    margin-top: 10px;
}
.boxGeralPhotos{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 80px;
}
.boxPhoto{
    width: 320px;
    height: 550px;
    background: var(--bg-white);
    padding: 20px 20px;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.3);
    cursor: pointer;
}
.boxPhoto:hover{
    background: var(--bg-lightGrey);
}
.boxPhoto_selected{
    background: var(--bg-lightGrey);
}
.boxPhoto_correct{
    background: var(--bg-ltGreen);
}
.boxPhoto_correctBorder{
    border: 2px solid var(--bg-ltGreen);
}
.boxPhoto_incorrect{
    background: var(--bg-ltRed);
}
.boxPhoto p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}
.bg_photo{
    width: 280px;
    height: 250px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.boxFeedbackPhotoCorrect, .boxFeedbackPhotoIncorrect{
    text-align: left;
    max-width: 400px;
}
.boxFeedbackPhotoCorrect p, .boxFeedbackPhotoIncorrect p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}

/* DRAG AND DROP GAME */
.contentorBtnsSideBySide{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.boxFeedbackDragCorrect, .boxFeedbackDragIncorrect{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}
.boxFeedbackDragCorrect p, .boxFeedbackDragIncorrect p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}
.solution_info_room1, .solution_info_room2, .solution_info_room3, .solution_info_room4, .solution_info_room5{
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100vh;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

/* SEND DRAWING GAME */
.contentorElemSendDraw{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    gap: 20px;
}
.contentorElemSendDraw p{
    font-size: 24px;
    font-weight: normal;
    color: var(--text-dark);
}
.boxFeedbackDrawingCorrect{
    text-align: left;
}

/* FUNDOS JOGOS */
.chat_bot_room_1, .chat_bot_room_2, .chat_bot_room_3, .chat_bot_room_4, .chat_bot_room_5{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
}
.multipleChoice_room_1, .multipleChoice_room_2, .multipleChoice_room_3, .multipleChoice_room_4, .multipleChoice_room_5{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
}
.photoChoice_room_1, .photoChoice_room_2, .photoChoice_room_3, .photoChoice_room_4, .photoChoice_room_5{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
}
.dragChoice_room_1, .dragChoice_room_2, .dragChoice_room_3, .dragChoice_room_4, .dragChoice_room_5{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
}
.sendDrawing_room_1, .sendDrawing_room_2, .sendDrawing_room_3, .sendDrawing_room_4, .sendDrawing_room_5{
    position: fixed;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
}


/* PONTOS SALAS */
.pontos_room1, .pontos_room2, .pontos_room3, .pontos_room4, .pontos_room5{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}
.ponto_obrigatorio{
    height: 40px;
    width: 40px;
    background-image: url('../images/icons/icon_obrigatorio.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0;
}
.ponto_obrigatorio:hover{
    background-image: url('../images/icons/icon_obrigatorio_hover.png');
}
.ponto_obrigatorio-selected{
    background-image: url('../images/icons/icon_obrigatorio_visited.png');
}
.ponto_facultativo{
    height: 40px;
    width: 40px;
    background-image: url('../images/icons/icon_facultativo.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0;
}
.ponto_facultativo:hover{
    background-image: url('../images/icons/icon_facultativo_hover.png');
}
.ponto_facultativo-selected{
    background-image: url('../images/icons/icon_facultativo_visited.png');
}

/* ROOM COMPLETED */
.gameCompleted_room1, .gameCompleted_room2, .gameCompleted_room3, .gameCompleted_room4, .gameCompleted_room5{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}

/* ENVELOPES ROOM 5 */
.envelopes_room5{
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0;
}
.envelope_room5_01{
    position: absolute;
    top: 326px;
    left: 410px;
    height: 45px;
    width: 57px;
    background-image: url('../images/envelopes/envelope_01.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0;
}
.envelope_room5_01:hover{
    background-image: url('../images/envelopes/envelope_01_hover.png');
}
.envelope_room5_01.selected{
    background-image: url('../images/envelopes/envelope_01_active.png');
}
.envelope_room5_02{
    position: absolute;
    top: 617px;
    left: 1325px;
    height: 39px;
    width: 60px;
    background-image: url('../images/envelopes/envelope_02.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0;
}
.envelope_room5_02:hover{
    background-image: url('../images/envelopes/envelope_02_hover.png');
}
.envelope_room5_02.selected{
    background-image: url('../images/envelopes/envelope_02_active.png');
}
.envelope_room5_03{
    position: absolute;
    top: 750px;
    left: 1600px;
    height: 27px;
    width: 70px;
    background-image: url('../images/envelopes/envelope_03.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0;
}
.envelope_room5_03:hover{
    background-image: url('../images/envelopes/envelope_03_hover.png');
}
.envelope_room5_03.selected{
    background-image: url('../images/envelopes/envelope_03_active.png');
}
.envelope_room5_04{
    position: absolute;
    top: 419px;
    left: 2234px;
    height: 41px;
    width: 63px;
    background-image: url('../images/envelopes/envelope_04.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0;
}
.envelope_room5_04:hover{
    background-image: url('../images/envelopes/envelope_04_hover.png');
}
.envelope_room5_04.selected{
    background-image: url('../images/envelopes/envelope_04_active.png');
}

.info_envelope_room5_01, .info_envelope_room5_02, .info_envelope_room5_03, .info_envelope_room5_04, .info_final_room5, .pointsEarned_room5, .partnersEnd_room5{
    position: absolute;
    background: rgba(0, 0, 0, 0.85);
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1;
}


/* CLOSE GAME MESSAGE */
#closing-window {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    margin: 0;
}
#closing-window-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    width: 100%;
}
#closing-window-message .exit-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
    width: 750px;
    background: var(--bg-white);
    padding: 40px 40px;
    border-radius: 20px;
    text-align: center;
}
#closing-window-message .btnClose {
    font-size: 20px;
    width: 100%;
}



/* TOOLTIPS MAPA */
.tooltip {
    display:inline-block;
    position:relative;
    text-align:center;
    cursor: pointer;
}
.tooltip .top {
    width: 600px;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 10px 20px;
    color: #000;
    background-color: #fff;
    font-size: 24px;
    border-radius: 10px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    visibility:hidden;
    opacity:0;
    transition:opacity 0.8s;
    box-shadow:0 1px 12px rgba(0, 0, 0, 0.35);
}
.tt_hall:hover .top, .tt_room1:hover .top, .tt_room2:hover .top, .tt_room3:hover .top, .tt_room4:hover .top, .tt_room5:hover .top{
    visibility:visible;
    opacity:1;
}

/* TOOLTIPS PONTOS SALAS */
.tooltip_small {
    display:inline-block;
    position:relative;
    text-align:center;
    opacity: 0;
}
.tooltip_small .top {
    width: 175px;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -100%);
    padding: 10px 20px;
    color: #000;
    background-color: #fff;
    font-size: 22px;
    border-radius: 10px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    visibility:hidden;
    opacity:0;
    transition:opacity 0.8s;
    box-shadow:0 1px 12px rgba(0, 0, 0, 0.35);
}
.tooltip_small:hover{
    opacity:1;
    cursor: pointer;
}
.tooltip_small:hover .top{
    visibility:visible;
    opacity:1;
}
.tooltip_small.ponto_facultativo-selected,.tooltip_small.ponto_obrigatorio-selected{
    opacity:1 !important;
    cursor: pointer !important;
}

/* ICON PDFS */
.iconPDFInstrucoes{
    height: 75px;
    width: 75px;
    background-image: url('../images/icons/icon_pdf.png');
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 0 auto;
}
.iconPDFInstrucoes:hover{
    background-image: url('../images/icons/icon_pdf_hover.png');
}
.iconPDFInstrucoes_selected{
    background-image: url('../images/icons/icon_pdf_visited.png');
}

.iconPDFChatGame{
    height: 50px;
    width: 50px;
    background-image: url('../images/icons/icon_pdf.png');
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    margin: 0;
}
.iconPDFChatGame:hover{
    background-image: url('../images/icons/icon_pdf_hover.png');
}
.iconPDFChatGame_selected{
    background-image: url('../images/icons/icon_pdf_visited.png');
}


/* CAIXAS HINT CLUE */
.bg_hint_clue{
    height: 180px;
    width: 147px;
    background-image: url('../images/icons/icon_clue.png');
    background-repeat: no-repeat;
    background-size: 100%;
    font-size: 16px;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    padding: 68px 5px 0 5px;
    cursor: pointer;
    margin: 0 auto;
}
.bg_hint_clue:hover{
    background-image: url('../images/icons/icon_clue_hover.png');
    color: var(--text-light);
}




/* WHITE BOXES */
.box_white_full_opacity{
    background: var(--bg-white);
    padding: 50px 50px;
    max-width: 100%;
    border-radius: 20px;
    margin: 30px 20px;
}
.box_white_xsmall{
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 320px;
    text-align: center;
}
.box_white_small{
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 550px;
    text-align: center;
}
.box_white_smMed{
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 850px;
    text-align: center;
}
.box_white_big_fixWid{
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 40px;
    width: 1400px;
    text-align: center;
}
.box_white_big{
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 40px;
    max-width: 1400px;
    text-align: center;
}
.box_white_bigMargins{
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 100px;
    max-width: 1500px;
    text-align: center;
}
.box_white_xsmall p{
    font-size: 20px;
    font-weight: normal;
    color: var(--text-dark);
}
.box_white_big_fixWid p{
    font-size: 22px;
    font-weight: normal;
    color: var(--text-dark);
}
.box_white_small p, .box_white_big p, .box_white_smMed p, .box_white_bigMargins p, .box_white_full_opacity p{
    font-size: 28px;
    font-weight: normal;
    color: var(--text-dark);
}

.paraview {
    position: absolute;
    left: -100px; /* Posição inicial fora da área visível à esquerda */
    transition: left 0.3s ease; /* Adicione uma transição suave se desejar */
}

/* DRAG EXERCICIO */
.dragColumns{
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    gap: 25px;
}

.dragColumn-left{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    gap: 15px;
    width: 650px;
}
.optionBG{
    background: var(--bg-blue);
    padding: 0 12px;
    border-radius: 15px;
}

.dragColumn-left .option{
    background: white;
    padding: 15px;
    /*border: 1px solid white;*/
    border:none;
    min-height: 88px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 1);
    align-content: center;
}

.dragColumn-right{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    gap: 15px;
    width: 650px;
}

.dragColumn-right .option{
    background: transparent;
    border: 1px solid white;
    min-height: 98px;
    align-content: center;
    padding: 15px;
    border-radius: 15px;
}

.dragColumn-right .option.answered{
    background: white;
}

.dragColumn-right .option.answered.correct{
    background-color: #90e090;
    border: #90e090;
    pointer-events: none;
}
.dragColumn-right .option.answered-solution.correct-solution{
    background-color: #90e090;
    border: #90e090;
    pointer-events: none;
}
.dragColumn-right .option.answered.wrong{
    background-color: #ff9e9e;
    border: #ff9e9e;
    pointer-events: none;
}
.dragColumn-right .option.answered-solution.wrong-solution{
    background-color: #ff9e9e;
    border: #ff9e9e;
    pointer-events: none;
}

.dragColumns-bottom{
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 40px;
}
.dragColumns-bottom .answer{
    background: white;
    padding: 10px;
    border: 1px solid white;
    min-height: 88px;
    min-width: 400px;
    align-content: center;
    border-radius: 15px;
    cursor: grab;
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 1);
}

/* FIM DRAG EXERCICIO */


.confetti-wrapper{
    z-index: 999999999;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

[class|="confetti"] {
    position: absolute;
}
.confetti-wrapper .pink {
    background-color: pink;
}
.confetti-wrapper .purple {
    background-color: purple;
} 
.confetti-wrapper .red {
    background-color: var(--bg-ltGreen);
}