.school-calculator {

    background: #ffffff;
    box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.20);
    -webkit-box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.20);
}

.school-calculator .form-label {
   width: 100%;
  margin-bottom: .25rem;
  font-weight: bold;
  font-size: 18px;
 /* min-height: 70px;*/
  line-height: 26px;
}

.school-calculator .form-control {
    background: #bdc3c8;
    border-radius: 0px;
    border: 0px;
    padding: 10px;
	min-height: 44px;
}
.school-calculator .form-control:focus {
	background: #bdc3c8 !important;}


.school-calculator span.input-group-text {
    background: #8b949f;
    border-radius: 0px;
    border: 0px;
    padding: 10px;
    color: #ffffff;
}

.school-calculator table th {
    background: #8b949f;
    color: #ffffff;
}

.school-calculator .light-gray {
    background: #bdc3c8;
    color: #ffffff;
    padding: 10px;
}

.school-calculator .dark-gray {
    background: #8b949f;
    color: #ffffff;
    padding: 10px;
}

.school-calculator .blue-heading {
    background: #002e6d;
    color: #ffffff;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
}

.school-calculator .sky-box {
    background: #14addd;
    padding: 10px;
    color: #ffffff;
    margin-bottom: 2px;
}
.school-calculator .yellow-box {
    background: #fdc751;
    padding: 10px;
    color: #ffffff;
    margin-bottom: 2px;
	font-weight: bold;
  font-size: 18px;
}
.school-calculator .btn-quote {
    background: #fdc751;
    font-weight: 600;
    border: solid 1px #fdc751;
    border-radius: 0px;
}
.school-calculator .btn-quote:hover {
	background: #fdc751; border: solid 1px #fdc751;}
.school-calculator .sky-box span.amount {
    float: right;
}

.school-calculator .sky-box span.skd {
    background: #1094c7;
    padding: 9px 40px;
    margin-top: -9px;
    margin-right: -9px;
    margin-bottom: 0px;
}

.school-calculator .pannel-head .form-label{min-height: 53px;}

/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
    /*========== Colors ==========*/
    /*Color mode HSL(hue, saturation, lightness)*/
    --gradient-color: linear-gradient(95deg,
            hsl(286, 97%, 57%) -7%,
            hsl(256, 84%, 48%) 112%);
    --first-color-light: hsla(92, 81%, 39%, 1);
    --first-color-lighten: hsl(256, 58%, 94%);
    --white-color: hsl(0, 0%, 100%);
    --body-color: hsl(256, 100%, 98%);

    /*========== Font and typography ==========*/
    /*.5rem = 8px | 1rem = 16px ...*/
    --body-font: "Montserrat", sans-serif;
    --h1-font-size: 1rem;
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: var(--body-font);
    background-color: var(--body-color);
}

/*=============== RANGE SLIDER ===============*/
.container {}

/* Custom input range */
/* .range {
    height: 50px;
    width: 100%;

    background-color: var(--first-color-light);
    border-radius: 4rem;
    box-shadow: 0 6px 16px hsla(256, 72%, 24%, .15);
    /*padding-inline: 2.5rem;*/
/* display: grid;
} */

.range__content {
    position: relative;
    width: 100%;
    display: grid;
    place-items: center;
}

.range__slider {
    width: 100%;
    height: 50px;
    background-color: #8b949f;
    border-radius: 4rem;
    box-shadow: 0 4px 12px hsla(256, 72%, 24%, .2);
    overflow: hidden;
}

.range__slider-line {
    width: 100%;
    height: 100%;
    background: rgb(95, 181, 19);
    background: linear-gradient(90deg, rgba(95, 181, 19, 1) 0%, rgba(69, 139, 7, 1) 100%);
    width: 0;
}

.range__thumb {
    width: 32px;
    height: 32px;
    background-color: var(--first-color-lighten);
    border-radius: 50%;
    box-shadow: 0 0 12px hsla(256, 72%, 24%, .2);
    position: absolute;
}

/* Value input range */
.range__value {
    width: 44px;
    height: 44px;
    background: #14addd;
    position: absolute;
    top: -54px;
    left: -10px;
    border-radius: 2rem 2rem 2rem .25rem;
    transform: rotate(-45deg);
    display: grid;
    place-items: center;
}

.range__value-number {
    transform: rotate(45deg);
    color: var(--white-color);
    font-size: var(--h1-font-size);
}

/* Default input range */
.range__input {
    appearance: none;
    width: 100%;
    height: 16px;
    position: absolute;
    opacity: 0;
}

.range__input::-webkit-slider-thumb {
    appearance: none;
    width: 32px;
    height: 32px;
}

.range__input::-webkit-slider-thumb:hover {
    cursor: pointer;
}

/*=============== RANGE SLIDER ===============*/
/* .container {
    height: 100vh;
    margin-inline: 1.5rem;
    display: grid;
    place-items: center;
} */

/* // Custom input range */
/* .range {
    height: 64px;
    width: 100%;
    max-width: 332px;
    background-color: var(--first-color-light);
    border-radius: 4rem;
    box-shadow: 0 6px 16px hsla(256, 72%, 24%, .15);
    padding-inline: 2.5rem;
    display: grid;

    &__content {
        position: relative;
        width: 100%;
        display: grid;
        place-items: center;
    }

    &__slider {
        width: 100%;
        height: 16px;
        background-color: var(--first-color-lighten);
        border-radius: 4rem;
        box-shadow: 0 4px 12px hsla(256, 72%, 24%, .2);
        overflow: hidden;

        &-line {
            width: 100%;
            height: 100%;
            background: var(--gradient-color);
            width: 0;
        }
    }

    &__thumb {
        width: 32px;
        height: 32px;
        background-color: var(--first-color-lighten);
        border-radius: 50%;
        box-shadow: 0 0 12px hsla(256, 72%, 24%, .2);
        position: absolute;
    }

    /* // Value input range */
&__value {
    width: 64px;
    height: 64px;
    background: var(--gradient-color);
    position: absolute;
    top: -82px;
    left: -16px;
    border-radius: 2rem 2rem 2rem .25rem;
    transform: rotate(-45deg);
    display: grid;
    place-items: center;

    &-number {
        transform: rotate(45deg);
        color: var(--white-color);
        font-size: var(--h1-font-size);
    }
}

/* // Default input range */
&__input {
    appearance: none;
    width: 100%;
    height: 16px;
    position: absolute;
    opacity: 0;

    &::-webkit-slider-thumb {
        appearance: none;
        width: 32px;
        height: 32px;

        &:hover {
            cursor: pointer;
        }
    }
}

span#range-number::after {
    content: "%";
}

td#saving_per_month::after {
    content: " kWh";
}

td#saving_per_year::after {
    content: " kWh";
}

td#monthly_grid_exported_to_grid::before {
    content: "€";
}

td#yealy_grid_exported_to_grid::before {
    content: "€";
}

label.lable {
    width: 13%;
}

.form_filed {
    padding: 8px 10px;
}

.form_filed input[type="text"] {
    width: 86%;
    border: 1px solid;
}

.form_filed.center {
    text-align: center;
}

td#generation_monthly::after {
    content: " kWh";
}

td#generation_annualy::after {
    content: " kWh";
}

/*input#musage {*/
/*    pointer-events: none;*/
/*}*/

/*input#avg {*/
/*    pointer-events: none;*/
/*}*/

/*input#tariff {*/
/*    pointer-events: none;*/
/*}*/

input#power-generation {
    pointer-events: none;
}

span#saving_per_month {
    padding: 0;
}

span#saving_per_month::after {
    content: " kWh";
}

span#monthly_grid_exported_to_grid_sec {
    padding: 0;
}

span#monthly_grid_exported_to_grid_sec::before {
    content: " €";
}

span#saving_per_year {
    padding: 0;
}

span#saving_per_year::before {
    content: " €";
}

span#yealy_grid_exported_to_grid_sec {
    padding: 0;
}

span#yealy_grid_exported_to_grid_sec::after {
    content: " kWh";
}

.ato.btn {
    border: 1px solid;
    margin: 5px 0px;
    padding: 5px;
    background: #fdc751;
    color: white;
	border-radius: 0px;
	width:100%;
}
.ato.btn:hover {
    border: 1px solid;
    padding: 5px;
    background: #14addd;
    color: white;
    cursor: pointer;
	border-radius: 0px;
}

span#Seai_Grant_PKwH::before {
    content: "€";
}

span#Total_Upfront_Payment_CoD_Client_Keeps_Grant::before {
    content: "€";
}

span#Total_Cost_Before_Grant_Discount::before {
    content: "€";
}

span#Monthly_Payments_33::before {
    content: "€";
}

span#Less_Grant_Received::before {
    content: "€";
}

span#total_system_cost_monthly::before {
    content: "€";
}

span#Total_System_Cost_sigle::before {
    content: "€";
}
span#Grant_Available::before {
    content: "€";
}
span#less_payment_discount::before {
    content: "€";
}
/* Styles for the modal container */
.modal {
    display: none;
    /* Hide the modal by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
}

/* Styles for the modal content */
.modal-content {
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
}

.modal-content {
    width: 36% !important;
}

/* Styles for the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.modal-content p {
    font-size: 16px;
    display: flex;
    align-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 0;
    font-weight: 500;
}
i.icon-green{color:#478e08; margin-right: 10px;}
i.icon-gray{color: #8b949f; margin-right: 10px;}