/* Start Main Global Ruls */
/*  */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700&display=swap');
/*  */
*,
*::before,
*::after
{
    font-size: 16px;
    font-family: 'Nunito','segoe UI', sans-serif;
    box-sizing: border-box;
}
:root{
    --main-bg-clr:#252525;
    --alt-ele-bg-clr: #0075FF;
    --alt-bg-clr: linear-gradient(20deg ,#0057bb,#0075FF );
    --main-tx-clr:#252525;
    --alt-tx-clr:#fff;
    --shadow-overlay:#252525c7;
    --BordRadius : 50px
}
html{
    scroll-behavior: smooth;
    animation-name: PageLoad;
    animation-play-state: running;
    animation-timing-function: ease-out;
    animation-duration: 0.7s;
}
.flexbox-center-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.flexbox-center-column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media (max-width:767px) {
    .container{
        width: calc(100% - 80px);
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width:768px) {
    .container{
        width: calc(100% - 80px);
        padding: 0 30px;
        margin: 0 25px;
    }
}
@media (min-width:992px) {
    .container{
        width: calc(100% - 80px);
        padding: 0 30px;
        margin: 0 25px;
    }
}
@media (min-width:1200px) {
    .container{
        width: calc(100% - 80px);
        padding: 0 30px;
        margin: 0 25px;
    }
}
/* End Global */

header.mainAppHeader{
    position: sticky;
    z-index: 150;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--alt-bg-clr);
    height: 60px;

}
header.mainAppHeader .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
.container .logo{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 150px;
}
.container .logo img.logoImg{
    max-width: 100%;
}
.container .logo .textlogo{
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--alt-tx-clr);
}
.container .toggle{
    width: fit-content;
    height: fit-content;
    cursor: pointer;
    user-select: none;
}
.container .toggle >:first-child{
    color: var(--alt-tx-clr);
    font-size: 2.2rem;
    text-align: center;
}
.container nav.ControlPannel{
    position: absolute;
    z-index: -1;
    top: 100%;
    right: 0;
    justify-content: center;
    gap: 15px;
    list-style: none;
    background-color:var(--main-bg-clr);
    width: 100%;
    height: 70vh;
    opacity: 0;
    pointer-events: none;
    border: 2px solid;
    transition: height 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94)
                ,opacity 0.3s ease-out;
}
@media (min-width:992px) {
    .container nav.ControlPannel{
        background-image: url('../assists/img/General_Icons/location_search.svg');
        background-repeat: no-repeat;
        background-size: 300px;
        background-position: top center;
    }
}
.container nav.ControlPannel.active{
    height: 100vh;
    opacity: 1;
    pointer-events: all;

}
.container nav.ControlPannel li:last-child{
    margin-bottom: 80px;
}
.container nav.ControlPannel li.mobSearchCont{
    position: relative;
    padding: 10px 5px;
    height: fit-content;
    width: 50%;
    border-radius: var( --BordRadius );
    gap: 10px;
}
@media (max-width:768px) {
    .container nav.ControlPannel li.mobSearchCont{
        width: 75% !important;
    }
}

.container nav.ControlPannel .toggleNotificationPanel {
    background: #e4e4e4;
    padding: 10px 25px;
    gap: 20px;
    margin-bottom: 15px;
    border-radius: var( --BordRadius );
}
.container nav.ControlPannel .toggleNotificationPanel .mobNotifiList{
    font-size: 1.5rem;
    color: #252525;
}
.container nav.ControlPannel .toggleNotificationPanel > a{
    text-decoration: unset;
    color: var(--main-tx-clr);
}
.container nav.ControlPannel .toggleNotificationPanel >span{
    background: var(--alt-bg-clr);
    padding: 5px 8px;
    color: var(--alt-tx-clr);
}


.container nav.ControlPannel li >input[type='search']{
    padding: 8px 10px;
    border: 2px solid #202020;
    background: #e4e4e4;
    border-radius: var( --BordRadius ) ;
    outline: none;
    transition: border 0.3s ,background 0.4s ease-out;
}
.container nav.ControlPannel li >button#mobSendData{
    display: inline-block;
    background: var(--alt-bg-clr);
    width: 40px;
    height: 40px; 
    border-radius: 50%;
    cursor: pointer;
    border: none;
}
.container nav.ControlPannel li >input[type='search']:focus{
    border: 2px solid var(--alt-ele-bg-clr);
    background: #FFF;
}
.container nav.ControlPannel li >button#mobSendData >:first-child{
    font-size: 1.5rem;
    color: #fff;
}
.Contact_us {
    justify-content: space-around;
    gap: 25px
}
.Contact_us .fbaccount >a ,
.Contact_us .linkdInAccount > a ,
.Contact_us .gitAccount > a 
{
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

.Contact_us .fbaccount > a >:first-child ,
.Contact_us .linkdInAccount > a >:first-child ,
.Contact_us .gitAccount > a >:first-child
{
    font-size: 2rem;
    color: var(--alt-ele-bg-clr);
}
.Contact_us .fbaccount > a >:last-child ,
.Contact_us .linkdInAccount > a >:last-child ,
.Contact_us .gitAccount > a >:last-child
{
    font-size: 14px;
    color: var(--alt-tx-clr);
    font-weight: bold;
}


main.app{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 95vh;
    background-image: url('../assists/img/General_Icons/pc-version-bg.jpg');
    background-size: cover;
    background-position: bottom center;
}
main.app::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-overlay);
}

main.app .leftSection{
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 25px;
    width: 70%;

}
@media (max-width:768px) {
    main.app .leftSection{
        display: none;
    }
    
}
.leftSection .appSearch{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.leftSection .appSearch .CityChoosedName{
    gap: 5px;
    user-select: none;
    padding: 5px 15px;
    border-radius: var( --BordRadius ) ;
    border-left: 3px solid var(--alt-bg-clr);
    width: fit-content;
    justify-content: flex-start;
    backdrop-filter: blur(10px);
    background: var(--shadow-overlay);
}
.leftSection .appSearch .CityChoosedName >label{
    font-weight: bold;
    font-size: 1.1em;
    color: var(--alt-tx-clr);
    padding-right: 30px;
}

.leftSection .appSearch .CityChoosedName .countryDisplayedIMG{
    width: 35px;
    height: 35px;
    overflow: hidden;
    border-radius: 50%;
    
}
.leftSection .appSearch .CityChoosedName .countryDisplayedTxt{
    position: relative;
    text-transform: capitalize;
    color: var(--alt-tx-clr);
    font-weight: 400;
}
.leftSection .appSearch .CityChoosedName .countryDisplayedTxt::after{
    content: '';
    position: absolute;
    top: 120%;
    left: 50%;
    background:var(--alt-ele-bg-clr);
    width: 100%;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 50px;
}
.leftSection .appSearch .CityChoosedName .countryDisplayedIMG img{
    max-width: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
}

.leftSection .appSearch .searchContainer {
    position: relative;
    padding: 5px 10px;
    border-radius: var( --BordRadius ) ;
    gap: 10px;
    border: 2px solid #c4c4c4;
    
}
.leftSection .appSearch .searchContainer #inputCity{
    padding: 10px;
    margin: 10px 0;
    outline: none;
    border: none;
    box-shadow: 0 0 10px 0 #e6e6e6;
    background: #e4e4e4;
    border-bottom:4px solid var(--alt-bg-clr);
    transition: background 0.3s ease-out;
}
.leftSection .appSearch .searchContainer #inputCity:focus{
    background: #fff;
    transition: border 0.3s linear;
}

.leftSection .appSearch .searchContainer button.sendSearcgData{
    padding: 10px;
    background: var(--alt-bg-clr);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.leftSection .appSearch .searchContainer button.sendSearcgData >:first-child{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 1.3rem;
}
.leftSection .forecastBar{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 25px;
}
 .leftSection .forecastBar h3.active{
    padding: 15px 10px;
    border-radius: 25px;
    background: #c4c4c4;
}
.leftSection .countrysCont{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-auto-flow: column;
    gap: 40px;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 10px;
    backdrop-filter: blur(10px);
}
.leftSection .countrysCont::-webkit-scrollbar{
    -webkit-appearance: none;
    background: #c4c4c4;
    border-radius: 30px;
    height: 10px;
}
.leftSection .countrysCont::-webkit-scrollbar-thumb{
    -webkit-appearance: none;
    background: var(--alt-ele-bg-clr);
    border-radius: 40px;
}
.countrysCont .country{
    width: 150px;
    height: 230px;
    overflow: hidden;
    text-align: center;
}
.country .countryIMG{
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 35px;
    transition: height 0.3s ease-out, width 0.5s ease-out;
}
.countrysCont .country.active .countryIMG{
    border: 7px solid var(--alt-ele-bg-clr);    
    transition: height 0.3s ease-out, width 0.5s ease-out;
}
.country .countryIMG img{
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.country .countryTxt{
    display: inline-block;
    font-weight: bold;
    padding: 15px;
    text-transform: uppercase;
    color: var(--alt-tx-clr);
}

.leftSection .weekdaysBar{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.leftSection .weekdaysBar > h3.active{
    text-transform: capitalize;
    font-weight: bold;
    padding: 15px 10px;
    border-radius: 35px;
    background: #c4c4c4;
}
.leftSection ul.weekdaysWithweather{
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 5px 15px;
    backdrop-filter: blur(10px);
    background: var(--shadow-overlay);
    border-radius: 10px;
}
.leftSection ul.weekdaysWithweather > li{
    justify-content: flex-start;
}
.leftSection ul.weekdaysWithweather > li >span{
    width: 140px;
}
ul.weekdaysWithweather > li >a.day{
    text-decoration: none;
    color: var(--alt-tx-clr);
    font-weight: bold;
    text-transform: capitalize;
    width: 120px;

}
li > .humidityCountainer {
    position: relative;
    gap: 8px;
}
li > .humidityCountainer::after{
    content: '';
    position: absolute;
    left: 100%;
    height: 50%;
    border-right: 3px solid var(--alt-ele-bg-clr);
}

li > .humidityCountainer .humidityIco{
    color: #548CFF;
    font-size: 1.2rem;
}
li > .humidityCountainer .humidityTxt,
li > .weatherCondition .weatherConditionTxt ,
li > .winds ,
li > .feelLike .feelLikeTxt ,
li > .weatherCondition p ,
li > .tempture
{
    color: var(--alt-tx-clr);
    font-weight: bold;
}

li > .weatherCondition{
    position: relative;
    gap: 8px;
}
li > .weatherCondition::after{
    content: '';
    position: absolute;
    left: 100%;
    height: 50%;
    border-right: 3px solid var(--alt-ele-bg-clr);
}
li > .winds{
    position: relative;
    gap: 8px;
}
li > .winds::after{
    content: '';
    position: absolute;
    left: 100%;
    height: 50%;
    border-right: 3px solid var(--alt-ele-bg-clr);
}
li > .winds .windsIco{
    color: #ca3429;
    font-size: 2rem;
}
li > .feelLike{
    position: relative;
    gap: 8px;
}
li > .feelLike::after{
    content: '';
    position: absolute;
    left: 100%;
    height: 50%;
    border-right: 3px solid var(--alt-ele-bg-clr);
}
li > .feelLike .feelLikeIco{
    color: #B3541E;
    font-size: 2rem;
}
li > .tempture{
    position: relative;
    justify-content: space-evenly;
}
li > .tempture::after{
    content: '';
    position: absolute;
    left: 100%;
    height: 50%;
    border-right: 3px solid var(--alt-ele-bg-clr);
}
li > .tempture .tempMin{
    gap: 0;
}

.rightSection{
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: url('../assists/img/summer/summMorning.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: background 0.5s ease-out;
}

.rightSection::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--shadow-overlay);

}
.rightSection .ForecastMobile{
    position: relative;
    z-index: 3;
    width: 100%;
    height: 60vh;
}
.ForecastMobile .welcomeSection{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: var(--alt-tx-clr);
}
.ForecastMobile .welcomeSection .welcomeMSG{
    font-weight: bolder;
    font-size: 1.1rem;
    text-transform: capitalize;
    max-width: fit-content;
}
.ForecastMobile .welcomeSection .userIMG{
    margin-left: auto;
    font-size: 1.5rem;
    padding: 5px;
    border-radius: 35px;
    background: var(--alt-ele-bg-clr);
    box-shadow: 0 0 15px 0 #c4c4c4;
}
.ForecastMobile .welcomeSection .username{
    text-transform: capitalize;
    font-weight: bold;
    font-size: 1.0rem;
}
.ForecastMobile .dateAndTimeMob{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-weight: bold;
    color: var(--alt-tx-clr);
    padding: 0 15px ;
}
.ForecastMobile .dateAndTimeMob .time {
    font-size: 14px;
    font-weight: normal;
}
.ForecastMobile .dateAndTimeMob .date{
    font-weight: normal;
    font-size: 1.0rem;
}
.ForecastMobile .WeatherInfo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ForecastMobile .WeatherInfo .tempture{
    display: flex;
    flex-direction: column;
}
.ForecastMobile .WeatherInfo .tempture .temp {
    position: relative;
    font-size: 5.5rem;
    color: var(--alt-ele-bg-clr);
    margin-bottom: auto;
}
.ForecastMobile .WeatherInfo .tempture .temp::after{
    content: '\2103';
    position:absolute;
    top: 15px;
    right: -25px;
    font-size: 1.2rem;
    font-weight: bolder;
    color: var(--alt-tx-clr);
}
.ForecastMobile .WeatherInfo .forecaseDescription{
    gap: 25px;
    font-size: 1.2rem;
}
.ForecastMobile .WeatherInfo .forecaseDescription .ForecastDescriptonTxt{
    color: var(--alt-tx-clr);
}
.ForecastMobile .WeatherInfo .TempatureLogo{
    animation: infinite updown alternate 3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.ForecastMobile .WeatherInfo  .feelAndHumidity{
    gap: 50px;
}
.ForecastMobile .WeatherInfo  .feelAndHumidity .Humidity,
.ForecastMobile .WeatherInfo  .feelAndHumidity .FeelLikeMob{

    gap: 5px;
    color: var(--alt-tx-clr);
}
.ForecastMobile .WeatherInfo .feelAndHumidity .FeelLikeMob .feelTXTMob ,
.ForecastMobile .WeatherInfo .feelAndHumidity .Humidity .HumidityTXT ,
.ForecastMobile .WeatherInfo .feelAndHumidity .FeelLikeMob .secLogo ,
.ForecastMobile .WeatherInfo .feelAndHumidity .Humidity .HumidityLogo 
{
    font-size: 1.2rem;
    font-weight: 400;
    
}
.ForecastMobile .WeatherInfo .feelAndHumidity .FeelLikeMob .secLogo {
    font-size: 1.7rem;
    color: #ff6056;
}
.ForecastMobile .WeatherInfo .feelAndHumidity .Humidity .HumidityLogo{
    font-size: 1.7rem;
    color: #548CFF;
}
.countryNameMob{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--alt-tx-clr);
}
.countryNameMob .CountryMob ,
.countryNameMob .cityMob{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
}
.countryNameMob .countrySecLogo{
    font-size: 1.5rem;
    transform: rotate(45deg);
    color: #072227;
    padding: 5px;
    background-color: #35858B;
    border-radius: 50%;
    
}

.getUsername×Onload{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(120deg, #191919e5 ,#041c32b9, #252525bd,#26001b9c);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(30px);
    gap: 55px;
    transition: flex-direction 0.3s ease-in;
}
@media (max-width:768px) {
    .getUsername×Onload{
        flex-direction: column;
        transition: flex-direction 0.3s ease-out;

    }
    
}
.getUsername×Onload .onloadWelcomeMSG> :first-child{
    color: #fff;
    text-transform: uppercase;
    font-size: 2.5rem;
}
.getUsername×Onload .onloadWelcomeMSG> :last-child{
    color: #fff;
    max-width: 280px;
    text-transform: capitalize;
    line-height: 18px;
    font-weight: 400;
}
@media (max-width:768px) {
    .getUsername×Onload .onloadWelcomeMSG> :first-child{
        font-size: 1.0rem;
        text-align: center;
    }
    .getUsername×Onload .onloadWelcomeMSG> :last-child{
        text-align: center;
    }
}
.getUsername×Onload .usernamefield{
    gap: 8px;
    justify-content: space-around;
    height: 10%;
}
.getUsername×Onload .usernamefield >input[type='text']{
    padding: 10px 8px;
    border: none;
    outline: none;
    background: #c4c4c4;
    border-radius: var( --BordRadius ) ;
    transition: border 0.3s ease , background 0.5s ease-out;
}
.getUsername×Onload .usernamefield >input[type='text']:focus{
    background: #FFF;
    border: 5px solid var(--alt-bg-clr);
}
.getUsername×Onload .usernamefield >button.sendUsername{
    gap: 10px;
    width: 100%;
    padding: 5px 0;
    color: #fff;
    background: var(--alt-bg-clr);
    border: none;
    border-radius: var( --BordRadius ) ;
    cursor: pointer;
    transition: opacity 0.3s ease-out;
}
.getUsername×Onload .usernamefield >button.sendUsername:hover{
    opacity: 0.8;
}
.getUsername×Onload .usernamefield >button.sendUsername >:first-child{
    font-size: 1.5rem;
    transform: rotate(-40deg);
}
.notifications-popup{
    position: fixed;
    z-index: 100;
    bottom: 2%;
    left: 2%;
    padding: 10px;
    background: #212121;
    border-radius: var( --BordRadius ) ;
    transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1) ,height 0.5s ease-out;
    transform: translateX(-400%);
    gap: 8px;
}
.notifications-popup.active{
    transform: translateX(0);
}

.notifications-popup .msgBox{
    border: 2px solid #777;
    gap: 20px;
    list-style: none;
    border-radius: var( --BordRadius );
    padding: 1px 8px;
}
.notifications-popup .notif-msg{
    margin: auto;
    color: var(--alt-tx-clr);
    text-align: start;
    text-transform: capitalize;
}

.notifications-popup .notif-logo{
    color: #FFC900;
    font-size: 2.0rem;
}
