/* @font-face {
    font-family: "visuelt pro";
    src: url("font/VisueltPro-Regular.ttf") format("truetype");
  }
  
  * {
    font-family: "visuelt pro";
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } */

.calculator_container {
    /* margin: 90px 60px; */
    display: flex;
}

.calculator_left {
    flex: 1;
}

.calculator_right {
    flex: 1;
}

.leftTitle h2 {
    font-size: 42px;
    color: #000;
    line-height: 150%;
}

.leftTitle p {
    font-size: 20px;
    color: #000;
    line-height: 150%;
    margin-top: 15px;
}

.leftTitle p a {
    color: #000;
    font-weight: bolder;
    text-decoration: none;
    border-bottom: 2px solid #000;
}

.leftTitle p span {
    color: #000;
    font-weight: bolder;
    margin-left: 5px;
}

.moduleA {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    background: #F7785D0D;
    padding: 2rem;
    margin-bottom: 3rem;
}

.moduleB {
    background: #0858550D;
    padding: 2rem;
}

.moduleAtitle h3 {
    font-size: 25px;
    line-height: 55px;
}

.moduleAtitle p {
    font-size: 20px;
}

.moduleAValue {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.moduleAValue input,
.moduleAValue select {
    width: 100%;
    height: 50px;
    border: 1px solid #747B86;
    padding: 0 10px;
}

.moduleAValue input,
.moduleAValue select:focus {
    outline: none;
}

.moduleAValueArea {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.moduleAValueArea select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url('./assets/right-arrow.png');
    background-repeat: no-repeat, repeat;
    background-position: right 1.5em top 50%, 0 0;
    background-size: .65em auto, 100%;
    z-index: 1;
}

.calculator_container label {
    width: 100%;
    margin-bottom: 1rem;
}

.resultArea {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resultAreaContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.resultArea span {
    width: 50%;
    height: 50px;
    border: 1px solid #E5E5E6;
    border-radius: 60px;
    padding: 0 10px;
    background-color: #E5E5E6;
    display: flex;
    align-items: center;
}

.moduleAValueArea label[for="price"]::after {
    content: "€";
    margin-left: 5px;
    width: 45px;
    height: 47px;
    background-color: #f2f2f3;
    border-radius: 0;
    bottom: 2px;
    right: 3px;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resultArea .resultAreaContent span::after {
    content: "€";
    width: 50px;
    height: 50px;
    background-color: #f2f2f3;
    border-radius: 50%;
    top: 0;
    right: 0;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator_container input {
    padding-left: 20px !important;
    line-height: 100% !important;
    padding-bottom: 2px !important;
}

.moduleAValueArea select {
    padding-left: 20px !important;
}

.moduleLineSeparator {
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #e5e5e5;
    margin: 60px 0px;
}

.calculator_container .resultarea_input {
    background: #e5e5e6;
    border-color: #e5e5e6 !important;
}

.calculator_container label.bold {
    font-weight: 900;
}

.calculator_container label.percent::after {
    content: "%";
}

.calculate_button button.btn.btn-primary {
    width: 100%;
    border: none;
    border-radius: 100px;
    padding: 20px 0px;
    color: white;
    background: #f7785d;
}

.calculator_container label.dropdown:after {
    content: "›";
    z-index: 99999;
    position: absolute;
    color: #555555;
    font-size: 28px;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
    right: 23px;
    transform: rotate(90deg) scaleY(0.7);
}

table.calculator_table {
    width: 100%;
    table-layout: fixed;
    margin-top: 70px !important;
    display: table;
    border: none !important;
}

table.calculator_table th {
    text-align: center !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
}

table.calculator_table tr:nth-child(2n+1) {
    background: none !important;
    /* border: none !important; */
}

td.calculator_table_cell {
    text-align: right;
    border: none !important;
    padding-top: 15px!important;
    padding-bottom: 15px !important;
}

table.calculator_table tr:nth-of-type(n+1) {
    background: rgb(243 244 242);
}

td.calculator_table_cell.calculator_table_cell_title {
    text-align: left;
    padding-left: 10px !important;
    font-weight: 700;
}

table.calculator_table th {
    font-size: 14px;
    padding: 20px 0px !important;
}