*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-color: rgba(235, 231, 255,0);
    color: aliceblue;
    text-shadow: 0px 0px 3px white;
   
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/picture.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
   
}


p,li,button{
    line-height: 1;
    font-weight: 500;
    font-size: 19px;
}



html{
    font-family: 'Montserrat', sans-serif;
}

.test1{
    display: none;
}


ul{
    list-style: none;
}

button:active, button:focus {
    outline: none;
  }
  button::-moz-focus-inner {
    border: 0;
}
button{
    border:none;
    background: none;
    cursor: pointer;
    margin: 0;
    padding: 0;
}


.container{
    width: 600px;
    height: 435px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 4%;
    overflow: hidden;
    backdrop-filter: blur(5px);
   box-shadow: 0px 0px 100px rgba(255, 0, 128, 0.7);
   border: 1px solid rgba(255, 0, 128, 0.5);
}

.header-container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 10%;
    border-bottom: 1px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
}



.header__input{
    border: none;
    outline: none;
    width: 60%;
    color: rgba(206, 206, 206, 0.63);
    font-weight: 500;
    padding: 6px 6px 6px 24px;
    line-height: 1;
    cursor: pointer;
}

.header__search{
    padding: 10px;
    padding-right: 18px;
}

.search-icon path{
    opacity: .6;
    fill: white;
    -webkit-filter: drop-shadow(0px 0px 1px white);
    filter: drop-shadow(0px 0px 1px white);
}

.main-container{

    display: flex;
    width: 100%;
    height: 90%;
}

.left,
.right{
    width: 50%;
    height: 100%;
}

.left{
    border-right: 1px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
}



.main-info__top-container{
    outline: none;
    height: 50%;
}

.main-info{
    height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-info__absolute-container{
    position: absolute;
    top: 35%;
    left: 30%;
}

.weather-icon-now{
    width: 130px;
    height: 130px;
}




.main-info__bottom-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 13px 10px 24px;
}

.main-info__add-favorite-town{
    width: 40px;
    height: 40px;
    transform: translateY(1px);
}

.main-info__add-favorite-town svg{
    fill: rgb(224, 224, 224);
    transition: fill 1s ease !important;
    opacity: 1;
}


.main-info__add-favorite-town svg path{
    transition: stroke 1s ease !important;
    stroke: rgb(255, 255, 255);
}





.main-info__degree{
    font-weight: 600;
    font-size: 60px;
    padding: 20px 23px;
}

.left__bottom-side-btn{
    display: flex;
    height: 10%;
    width: 100%;
}


.btn-nav{
    padding: 0;
    margin: 0;
    width: 33.3333%;
    font-weight: 400;
    font-size: 15px;
    border-top: 1px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
}

.btn-nav:not(:last-child){
    border-right: 1px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
}

.btn-nav-active{
    background-color: black;
    color: white;
}


.right__top-text{
    display: flex;
    align-items: flex-end;
    height: 68px;
    border-bottom: 1px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
}

.added-locations{
    padding: 7px 18px;
}

.right__bottom-town-list{
    padding: 35px 18px;
    height: 305px;
    overflow-y: auto;
}

.right__item{
    display: flex;
    margin-bottom: 15px;
    justify-content: space-between;
}

/* .rigth__item:not(:last-child){
    margin-bottom: 15px;
} */



.delete-button{
    background: url(../img/plus.svg) no-repeat;
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    
}









#first-container{
    display: none;
   
}

#second-container{
    padding: 40px 15px 74px 15px;
    display: none;
}

#third-container{
    padding: 30px 15px 0px 15px;
    display: none;
    overflow-y: auto;
}

.display-show{
    display:flex !important;
}

.main-info__town-name{
    font-weight: 600;
    font-size: 25px;
}

.main-info__top-container_third{
    height: 30px;
    padding-bottom: 37px;
}

.main-info__list-details-item{
    font-size: 19px;
}

.main-info__list-details-item:not(:last-child){
    margin-bottom: 17px;
}

.forecast-container{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main-info__forecast-item{
    display: flex;
    padding: 6px 8px;
    border:1px solid rgba(255, 0, 128, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 0, 128, 0.5);
    height: 120px;
}

.main-info__forecast-item:not(:last-child){
    margin-bottom: 9px;
}

.forecast-top-container{
    display: flex;
    justify-content: space-between;
}
.forecast-bottom-container{
    display: flex;
    justify-content: space-between;
    padding-bottom: 3px;
}
.forecast-bottom-left-container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 46px;
}

.forecast-bottom-right-container{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.forecast-weather-description{
    font-size: 15px;
}


.forecast-weather-image{
    width: 31px;
    height: 31px;
    margin-right: 7px;
}

.weather-icon-forecast{
    width: 40px;
    height: 40px;
}

.weather-icon {
    -webkit-filter: drop-shadow(0px 0px 3px white);
    filter: drop-shadow(0px 0px 3px white);
}

.svg-add-button{
    -webkit-filter: drop-shadow(0px 0px 3px white);
    filter: drop-shadow(0px 0px 3px white);
}

