@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(18, 18, 29);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container_all{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 70%;
}
.container{
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    border: 1px solid #fff;
    border-radius: 12px;
}

.flag{
    font-size: 25px;
    margin-right: 1%;
    cursor: pointer;
    transition: filter 0.3s;
}
.flag:hover{
    filter: brightness(1.3)
}

.icons_language{
    width: 79%;
    margin-bottom: 1%;
}

.container_texts{
    width: 35%;
    height: 80%;
    /*background-color: #00ffff;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: #fff;
    text-align: center;
    font-family: "Open Sans", sans-serif;
    line-height: 1.2;
}

.min_text{
    font-size: 25px;
    color: #ffffff93;
    font-weight: 400;
}

.max_text{
    font-size: 55px;
    font-weight: 500;
}

.container_numbers{
    width: 40%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background-color: #003b3b;*/
}

.line{
    width: 0.1%;
    height: 80%;
    background-color: #fff;
}

.inputs{
    width: 100%;
    height: 60%;
    /*background-color: azure;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.input{
    width: 90%;
    height: 30%;
    border: 0.1px solid #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;   
}

.input input{
    width: 60%;
    background-color: transparent;
    border: none;
    outline: none;
    margin: 0 5% 0 5%;
    font-size: 25px;
    color: #ffffffd0;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


input[type=number] {
  -moz-appearance: textfield;
}

.line_input{
    width: 0.1%;
    height: 60%;
    background-color: #fff;
}

.money_span{
    color: #ffffffd0;
    font-size: 25px;
    margin: 0 5% 0 5%;
    width: 20%;
    text-align: center;
}


@media(max-width: 768px){
    .container_all{
        height: 80%;
    }

    .container{
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
    }

    .container_texts{
        width: 80%;
        height: 45%;
        align-items: center;
        text-align: center;
    }

    .container_numbers{
        width: 80%;
        height: 35%;
    }

    .min_text{
        font-size: 20px;
    }

    .max_text{
        font-size: 41px;
    }

    .line{
        width: 80%;
        height: 0.1%;
    }

    .inputs{
        height: 75%;
    }

    .input input{
        font-size: 20px;
    }

    .money_span{
        font-size: 17px;
        margin: 0 5% 0 5%;
        width: 20%;
        text-align: center;
    }

    .icons_language{
        width: 95%;
        margin-bottom: 3%;
    }
}