@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
h1 {
    margin: 5px 0px;
    font-size: 25px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0px;
}
.calc {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.col{

}
.input-group {
    width: 100%;
    display: flex;
}
.input-group-prepend, .input-group-append{
    display: flex;
    background-color: #d4b0ff;
    /*background-color: #faeeff;*/
    min-width: 30px;
    height: 30px;
    padding: 0px 10px;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
    border: 1px solid #aa7bee;
    color: #1A0034;
}

.input-group-prepend{
    border-radius: 5px 0px 0px 5px;
}
.input-group-append{
    border-radius: 0px 5px 5px 0px;
}



.form-control {
    flex-grow: 1;
    border-radius: 3px;
    border: 1px solid #aa7bee;
    outline: none;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    padding-left: 7px;
    width: 100%;
    min-height: 30px;
}

.input-group>.custom-select:not(:first-child), .input-group>.form-control:not(:first-child) {
    border-radius: 0px 5px 5px 0px;
    border-left: 0px;
}

.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child) {
    border-radius: 5px 0px 0px 5px;
    border-right: 0px;
}

.mt-1 {
    display: block;
}


.calculatorbox label{
    margin-top: 15px;
}

.btn-success{
    width: 100%;
    background-color: #d4b0ff;
    border: 1px solid #aa7bee;
    font-family: 'Poppins', sans-serif;
    padding: 8px;
    margin-top: 15px;
    font-weight: 500;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover{
    background-color: #aa7bee;
    color: white;
}

.form-control{
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
}

select.form-control:not([multiple]) {
    background-repeat: no-repeat;
    background-position: 98% 45%;
    background-size: 1em auto;
    background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"> <path d="M7.5 12.9L2.6 8 4 6.6l3.5 3.5L11 6.6 12.4 8z"/> </svg>');
}

.calculatorbox {
    background-color: #380a6c;
    color: #ffffff;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    border-radius: 10px;
    /*width: 400px;*/
    box-sizing: border-box;
    margin-bottom: 20px;
}
.resultbox {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #d4b0ff;
    box-shadow: 4px 4px 8px 0px rgba(56, 10, 108, 0.2);
    /*margin-left: 20px;*/
    border-radius: 10px;
    padding: 20px;
    width: 800px;
    height: 100%;
    box-sizing: border-box;
    color: #380a6c;
    font-size: 16px;
}
.error-msg{
    color: red;
    font-size: 12px;
    font-style: italic;
    height: 15px;
}
.fakechart {
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    font-weight: 400;
    color: #783cb7;
}
.chart-color{
    width: 100%;
    height: 10px;
    border: 1px solid #d4b0ff;
}
.result-block{
    width: 100%;
}
.result-block-label{
    font-size: 15px;
    text-align: center;
}
.result-block-label-total{
    font-size: 20px;
    font-weight: 600;
}

.result-block-val{
    width: 100%;
    text-align: center;
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

.result-block-val-total{
    font-size: 35px;
    font-weight: 600;
}

.marauto{
    width: 300px;
    margin-bottom: 20px;
}

.calc-h2{
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
}

.calc-h3{
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    height: 25px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-right: -15px;*/
    /*margin-left: -15px;*/
    width: 100%;
    padding: 5px 0px;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.fontbold {
    font-weight: bold;
}
.pb-1, .py-1 {
    padding-bottom: 2px!important;
    padding-top: 2px!important;
}

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.bglightgray {
    background: #e2e2e2;
}
.text-center {
    text-align: center!important;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    min-height: 25px;
}
.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col:first-child{
    font-size: 13px;
    min-width: 180px;
}

.comparison.hidemobile {
    width: 100%;
}