@import url('https://fonts.googleapis.com/css2?family=Roboto&amp;display=swap');
body{
  background-color: #fff;
  display: flex;
  font-family: 'Roboto', sans-serif;
  padding: 20px 15px;
}
i{
    font-size: 14px;
}
.head-title{
    margin-top: 100px;
    font-size: 20px;
}

/* FORMS  */
.form-section{
    margin-top: 40px;
}
label{
    font-size: 14px;
    font-weight: bold;
}
.desc{
    font-style: italic;
    font-size:12px;
    margin-top: 5px;
}
.form-tab-long{
    margin-bottom: 25px;
}
.form-tab-short{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    margin-bottom: 25px;
}
.form-tab-short-inner{
    width: 50%;
}
.input-field{
    margin-top: 5px;
    padding: 10px 5px;
    border: 1px solid #aaa;
    border-radius: 0px;
    outline: none;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    cursor: pointer;
}
.form-tab-short-inner-c-c{
    width: 40%;
}
.form-tab-short-inner-c-n{
    width: 60%;
}
.section{
    margin: 50px 0px;
}
.section_title{
    font-size: 22px;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    margin-bottom: 50px;
}
button{
    cursor: pointer;
}
.button-tab{
    margin-top: 80px;
    padding-top: 20px;
    border-top: 1px solid #000;
}
.button_previous{
    background-color: #aaa;
    width: 100%;
    color: black;
    padding: 15px 0px;
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: bold;
}
.button_next{
    background-color: #000;
    width: 100%;
    color: #fff;
    padding: 15px 0px;
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: bold;
}
.button_apply{
    background-color: #000;
    width: 100%;
    color: #fff;
    padding: 15px 0px;
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: bold;
}
.button_apply_load{
    background-color: #000;
    width: 100%;
    color: #fff;
    padding: 15px 0px;
    border: 0px;
    border-radius: 0px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
}
























/* BOTTON LOADER  */
    .botton-loader {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 18px;
    }
    .botton-loader div {
        display: inline-block;
        position: absolute;
        left: 8px;
        width: 16px;
        background: #fff;
        animation: botton-loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }
    .botton-loader div:nth-child(1) {
        left: 8px;
        animation-delay: -0.24s;
    }
    .botton-loader div:nth-child(2) {
        left: 32px;
        animation-delay: -0.12s;
    }
    .botton-loader div:nth-child(3) {
        left: 56px;
        animation-delay: 0;
    }
    @keyframes botton-loader {
        0% {
        top: 2px;
        height: 16px;
        }
        50%, 100% {
        top: 5px;
        height: 8px;
        }
    }

/* BOTTON LOADER  */