
/*/////////////////////////////////////////////*/


.weather-money-container{
    /* margin: 20px 5.68%; */
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 12px;
}


.weather-container, .exchange-container {
    padding: 20px;
    box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.weather-container {
    background-color: var(--main-color);
    color: white;
    width: 40%;
    text-align: center;
}

.weather-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 15px;
}

.weather-exchange-title,
.weather-exchange-day,
.weather-degree,
.weather-details{
    width: 48%;
}

.weather-exchange-title {
    text-align: right;
    font-size: 22px;
}

.weather-exchange-day {
    text-align: left;
    font-size: 13px;
}

.weather-data {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 8%;
    font-size: 13px;
}

.weather-details {
    text-align: right;
    width: 40%;
    margin-right: 10% ;
}
.weather-degree {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.weather-icon-container {
    display: flex;
    align-items: center;
}

.weather-main-icon{
    width: 85px;
    height: auto;
}
.degree {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.degree-num {
    font-size: 35px;
    height: 60px;
}

.degree-cond {
    font-size: 12px;
}

.weather-exchange-days-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 30px 2% 20px;
}

.weather-exchange-days-info {
    width: calc(100% / 6);
    min-width: 55px;
    background-color: white;
    color: var(--main-color);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 105px;
    font-size: 12px;
    gap: 5px;
}

.days-icon-container{
    display: flex;
    align-items: center;
}

.currency-icon {
    width: 70px;
}

.exchange-container {
    width: 40%;
    /* background-color: #fbfbfb; */
    /* color: var(--main-color); */
    color: #5e5e5e;
    padding: 15px 20px 20px;
    /* border: 2px solid var(--main-color); */
    border: 2px solid #5e5e5e;
}

.exchange-heading-container {
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin: 10px;
}

.exchange-title {
    text-align: right;
    font-size: 22px;
    padding-right: 10px;
}

.exchange-day {
    padding-right: 40px;
    font-size: 13px;
}

.buy-sell-container {
    display: flex;
    justify-content: center;
    margin: 40px 10px;
    gap: 40px;
    /* flex-wrap: wrap; */
}

.currency-heading {
    font-size: 18px;
}

@media screen and (max-width: 1069px) {
    .weather-container,
    .exchange-container{
        width: calc(85% / 2 - 6px);

    }

    .weather-data {
        flex-direction: column;
        gap: 15px;
    }

    .weather-details {
        text-align: right;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        margin-right: 0;
        gap: 5px 20px
    }


    .weather-exchange-days-container {
        gap: 4px;
        margin: 10px 2% 15px
    }
    .weather-exchange-days-info {
        min-width: 46px;
        height: 81px;
        font-size: 10px;
    }

    .buy-sell-container {
        gap: 8%;
        margin: 64px 10px
    }

    .buy-sell {
        font-size: 13px;
    }

    .currency-heading {
        font-size: 16px;
    }
}

@media  screen and (max-width: 768px) {
    .weather-money-container {
        flex-direction: column;
        gap: 15px;
        align-items: center;

    }
    .weather-container {
        width: 80%;
    }

    .exchange-container {
        width: 80%;
    }

    .weather-exchange-days-container{
        gap: 1.8%;
    }

    .weather-exchange-days-info {
        min-width: 39px;
        height: 85px;
        font-size: 10px;
    }

    .buy-sell-container {
        gap: 15%;
        margin: 25px 10px 35px;
    }
    .currency-heading {
        font-size: 17px;
    }

    .buy-sell {
        font-size: 12px;
    }

}


@media screen and (max-width: 450px) {

    .weather-container{
        width: 90%;    }

    .exchange-container {
        width: 90%;    }

    .weather-exchange-days-container {
        gap: 1.5%;
    }

    .weather-exchange-days-info {
        min-width: 41px;
        height: 85px;
        font-size: 10px;
    }

    .buy-sell-container {
        gap: 10%;
    }
    .currency-heading {
        font-size: 14px;
    }

    .buy-sell {
        font-size: 12px;
    }
    .exchange-day {
        font-size: 10px;
    }
}