/*
Basic Calculator
Yandiya Technologies Ltd

File name: Mobile.css
File Location: C:\wamp64\www\vhost\basic-calc\public_html

Last Edited: 10/05/22
Editors: Callum Todd, Ben Clayton
*/

@media only screen and (max-width: 768px) { /* ONLY RUNS WHEN WINDOW SIZE IS BELOW 768px (Phone size) */
    /**========================================================================
     *                             GLOBAL
     *========================================================================**/
    /**============================================
     **  Classes below don't fall into a 
     **  category as they are present on all pages
     *=============================================**/

     @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
    body {
        background-image: none;
        display: flex;
        flex-direction: column;
        background-color: #fcfcfc !important;
        height: auto;
    }

    .Version{
        position: fixed;
        font-size: 2vh !important;
        color: rgba(0, 0, 0, 0.3);
        right: 2px;
        bottom: 0px;
        margin: 0px;
    }

    button{
        background-color: #D3D3D3;
        text-align: center;
        font-family: 'Manrope', sans-serif;
        font-weight: 400;
    }

    #Current_Page{
        font-size: 15px;
    }

    p{
        font-size: clamp(0.65em,0.65em,5em);
        font-family: 'Manrope', sans-serif;
        justify-self: center;
        align-content: center;
        text-align: center;
        width: auto;
        margin-bottom: 0px !important;
    }

    h1{
        font-family: 'Manrope', sans-serif;
        font-size: 19px !important;
        text-align: center;
        color: black;
    }

    h2{
        margin-bottom: 0px !important;
    }

    h5{
        font-family: 'Manrope', sans-serif;
        color: white;
        font-weight: 600;
        font-size: clamp(0px, 1em, 50px) !important;
        margin-bottom: 3px !important;
    }
        
    strong {
        display:inline !important;
    }

    table{
        width: 100%;
    }

    th{
        font-size: 15px;
        height: 30px;
    }

    .Text_Container{
        display: flex;
        justify-self: center;
        flex-direction: column;
        width: 90%;
        padding: 2px;
        height: 15vh;
        background-color: #F5F5F5;
        padding-top: 15px;
        padding-bottom: 15px;
        padding-inline: 15px;
        line-height: 2.6vh;
        margin-bottom: 15px;
    }

    .MOB_Nav_Bar_Button{
        display: flex;
        height: 60px;
        width: 100%;
        background-color: #ea0000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }

    .MOB_Nav_Bar_Button p{
        width: auto;
        display: flex;
        justify-content: flex-start;
        color: white;
    }

    .Nav_Bar{
        margin: auto;
        position: relative;
        width: 90%;
        height: 50px;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-flow: nowrap;
        align-items: center;
        overflow-x: visible;
    }

    .progress-icon {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background-color: rgb(198,198,198);
        margin-right: 10px;
        z-index: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }.progress-icon.completed{
        background-color: rgb(53,156,48) !important;
        z-index: 0;
    }.progress-icon.active{
        background-color: rgb(251,188,43) !important;
        z-index: 0;
    }
    
    .progress-line {
        position: absolute;
        height: 5px;
        background-color: rgb(53,156,48);
        width: 0%;
        transition: all 0.3s ease-in-out;
        margin-left: 5px;
        z-index: 0;
    }.progress-line-back {
        position: absolute;
        height: 5px;
        background-color: rgb(53,156,48);
        width: 0px;
        transition: all 0.3s ease-in-out;
        margin-left: 5px;
        z-index: 0;
        background-color: rgb(198,198,198) !important;
        width: 100%;
    }.line-container{
        position: absolute;
        width: calc(100% - 40px);
        margin-bottom: 5px;
    }

    .progress-icon-image{
        width: 85%;
        background-color: transparent;
        padding: 5px;
    }

    .Mob_Tab{
        display: block;
        text-align: center;
    }

    .Main_Div{
        height: 100%;
        width: 100%;
        min-height: 100%;
        /* padding-inline: 30px; */
    }

    .Tab{
        max-width: 340px;
        border-radius: 0px;
    }

    /* Dropdown Button */
    .Drop_Btn_MOB {
        background-color: red;
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
        width: 90%;
        height: 50px;
        margin: auto;
        position: sticky;
    }
    
    /* The container <div> - needed to position the dropdown content */
    .dropdown_MOB {
        position: relative;
        display: inline-block;
        
    }
    
    /* Dropdown Content (Hidden by Default) */
    .dropdown-content_MOB {
        display: none;
        background-color: #f1f1f1;
        max-height: 300px;
        max-width: 500px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        Overflow-y: scroll;
        position: absolute;
        flex-direction: column;
        align-items: center;
        align-self: center;
        margin-left: 20px;
    }
    
    /* Content inside the dropdown */
    .dropdown-content_MOB a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: flex;
        flex-flow: column wrap;
    }

    .show_MOB {display:flex;}

    .Back_Continue_Button{
        display: none;
    }

    .Nav_Bar_Tab{
        height: 40px;
        width: 100%;
    }

    .Nav_Bar_Tab h2{
        font-size: 14px;
        color: white;
        margin: 0px !important;
    }

    .Logo{
        width: 125px;
    }

    .Header{
        min-height: 70px;
        width: 100%;
        background-color: #000000;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }

    .Header-Left{
        width: 60%;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        align-items: center;
    }

    .Header-Left img{
        height: 25px;
        width: 25px;
    }

    .Header-Text{
        width: 100px;
        font-weight: bold;
        margin: 0px;
        display: flex;
        justify-content: flex-start;
        margin-top: 5px;
        color: white;
    }

    .Logo_Container{
        display: flex;
        flex-direction: column;
        padding-top: 9px;
    }

    .Logo_Container p{
        font-size: 10px;
        margin: 0px;
        margin-left: 70px;
        color: white;
    }

    .Footer{
        display: none;
    }

    .Footer-Text{
        color: white;
        background-color: transparent;
        border: 0px;
        padding: 0px;
        font-size: 12px;
    }

    .Footer-Button{
        width: 80%;
        font-size: 12px;
    }

    .MOB_Nav_Bar_Button{
        min-height: 35px;
        width: 100%;
        background-color: red;
    }

    .Hamburger-Menu{
        width: 20px;
        height: 20px;
        position: absolute;
        margin-right: 30px;
        transform: translate(-41vw);
    }

    #Location-Image{
        width:70px !important;
        height:70px !important;
    }
    
    .Home{
        background-color: transparent;
        height: auto;
        width: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        gap: 10px;
    }

    .Terms-Of-Service{
        background-color: transparent;
        height: auto;
        width: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .Terms-Of-Service-Container {
        margin-top: -30px;
        min-width: 300px;
        max-width: 731px;
        width: 98%;
        height: 836px;
        display: flex;
        flex-direction: column;
        background-color: white;
        border-radius: 10px 10px 10px 10px;
        position: absolute;
        box-shadow: 0 0 0 1600px rgb(0 0 0 / 65%);
        animation: transition 0.2s;
        overflow: hidden;
    }

    .Terms-Header {
        width: 100%;
        background-color: black;
        display: flex;
        justify-content: space-between;
        border-radius: 6px 6px 0px 0px;
    }

    .Terms-Info {
        padding: 23px;
        overflow: scroll;
        height: 100%;
    }

    .Terms-Header-Button {
        width: 100%;
        height: 100%;
        background-color: transparent;
    }

    .Terms-Header-Title {
        font-family: 'Manrope', sans-serif;
        font-weight: 100;
        color: white;
        padding: 22px;
        font-size: 12px;
    }

    .Terms-Header-Close-Image{
        width: 30px;
    }

    .Terms-Header-Close {
        width: 70px;
        background-color: #C90000;
        border-radius: 0px 6px 0px 0px;
    }

    .Terms-Info p{
        font-size: 12px;
        text-align: left;
    }

    ::-webkit-scrollbar {
        width: 0px;
    }

    .Start_Page{
        display: flex;
        align-items: center;
        height: 30em;
        flex-direction: column;
        padding: 30px;
        
    }

    .MOB_Start_Continue_Container{
        width: 100%;
        margin-top: 25px;
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
    }

    .Start_Continue{
        background-color: #39a8a8;
        color: white;
        font-family: 'Manrope', sans-serif;
        font-size: 85%;
        padding-inline: 10px;
        width: 75%;
        height: 60px;
        position: absolute;
        bottom: 60px;
        border-radius: 130px;
    }

    .MOB_Hide{
        display: none !important;
    }

    *{
        outline: none 0px !important;
    }

    /**========================================================================
     *                           HOUSE PAGE
     *========================================================================**/

    .PDF_Preview{
        width: 60vw;
        max-width: 250px;
        aspect-ratio: 7/9;
    }

    .House_Page{
        display: flex;
        align-items: center;
        height: 60%;
        flex-direction: column;
        animation: transition 0.2s;
        padding-inline: 30px;
    }

    .Main_Title{
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .Text-Container{
        display: flex;
        justify-self: center;
        flex-direction: column;
        width: 100%;
        padding: 2px;
        height: auto;
        background-color: transparent;
        padding-bottom: 15px;
        padding-inline: 15px;
        line-height: 1.2em;
        font-size: 2vh;
    }

    .Text-Container p{font-size: clamp(0px, 1em, 50px);}

    .Text-Container h1{font-size: clamp(0px, 1.2em, 50px) !important;}

    .House_Other_MOB{
        display: flex;
        justify-self: center;
    }
    .House_Type {
        height: 70%;
        aspect-ratio: 1/1;
        margin-inline: 7.5%;
    }

    .House_Type_Button {
        min-height: 100%;
        width: 100%;
        background-color: transparent;
        background-size: 500px 100%;
        filter: saturate(0%) opacity(100%);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
    }

    .House_Type_Text{
        display: none !important;
    }

    .House_Type_Container{
        width: 100%;
        display: flex;
        box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%);
        margin-bottom: 15px;
        max-height: 16%;
    }

    .MOB_House_Info{
        background-color: #383838;
        width: 100%;
        height: 100%;
        text-align: left;
        padding: 5px;
        padding-inline: 0.7em;
        line-height: 0.85em;
        display: flex !important;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .MOB_House_Info h5{
        font-size: clamp(0em,1.6vh,1em) !important;
        line-height: clamp(0em,56vh,1em) !important;
        font-weight: 600;
    }
    .MOB_House_Info p{
        font-size: clamp(0em,1.3vh,1em) !important;
        line-height: clamp(0em,56vh,1em) !important;
        font-weight: 200;
    }

    .House_Age_Description p{
        font-size: clamp(0em,1.6vh,1em) !important;
        line-height: clamp(0em,56vh,1em) !important;
        color: white;
    }

    .House_Type_Button_Clicked{
        filter: saturate(100%);
    }
    
    .House_Type_Button_Clicked div{
        background-color: #ea1c1c;
    }

    .House_Age_Div_MOB{
        display: block;
        align-items: center;
        flex-direction: column;
    }

    .House_Types_Container{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;
        width: 108%;  
        height: 63vh;
        max-height: 70vh;
    }    

    .House_Title {
        font-size: 20px;
        text-align: center;
        margin-top: 15px;
    }

    .House_Info{
        margin-top: 10px;
    }

    .L-T-Container{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-top: -4px;
        flex-wrap: nowrap;
        align-items: center;
    }

    .Location-Container{
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 75%;
    }
    
    .Tariff-Container{
        width: 75%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 25px;
    }

    .Cost_Text{
        font-size: 13px !important;
        font-family: 'Manrope', sans-serif !important;
    }

    

    .Drop_Btn_Curr{
        width: 54px;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        font-weight: 400;
        color: black;
        height: 31px;
    }

    .Location-Tariff-Container{
        width: 100%;
    }

    .Location_Tariff_Container{
        width: 100%;
    }

    .Location_Tariff_Container h1{
        font-size: 18px;
    }

    .Location-Tariff-Master{
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }

    .Home_Page_Continue{
        height: 60px;
        width: auto;
        min-width: 200px;
        background-color: #39a8a8;
        position: absolute;
        color: white;
        border-radius: 1px;
        font-size: clamp(0px, 4.9vw, 17px);
        bottom: 30px;
        border-radius: 130px;
    }

    .Location-Tariff{
        display: flex;
        justify-content: center;
    }

    .Location-Content{
        position: absolute;
        z-index: 10;
        width: 40.5vw;
        background-color: #dedede;
        height: 20vh;
        overflow-y: scroll;
        margin-top: 63px;
        margin-left: 101px;
    }

    .Currency-Content{
        position: absolute;
        width: 54px;
        background-color: #dedede;
        margin-top: 164px;
    }

    .Currency-Dropdown-Master{
        display: flex;
        align-items: center;
    }

    .Other_House_Type{
        min-width: 90%;
        max-width: 731px;
        width: 50%;
        height: 445px;
        display: none;
        flex-direction: column;
        align-content: center;
        background-color: white;
        position: absolute;
        box-shadow: 0 0 0 10000px rgb(0 0 0 / 65%);
        animation: transition 0.2s;
        overflow: hidden;
        z-index: 50;
        border-radius: 5px;
    }

    .Other_H_Banner{
        width: 100%;
        background-color: rgb(0, 0, 0);
        height: 55px;
        margin-top: 0px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-inline: 10px;
    }

    .Other_Header_Text{
        font-family: 'Manrope', sans-serif;
        margin: 0px !important;
    }

    .Other_H_Select_Container{
        display: flex;
        width: 100%;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .Other_H_User{
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .Other_H_Text_Container{
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .Other_H_Types{
        width: 100%;
        background-color: #f3f3f3 !important;
        text-align: start;
        margin-top: 5px;
        font-family: 'Manrope', sans-serif;
        display: flex;
        align-items: center;
        height: 35px;
        padding: 10px;
        font-weight: 600;
    }

    .Exit_Other{
        width: 30px;
        height: 30px;
        background-color: red;
        border-radius: 5px;
    }
    
    .Close_Other_Button{
        width: 100%;
        height: 100%;
        background-color: transparent !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Other_H_Input{
        width: 90%;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        height: 40px;
    }

    .Other_H_SubHeading{
        font-family: 'Manrope', sans-serif;
        color: black;
        font-size: 0.9rem !important;
        text-align: start;
        margin-top: 10px;
    }

    .Other_Property_Submit{
        width: 90%;
        background-color: #39a8a8;
        color: white;
        font-family: 'Manrope', sans-serif;
        margin-top: 20px;
        font-size: 15px;
        height: 40px;
    }

    .Other_Input_Text{
        font-size: 12px;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
    }


    /**========================================================================
     *                           CURRENT HEAT PAGE
     *========================================================================**/
    .MOB_Current_Heat{
        width: 100%;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-inline: 5%;
    }

    .Tariff_MOB_Container{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-height: 27vh;
    }

    .Location_MOB_Container{
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        margin-bottom: 1vh;
        box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%);
    }

    .MOB_Location_Image{
        width: 144px;
        height: 10vh;
        max-height: 97px;
        margin-right: 2px;
    }

    .Drop_Btn_Loc{
        height: 10vh;
        width: 100%;
        font-size: 12px;
        background-color: red !important;
        color: white;
        margin-left: 2px;
    }

    .Price_MOB_Container{
        width: 100%;
        margin-bottom: 25px;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: #d1d1d1;
        padding-inline: 8px;
    }

    .Currency_Box{
        width: 10vw;
        display: flex;
        justify-content: center;
        background-color: transparent !important;
        height: 7vh;
        align-items: center;
        font-family: 'Manrope', sans-serif;
        font-size: clamp(0.4em, 0.9em, 1em);
    }

    .kWh_Box{
        width: 12vw;
        display: flex;
        justify-content: center;
        background-color: transparent !important;
        height: 7vh;
        align-items: center;
        font-family: 'Manrope', sans-serif;
        font-size: clamp(0.4em, 0.9em, 1em);
    }

    .Input_Box_Tariff{
        height: 7vh;
        width: 100%;
        font-size: clamp(0.4em, 0.9em, 1em);
        background-color: transparent !important;
        color: black;
        border: none;
        text-align: center;
    }

    .Input_Box_Tariff::placeholder{
        color: rgba(0, 0, 0);
        font-family: 'Manrope', sans-serif;
        font-weight: 400;
    }

    .Tariff_Page_Continue{
        height: 60px;
        background-color: #39a8a8;
        position: absolute;
        color: white;
        border-radius: 1px;
        height: 60px;
        width: auto;
        padding-inline: 30px;
        min-width: 200px;
        bottom: 30px;
        font-size: clamp(0px, 4.9vw, 17px);
        border-radius: 130px;
    }


    /**========================================================================
     *                           HOUSE AGE PAGE
     *========================================================================**/

     .House_Age_Page{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        animation: transition 0.2s;
     }

     .House_Age_Container{
        display: flex;
        align-items: center;
        width: 90%;
        flex-direction: column;
        aspect-ratio: 3 / 1;
        height: 63vh;
        max-height: 70vh;
     }

     .House_Age_Btn{
        height: 16%;
        width: 100%;
        background-color: transparent;
        background-size: 500px 100%;
        box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%);
        display: flex;
        margin-bottom: 15px;
        justify-content: space-between;
        align-items: center;
        padding: 0px;
        font-size: 1em;
    }

    .House_Age_Btn > p{
        margin-inline: 6.5%;
        font-size: 0.8em;
        display: flex;
        white-space: nowrap;
        justify-content: center;
        min-width: clamp(4em,4em,6em);
    }

    .House_Age_Clicked div{
        background-color: #ea1c1c;
        color: white;
    }

    .House_Age_Page_Continue{
        height: 60px;
        width: auto;
        background-color: #39a8a8;
        color: white;
        border-radius: 1px;
        position: absolute;
        padding-inline: 30px;
        min-width: 200px;
        bottom: 30px;
        font-size: clamp(0px, 4.9vw, 17px);
        border-radius: 130px;
    }

    .House_Age_Title{
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .Current_Heating_Container{
        width: 100%;
    }
    
    .Current_Heating_Image{
        aspect-ratio: 1/1;
        max-width: 6vh;
        margin-inline: 1.9em;
    }

    .Heat_Type_Btn{
        background-color: #f5f5f5;
        font-size: 15px;
        font-family: 'Manrope', sans-serif;
        box-shadow: 0px 1px 3px 0px rgb(0 0 0 / 20%);
        min-width: 100%;
        height: 9vh;
        display: flex;
        padding: 0px;
        align-items: center;
    }

    .Heat_Type_Clicked div{
        background-color: #ea1c1c;
    }

    .Current_Heating_Description{
        background-color: #383838;
        height: 100%;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Current_Heating_Description p{
        color: white !important;
        font-size: clamp(0px, 3vw, 4vw) !important;
    }

    .House_Heating_Type{
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 100%;
        height: auto;
        margin-bottom: 10px;
    }

    .House_Age_Description{
        background-color: #383838;
        color: #c6c6c6;
        width: 100%;
        height: 100%;
        text-align: left;
        padding: 5px;
        padding-inline: 0.7em;
        line-height: 0.85em;
        display: flex !important;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .House_Age_Clicked{
        background-color: #EA1C1C;
    }

    /**========================================================================
     *                           ROOMS PAGE
     *========================================================================**/

    .Room_Display_Close{
        min-width: 50px;
        max-width: 50px;
    }
    
    .Room_Display_Content{
        height: 65%;
        min-width: 100px;
        display: flex;
        justify-content: center;
        margin-top: 15px;
        overflow-y: scroll;
    }

    .Room_Display_Image{
        height: 450px;
        width: 450px;
    }

    .House_Preview{
        width: 90%;
        height: 80%;
        font-weight: 800;
    }

    .Room_Preview_Title{
        background-color: black;
        font-size: clamp(0px, 1.9vw, 25px);
        min-height: 65px;
        width: 40%;
        color: white;
        padding-left: 20px;
        display: flex;
        align-items: center;
        border-collapse: collapse;
    }

    .Room_Preview_Cell{
        height: auto;
        max-height: 50%;
        width: 40%;
        display: flex;
        align-items: center;
        font-size: clamp(0px, 1.9vw, 25px) !important;
        background-color: #f7f7f7;
        border-collapse: collapse;
        border-bottom: 1px #a8a6a6 solid;
    }

    .Room_Preview_Cell_AEC{
        justify-content: center !important;
        border-left: 1px #a8a6a6 solid;
        border-right: 1px #a8a6a6 solid;
    }

    .Room_Preview_Dim{
        font-size: clamp(0px, 1.9vw, 25px) !important
    }

    .Room_Name_Cell{
        width: 20%;
        padding: 20px;
    }

    .Room_Preview_Row{
        max-height: 400px;
        display: flex;
        flex-direction: row;
        min-width: inherit;
    }

    .Room_Preview_Image{
        aspect-ratio: 1/1;
        height: 100%;
    }

    .Room_Preview_Info{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 50%;
    }

    .Room_Preview_Results_Right{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        font-weight: 700;
        width: 100%;
        
    }

    .Room_Preview_Results_Right p{
        display: flex;
        flex-direction: row;
        font-size: clamp(0.65em,0.65em,5em);
    }

    .Room_Preview_Results_Left{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .Room_Preview_Mob_Footer_Cont{
        height: 30px;
        display: flex;
        width: 80%;
        justify-content: center;
        align-items: center;
        margin-top: 5px;
    }

    .Room_Preview_Mobile_Icon{
        display: flex;
        height: 70%;
        aspect-ratio: 1/1;
        margin-inline: 0.6em;
    }

    .Room_Display_Watts{
        height: 60px;
        width: 100%;
        background-color:#00c412;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Room_Display_Main{
        background-color: white;
        height: 660px;
        max-width: 100%;
        position: absolute;
        flex-direction: column;
        border-radius: 10px;
        padding-top: 15px;
        margin-top: 33px;
        margin-bottom: 500px;
        animation: popup 0.2s;
    }

    .Room_Display_Header{
        display: flex;
        height: auto;
        min-width: 100%;
        margin-top: 15px;
    }

    .Room_Display_Footer{
        width: 100%;
        height: 200px;
        display: flex;
        justify-content: center;
    }

    .Room_Title{
        height: 65px;
        width: 100%;
        background-color: #d1d1d1;
        border-radius: 100px 100px 100px 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
    
    .Room_Title_Text{
        font-size: clamp(0px, 2.8vw, 32px) !important;
        font-family: 'Manrope', sans-serif !important;
        font-weight: 600 !important;
        margin: 0px;
    }

    .Room_Display_Close{
        min-width: 50px;
        max-width: 50px;
    }

    .Room_Display_Image{
        height: 450px;
        width: 450px;
    }

    #Rooms_Page{
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        animation: transition 0.2s;
    }

    .Rooms_Content {
        min-height: 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        overflow-y: scroll;
    }

    .Room_Input_Container{
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .Rooms_Table{
        display: flex;
        justify-content: center;
        height: auto;
        width: 100%;
        max-height: 380px;
        overflow-y: scroll;
    }

    .Room_Preview_Mob{
        background-color: #d9d9d9;
        height: 210px;
        width: 100%;
        margin-top: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .Room_Preview_Mob_Title_Cont{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 80%;
        height: 35px;
        background-color: #f5f5f5;
    }

    .Room_Preview_Mob_Title_Cont h1{
        font-size: clamp(1em,1em,2em) !important;
        font-weight: 700;
        margin: 0px !important;
    }

    .Room_Preview_Mob_Main_Cont{
        width: 80%;
        height: 105px;
        background-color: white;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .Room_Preview_Mobile_Icon_Cont{
        height: 100%;
        width: auto;
        background-color: transparent;
    }

    .Room_Info{
        margin-top: 10px;
        font-size: 18px;
        font-weight: bolder;
        max-height: 100px;
        margin-bottom: 4px;
    } 

    .Rooms_Input_Label {
        height: 100%;
        width: 100%;
        display: flex;
        background-color: #161616;
        justify-content: center;
        align-items: center;
    }

    .Rooms_Input_Label p{
        font-size: 12px;
        color: white;
    }

    .Rooms_Inputs{
        display: flex;
        justify-content: center;
        width: auto;
    }

    .Rooms_Add_Button{
        width: 100%;
        height: 100%;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        color: white;
        overflow: hidden;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: green;
        border-radius: 3px;
        border: 1px #9b9b9b solid;
        font-size: clamp(0px,1.5em,2em);
    }

    .Rooms_Delete_Button{
        width: 100%;
        height: 35px;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        color: white;
        overflow: hidden;
        font-size: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #ea0000;
    }

    .Rooms_Update_Button{
        width: 100%;
        height: 100%;
        font-family: 'Manrope', sans-serif;
        font-weight: 500;
        color: white;
        overflow: hidden;
        font-size: 14px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #3eab33;
        border-radius: 3px;
        border: 1px #9b9b9b solid;
        font-size: clamp(0px,1.5em,2em);
    }

    .Rooms_Tab_Info{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .Rooms_Title{
        margin-top: 15px;
    }

    .Room_Table_Input{
        min-width: 56px;
        max-width: 56px;
        border: none;
    }

    .Rooms_Edit_Container {
        display: flex;
        flex-direction: row;
        height: 100%;
        justify-content: flex-end;
    }

    .Input_Boxes {
        min-height: 35px;
        width: 100%;
        font-size: 12px;
        border: none;
        background-color: #e0e0e0;
        padding: 10px;
    }

    .Submit_Button{
        min-height: 30px;
        min-width: 30px;
        max-width: 30px;
        border-radius: 100%;
        font-size: 15px;
        color: white;
        background-color: red;
        margin-left: 5px;
    }
    
    .Results_Buttons{ /* Is on Rooms Page: Takes you to the results */
        display: flex;
        font-size: 20px;
        gap: 6px 10px;
        /*! flex-wrap: wrap; */
        min-width: 50%;
        justify-content: space-around;
        display: none;
    }

    .Results_Bottom_Left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }.Results_Bottom_Right{
        position: relative;
        width: 100%;
        display: flex;
        align-items: center;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: #00000096 0px 0px 6px 0px;
        margin-top: 1em;
    }

    .Results_Container_Image{
        height: 45vh;
        width: 100%;
        display: inline-block;
        padding: 10px;
        box-shadow: #00000096 0px 0px 9px 0px;
        border-radius: 30px;
    }

    .Yandiya_Heat_Text p{
        font-size: clamp(0.5em, 0.4em, 1em);
    }

    /* Dropdown Button */
    .Drop_Btn {
        width: 100%;
        font-size: 14px;
        font-family: 'Manrope', sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        height: 38px;
        background-color: #d1d1d1;
        border-radius: 3px;
        border: 1px #b3b3b3 solid;
        color: #8e8e8e;
    }
    
    /* The container <div> - needed to position the dropdown content */
    .dropdown {
        position: relative;
        display: inline-block;
    }
    
    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
        display: none;
        position: absolute;
        flex-direction: column;
        background-color: #d1d1d1;
        height: 160px;
        width: 80%;
        box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
        z-index: 1;
        Overflow-y: scroll;
        font-size: 15px;
        margin-right: 1px;
        margin-top: 199px;
    }

    .dropdown-content::-webkit-scrollbar {
        width: 10px !important;
    }

    .dropdown-content::-webkit-scrollbar-track {
        background: #f1f1f1; 
    }

    .dropdown-content::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 2px;
    }
    
    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {background-color: #ddd}
    
    /* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
    .show {display:flex !important;}

    .Dropdown_Button{
        font-size: 12px;
        min-height: 34px;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        flex-flow: row wrap;
        align-items: center;
        background: transparent;
        border-bottom: solid 0.5px #bfbfbf;
    }

    .Dropdown_Button:hover{
        background-color: #bbe8e8 !important;
    }

    .Delete_Button{
        max-width: 30px; 
        background-color: white;
    }
    
    .Delete_Button:hover{
        background-color: #DDDDDD;
    }

    .Table_Headers{
        border: solid 2px black;
        display: flex;
        height: 50px;
        width: 61px;
        justify-content: center;
        align-items: center;
        margin: 2px;
        background-color: #d3d3d3;
        border-radius: 3px;
      }

    .Table_Delete_Column{
        border-top: none;
        border-right: none;
        height: 25px;
        width: 30px;
        display: flex;
        align-items: center;
        flex-direction: center;
    }

    .Delete_Row_Icon{
        height: 20px;
        width: 20px;
    }

    .Table_Cell {
        display: flex;
        font-size: 13px;
        max-width: 47%;
        min-width: 47%;
        height: 38px !important;
        padding: 0px;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        margin: 4px;
        color: #6e6e6e;
        font-size: 10px;
        flex-direction: column;
    }

    .Table_Cell_Room_Type {
        display: flex;
        font-size: 13px;
        min-width: 96%;
        height: 38px !important;
        padding: 0px;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        margin: 4px;
        color: #6e6e6e;
        font-size: 10px;
        flex-direction: column;
    }

    .Table_Row_Container{
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        height: 200px;
        margin-bottom: 20px;
        margin-inline: 30px;
        margin-top: 10px;
        max-width: 100%;
    }

    .Measurement_Change_Container {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        min-height: 40px;
        width: 80%;
        align-items: center;
        transform: scale(0.6);
    }

    .Measurement_Text {
        font-size: 20px;
        font-family: 'Manrope', sans-serif;
        font-weight: 400 !important;
        color: white;
    }

    .Measurement_Change {
        height: 65px;
        width: 160px;
        max-width: 170px;
        background-color: #C90000;
        border-radius: 251px;
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .Measurement_Switch_Block{
        height: 55px;
        min-width: 55px;
        background-color: white;
        border-radius: 26px;
        align-items: center;
        justify-content: center;
    }

    .Meters_Right{
        font-size: 22px !important;
        margin-top: 0px !important;
        transform: translate(12px);
        color: white;
    }

    .Feet_Left{
        font-size: 22px !important;
        margin-top: 0px !important;
        transform: translate(-12px);
        color: white;
    }

    .Measurement_Feet{
        display: none;
    }

    .Rooms_Page_Continue{
        height: 60px;
        width: 304px;
        background-color: #39a8a8;
        color: white;
        margin-top: 30px;
        margin-bottom: 40px;
        font-size: clamp(0px, 4.9vw, 17px);
        border-radius: 130px;
    }

    .Invalid_Input{
        border: solid red 2px;
    }

    .Fill_Detail_Warning {
        margin-top: 10px;
        font-size: 14px;
        color: red;
        display: none;
    }

    .GenerateTemplate{
        margin-top: 59px;
        background-color: #00c412;
        color: white;
        border-radius: 6px;
        height: 58px !important;
        width: 80% !important;
        font-size: clamp(0px, 2.9vw, 17px);
    }

    .Rooms_Page_Generate{
        height: 58px !important;
        width: 200px !important;
        font-size: clamp(0px, 4.9vw, 17px);
    }

    .Rooms_Page_Footer{
        width: 100%;
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .Input_Box_Container {
        width: 100%;
        font-size: 14px;
        font-family: 'Manrope', sans-serif;
        display: flex;
        flex-direction: row;
        height: 38px;
        background-color: #d1d1d1;
        border-radius: 3px;
        border: 1px #b3b3b3 solid;
        justify-content: flex-end;
    }

    .Input_Boxes_Rooms{
        min-height: 38px;
        width: 85%;
        font-size: 14px;
        border: none;
        background-color: transparent;
        padding: 10px;
        font-family: 'Manrope', sans-serif;
      }
    
    .Symbol_Box{
        min-height: 38px;
        width: 15%;
        font-size: 14px;
        border: none;
        background-color: transparent;
        font-family: 'Manrope', sans-serif;
        display: flex;
        align-items: center;
        color: #8e8e8e;
        justify-content: center;
    }

    .Symbol_Box_Temp{
        min-height: 38px;
        width: 15%;
        font-size: 14px;
        border: none;
        background-color: transparent;
        font-family: 'Manrope', sans-serif;
        display: flex;
        align-items: center;
        color: #8e8e8e;
        justify-content: center;
    }
    
    .Measurement_Switch_Block{
        height: 54px;
        min-width: 54px;
        background-color: white;
        border-radius: 26px;
    }

    .Measurement_Change_Squared_Off{
        height: 65px;
        width: 160px;
        max-width: 170px;
        background-color: #a8a6a6;
        border-radius: 251px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
    }

    .Meters_Text_Off{
        font-size: 22px;
        font-family: 'Manrope', sans-serif;
        color: white;
        margin-right: 8px;
        margin-left: 8px;
    }

    .Measurement_Squared{
        display: none;
    }

    .Room_Alter{
        width: 100%;
        max-width: 1000px;
        height: 53px;
    }

    .Rooms_Input_Label_Green{
        height: 21px;
        max-height: 21px;
        width: 100%;
        display: flex;
        background-color: #00aa11;
        color: white;
        justify-content: center;
        align-items: center;
    }

    .Rooms_Input_Label_Green p {
        font-size: 12px;
        color: white;
    }

    .Rooms_Input_Label_Red{
        height: 21px;
        max-height: 21px;
        width: 100%;
        display: flex;
        background-color: #a00000;
        justify-content: center;
        align-items: center;
      }

    .Rooms_Input_Label_Red p{
        font-size: 12px;
        color: white;
    }


    .Template_Choice_Container{
        width: 100%;
        height: 250px;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
        margin-top: 15px;
    }

    .Close_Button{
        background-color: transparent;
        display: none;
    }

    .Template_Choice_Desc{
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .Template_Options{
        display: flex;
        justify-content: space-around;
        width: 100%;
    }

    .Template_Option{
        width: 95px;
        color: white;
    }

    .TO_Yes{
        background-color: #00c412;
    }.TO_No{
        background-color: red;
    }

    .Measurement_Outer_Container{
        background-color: #212121;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .Measurement_Outer_Container p:first-of-type{
        font-size: clamp(0px,0.69em,2em);
        margin-top: 5px;
    }

    .Measurement_Squared_Feet{
        margin-left: 20px;
        margin-top: 4px;
        display: none;
    }

    /**========================================================================
     *                           RESULTS PAGE
     *========================================================================**/

    .Results{
        display: block;
        border-radius: 5px;
        background-color: red;
        color: white;
    }

    .Results_Page{
        display: flex;
        animation: transition 0.2s;
        align-items: center;
        max-height: 75vh;
        flex-direction: column;
    }

    .Results_Correct{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 50vh;
        max-height: 50vh;
        width: 94vw;
    }

    .Results_Title{
        margin-top: 15px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .Green_Summary_Title{
        font-weight: bolder;
        margin-top: 10px;
    }

    .Results_Page_Continue{
        height: 60px;
        width: 270px;
        background-color: #39a8a8;
        color: white;
        font-family: 'Manrope', sans-serif;
        font-size: clamp(0px, 4.9vw, 17px);
        border-radius: 130px;
        margin-top: 3vh;
    }

    .Result_Info{
        display: flex;
        flex-direction: column;
        width: 96%;
        align-items: center;
    }

    .Results_Button{
        min-height: 4vh;
        min-width: 100%;
        max-height: 4vh;
        max-width: 175px;
        font-size: 15px;
        font-family: 'Manrope', sans-serif;
        font-weight: 600;
        background-color: #67C45B;
        color: black;
    }

    .Results_Button_Current{
        background-color: rgb(179,179,179) !important;
    }

    .Result_Button_p{
        display: flex;
        justify-content: flex-start;
        width: 100%;
        margin-left: 35px;
    }

    .Results_Buttons_Container{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .Systems_Box{
        display: flex;
        width: 90%;
        justify-content: space-between;
        min-height: 6.5vh;
    }

    .Current_System{
        background-color: rgb(104,104,104);
        width: 49%;
        height: 6.5vh;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
    }

    .Yandiya_System{
        background-color: #3EAB33;
        width: 49%;
        height: 6.5vh;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .ATH_Result_Container{
        width: 90%;
    }

    .ATH_Title{
        width: 100%;
        background-color: #000000;
        font-family: 'Manrope', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: white;
        display: flex;
        height: 4.5vh;
        justify-content: center;
        align-items: center;
    }

    .ATH_Result{
        width: 100%;
        background-color: #FFBB57;
        height: 4.5vh;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        font-family: 'Manrope', sans-serif;
    }

    .MOB_Results_Top_Container{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 98%;
        min-height: 17vh;
        justify-content: space-around;
    }

    .Results_Mid_Container{
        display: flex;
        flex-direction: row-reverse;
        width: 90%;
        align-items: center;
        margin-top: 1vh;
    }

    .Yandiya_Heat_Text{
        background-color: #2F8226;
        width: 100%;
        min-height: 4vh;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .Current_Heat_Text{
        background-color: rgb(104,104,104);
        min-height: 4vh;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .Current_Heat_Text p{
        font-size: clamp(0.5em, 0.4em, 1em);
    }

    .Results_Bottom_Container{
        width: 94vw;
        display: flex;
        align-items: center;
        flex-direction: column;
        height: 100vh;
    }

    .Bottom_Text{
        background-color: black;
        color: white;
        font-family: 'Manrope', sans-serif;
        font-size: 14px;
        width: 80%;
        border-radius: 20px;
        height: 5vh;
        /*! vertical-align: middle; */
        /*! display: inline; */
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 5px;
    }

    .Percentage_Saved_Container{
        background-color: rgb(62,171,51);
        height: 11vh;
        width: 80%;
        border-radius: 20px;
    }

    .Percentage_Text{
        color: white;
        font-size: clamp(1em,2em,6em) !important;
        margin-bottom: 0px !important;
        margin-top: 14px;
        font-family: 'Manrope', sans-serif !important;
        font-weight: bolder;
    }


    /**========================================================================
     *                        GREEN SUMMARY PAGE
     *========================================================================**/

    .Green_Summary_Button{
        height: 50px;
        width: 300px;
        background-color: #39a8a8;
        color: white;
        font-family: 'Manrope', sans-serif;
        font-size: 12px;
        margin-top: 25px;
    }

    .Green_Summary{
        height: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        animation: transition 0.2s;
    }

    .Green_Results_Buttons{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        Width: 90%;
        border: none;
        height: 410px;
      }
    
      .Green_Button{
        height: 90px;
        width: 90px;
        margin-right: 14px;
        margin-left: 14px;
      }
    
      .Green_Title{
        display: flex;
        justify-content: center;
        font-size: 13px;
        font-weight: bold;
        margin-top: 10px;
        font-family: 'Manrope', sans-serif;
        
      }
    
      .Green_Sub_Title{
        display: flex;
        justify-content: center;
        font-size: 18px;
        font-weight: bolder;
        margin-top: 10px;
        font-family: 'Manrope', sans-serif;
        color: #00ad08;
      }

      .Green_Info{
        display: flex;
        align-items: center;
        background-color: #383838;
      }

      .Green_Titles{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 15px;
        background-color: #00ad08;
        width: 100%;
        height: 100%;
      }

      .Green_Titles p{
        color: white !important;
      }



    /**========================================================================
     *                           CONTACTS PAGE
     *========================================================================**/

    .PDF_Option{
        animation-name: PDF_Option_Ani;
        animation-duration: 1s;
        position: absolute;
        display: none;
        height: 540px;
        width: 90%;
        background-color: #fcfcfc;
        border-radius: 15px;
        align-items: center;
        flex-direction: column;
        border: 1px solid black;
        box-shadow: 5px 10px 18px #888888;
        margin-left: -10px;
    }

    .PDF-Image{
        height: 300px;
        width: 300px;
    }

    .PDF_Option_Image{
        width: 325px;
        height: auto;
        padding: 10px;
        background: transparent;
    }

    .PDF_Option_Title {
        margin-top: 8px;
        padding: 20px;
        height: 14%;
        width: 90%;
        margin-bottom: -9px;
    }

    .PDF_Option_Title h1{
        font-size: 17px
    }

    .PDF_Option_Download_Text {
        margin-top: 25px;
        color: red;
        font-size: 30px;
        font-family: 'Manrope', sans-serif;
    }

    .PDF_Option_NO{
        background-color: transparent;
    }

    .Submit_Form_Button {
        border: 0px;
        width: 280px;
        height: 60px;
        background-color: #39a8a8;
        color: white;
        margin-top: 18px;
        border-radius: 3px;
        font-family: 'Manrope', sans-serif;
        border-radius: 130px;
    }

    .Contact_Input_Icons{
        width: 2em;
        height: 2em;
    }

    .Contacts_Page{
        display: flex;
        flex-direction: column;
        animation: transition 0.2s;
        align-items: center;
    }

    .Input_Details_Container {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        background-color: #ededed;
        border-radius: 2px;
        border: solid 1px#d3d3d3;
        height: 40px;
        margin-bottom: 0.5vh;
    }

    .Input_Boxes_Contact {
        width: 85%;
        height: 36px;
        border: none;
        background-color: transparent !important;
        font-size: clamp(0.3em,1em,3em);
    }

    .Text_Area {
        border: solid 2px black;
        display: flex;
        background-color: #ededed;
        border: solid 1px#d3d3d3;
        width: 100%;
        height: 14vh;
        justify-content: space-around;
    }

    .textArea_Contact_Info {
        max-height: 14vh !important;
        min-height: 14vh !important;
        width: 85%;
        border: none;
        background-color: transparent;
        font-size: clamp(0.3em,1em,3em);
    }

    .g-recaptcha {
        transform:scale(0.77);
        transform-origin:0 0;
    }

    .Contact_Details{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1vh;
        width: 82%;
        height: auto;
    }

    .User_Details_Contacts{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1vh;
        width: 100%;
    }

    .Contacts_Title{
        margin-top: 15px;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .Submit_Box{
        margin-bottom: 10px;
        height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .d-block{
        border: solid black 1px !important;
    }

    .carousel-control-prev-icon{
        background-color: black !important;
    }
    .carousel-control-next-icon{
        background-color: black !important;
    }

    .File_Uploaded_Text{
        font-size: 10px;
        margin-bottom: 0px;
    }

    .File_Submit_Button{
        width: 183px;
        font-size: 10px;
        height: 35px;
    }

    .Image_Gradient{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 65%;
        background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0) 100%);
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }.Image_Header{
        color: rgb(245,173,17);
        font-size: clamp(1em, 1.5em, 2.5em);
        text-align: left;
        font-weight: 600;
        font-family: 'Manrope', sans-serif !important;
      }.Image_Text{
        color: white;
        font-size: clamp(0.3em, 0.9em, 1em);
        text-align: left;
        font-family: 'Manrope', sans-serif;
        margin-bottom: 15px !important;
        margin-top: 12px !important;
      }
      

    /**========================================================================
     *                           ANIMATIONS
     *========================================================================**/
    
    .shimmer {
        animation : Shimmer infinite;
        background: linear-gradient(to right, #6ba815 4%, #9cc562 25%, #6ba815 36%);
        background-size: 500px 100%;
    
        
        animation-duration: 4s;
        animation-fill-mode: forwards; 
        animation-iteration-count: infinite;
        animation-name: Shimmer;
        animation-timing-function: linear;
    }
    @keyframes Shimmer{
        0% {
        background-position: -500px 0;
        }
        100% {
        background-position: 500px 0;
        }
    }

    @keyframes transition{
        0% {opacity: 0%;}
        100% {opacity: 100%;}
    }
}    