
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: paleturquoise;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('https://source.unsplash.com/1600x900/?landscape');
    font-size: 120%;
}

.container-weather {
    background: #000000d0;
    padding: 2em;
    border-radius: 30px;
    width: 100%;
    max-width: 420px;
    margin: 1em;
    color: white;
}

.search-icon {
    width: 42px;
    height: 42px;
    background: rgb(94, 87, 87);
    color:white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

input.search-bar, select {
    border: none;
    outline: none;
    padding: 0.3em 0.5em;
    border-radius: 18px;
    background-color: rgb(94, 87, 87);
    color: white;
    font-family: inherit;
    font-size: 105%;
    width: calc(100% - 100px);
    -ms-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:content-box;
    
}
#default{
    color: grey;
}
button {
    margin: 0.5em;
    border-radius: 50%;
    border: none;
    outline: none;
}

button:hover {
    background: rgb(121, 116, 116);
}

.search {
    display: flex;
    align-items: center;
    justify-content: center;
}

h1.temp {
    margin: 0;
}

.settings-icon {
    outline: none;
    border: none;
    background: inherit;
    justify-content: right;
    align-items: baseline;
    margin-left: 93%;
    margin-bottom: -18px;
    color: white;
    cursor: pointer;
    width: auto;
    height: auto;
}

*
{
    user-select: none;
    -webkit-tap-highlight-color:transparent;
}

*:focus
{
    outline: none;
}

#app-cover
{
    display: table;
    width: 600px;
    margin: 80px auto;
    counter-reset: button-counter;
}

.row
{
    display: table-row;
}

.button-cover:before
{
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #1be9e9;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover, .knobs, .layer
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.button {
    position: relative;
    top: 50%;
    width: 74px;
    height: 36px;
    overflow: hidden;
    margin-left: 85%;
}

.button.r, .button.r .layer
{
    border-radius: 100px;
}

.button.b2
{
    border-radius: 2px;
}

.checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs
{
    z-index: 2;
}

.layer
{
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

/* Button 1 */
#button-1 .knobs:before
{
    content: 'F';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
    background-color: #7acdf4;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
}

#button-1 .checkbox:checked + .knobs:before
{
    content: 'C';
    left: 42px;
    background-color: #f0aba6;
}

#button-1 .checkbox:checked ~ .layer
{
    background-color: #f9f2f2;
}

#button-1 .knobs, #button-1 .knobs:before, #button-1 .layer
{
    transition: 0.3s ease all;
}

#top-Container {
    margin-bottom: .5em;
}

#middle-Container{
    /*
    display: flex;
    justify-content: center;*/
    margin-left: 8em;
    margin-bottom: .5em;
}
#bottom-Container select{
    width: cal(150%-150px);
}

.icon {
    margin-left: 5em;
    margin-bottom: 1em;
}