@charset "UTF-8";
/*
	styles\format.css
*/

*{
    user-select:none;
}

@import "base.css";


body{
    //padding:1rem;
    //overflow: hidden;

}

/* modal-wrapper  modal-dialog */

div.modal-wrapper{
    position: absolute;
    top:0;
    left:0;

    display: flex;
    justify-content: center;
    align-items: center;

    width:100vw;
    height:100vh;

    background-color: rgba(255, 255, 255, 0.34);;
}

div.modal-dialog{
    background-color: rgba(255, 129, 0, 0.76);
    width:40%;
    min-height: 70vh;
    border-radius: 1em;
}

div.modal-dialog h3{
    text-align: center;
}

div.modal-dialog div.search-fields{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

div.modal-dialog div.search-fields label,
div.modal-dialog div.search-fields input{
    //display: block;
    width:60%;
    text-align: center;
    height:25px;
    margin:5px;
    border-radius: 0.5em;
    border: none;
}

div.dialog-buttons{
    margin-top:20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
div.dialog-buttons button {
    border-radius: 0.5em;
    width:70px;
    height:30px;
    border: none;
    margin:10px;
    padding:5px;
    font-size: 0.8em;
}
div.dialog-buttons button:hover,
div.dialog-buttons button:focus
{
    background-color: orangered;
}

/********************************************/
#target{
    width:100px;
    height:100px;
    border:1px solid #000;
}

.ui-autocomplete{
    max-height: 300px;
    overflow-x: hidden;
}

#page-main{
    padding:2rem;
    display: flex;
    justify-content: space-around;
    align-content: flex-start;
    flex-wrap: wrap;
}

.weather{
    border:1px solid black;
    border-radius:0.5rem;
    padding:1rem;
    width:160px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}
article.weather div.icon-container{
    padding: 1em;
}

article.weather div.icon-container > i{
    color:darkorange;
    font-size: 2em;
    position: relative;
    animation-name: icon;
    animation-timing-function: linear;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

#template{
    display:none;
}

.temperature::after{
    content: ' °C';
}

.sunrise::before{
    content: 'Sunrise: ';
}

.sunset::before{
    content: 'Sunset: ';
}

.windspeed::before{
    content: 'Wind-speed: ';
}
.windspeed::after{
    content: ' Km/h';
}

.windDirecton::before{
    content: 'Direction: ';
}

.weather-icon{
    position: relative;
    animation-name: icon;
    animation-timing-function: linear;
    animation-duration: 5s;
    animation-iteration-count: infinite;
}

@keyframes icon {
    0%{
        left:0;
    }
    50%{
        left:50px;
    }
    100%{
        left:0;
    }
}

/************************************************************************/
/*********  Alle Angaben zur Breite und zum display **********************/ 

/********* Mobile first !!!!***********************************/

@media only screen and (max-width: 768px) {
	
	
	

}

/*************** Tablets sm **********************************/
@media only screen and (min-width: 768px){

	


}






/************* Notebooks md *******************************/
@media only screen and (min-width: 992px) {
	
	

}     



/************* large Desktops (lg) *******************/
@media only screen and (min-width: 1200px) {

	

} /************** ENDE lg **********************/



