@media screen and (max-width: 768px) {
    div[name*="Line"] {
        font-size: 1rem;
        height: clamp(2vh, 3.5vh, 4vh);
        width: clamp(80vw, 100%, 98vw);
        overflow: hidden;
    }
}
@media screen and (max-width: 480px) {
    div[name*="Line"] {
        font-size: 1rem;
        height: clamp(2vh, 3.5vh, 4vh);
        width: clamp(80vw, 100%, 98vw);
        overflow: hidden;
    }
}
label {
    display: flex;
    height: clamp(2vh, 100%, 100%);
    width: clamp(10%, 15vw, 40%);
    justify-content: flex-end;
    text-wrap-mode: nowrap;
    font-weight: bold;
}
@media screen and (max-width: 768px) {
    label {
        font-size: clamp(.75rem, .9em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(25%, 45%, 60%);
    }
}
@media screen and (max-width: 480px) {
    label {
        font-size: clamp(.75rem, .85em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(25%, 45%, 60%);
    }
}
input[type="number"] {
    height: clamp(2vh, 100%, 100%);
    width: clamp(10%, 11vw, 40%);
    border-radius: 4px;
    border-style: hidden;
    padding: 1%;
    background-color: white;
    text-align: center;
}
@media screen and (max-width: 768px) {
    input[type="number"] {
        font-size: clamp(.75rem, .9em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(15%, 23%, 35%);
    }
}
@media screen and (max-width: 480px) {
    input[type="number"] {
        font-size: clamp(.75rem, .85em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(15%, 23%, 35%);
    }
}
input[type="text"] {
    height: clamp(2vh, 100%, 100%);
    width: clamp(10%, 11vw, 40%);
    border-radius: 4px;
    border-style: hidden;
    padding: 1%;
    background-color: white;
    text-align: center;
}
@media screen and (max-width: 768px) {
    input[type="text"] {
        font-size: clamp(.75rem, .9em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(20%, 25%, 30%);
    }
}
@media screen and (max-width: 480px) {
    input[type="text"] {
        font-size: clamp(.75rem, .85em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(20%, 25%, 40%);
    }
}
input[type="checkbox"] {
    display: flex;
    height: clamp(2vh, 100%, 100%);
    width: clamp(10%, 4vw, 40%);
    border-radius: 3px;
    border-style: hidden;
    padding: 1%;
    text-wrap-mode: nowrap;
}
@media screen and (max-width: 768px) {
    input[type="checkbox"] {
        font-size: clamp(.75rem, .9em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(18%, 18%, 25%);
    }
}
@media screen and (max-width: 480px) {
    input[type="checkbox"] {
        font-size: clamp(.75rem, .85em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(18%, 18%, 25%);
    }
}
select {
    width: clamp(5%, 5%, 15%);
    width: auto;
    padding: 2px;
    border-radius: 3px;
    border-style: hidden;
    font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
    select {
        font-size: clamp(.75rem, .9em, 1rem);
    }
}
@media screen and (max-width: 480px) {
    select {
        font-size: clamp(.75rem, .85em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(15%, 20%, 40%);
    }
}
output {
    height: clamp(2vh, 100%, 100%);
    width: clamp(10%, 11vw, 40%);
    padding: 2px;
    border-radius: 3px;
    background-color: white;
    border-radius: 3px;
    border-style: hidden;
    text-align: center;
}
@media screen and (max-width: 768px) {
    output {
        font-size: clamp(.75rem, .9em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(20%, 24%, 35%);
    }
}
@media screen and (max-width: 480px) {
    output {
        font-size: clamp(.75rem, .85em, 1rem);
        height: clamp(2vh, 100%, 100%);
        width: clamp(20%, 24%, 35%);
    }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
select::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none;
    background-color: white; /* or any color you want */
    background-image: none !important;
}

@media screen and (max-width: 768px) {
    ul.footer_menu li {
        font-size: .6rem;
    }
}

@media screen and (max-width: 480px) {
    ul.footer_menu li {
        font-size: .6rem;
    }
}


@media screen and (max-width: 480px) {
    .footer_menu {
        display: block;
    }
}