body {
    margin: 0;
}

body main {
    min-height: 100vh;
    width: 100%;
    max-width: 1920px;
    background-color: #000413;
    font-family: 'gothambook', sans-serif;
    color: #FFFFFF;
    background-image: url("/assets/main/images/body_bg.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}

h1 {
    font-weight: 600;
    font-family: 'gothambold', sans-serif;
    font-size: 36px;
    margin-bottom: 30px;
}

h2 {
    font-size: 27px;
    font-weight: 400;
    font-family: 'gothamlight', sans-serif;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: 'gothambold', sans-serif;
    margin-bottom: 20px;
}

h4 {
    font-size: 24px;
    font-weight: 400;
    font-family: 'gothamlight', sans-serif;
    margin-bottom: 0;
}

h5 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5em;
    font-family: 'gothamlight', sans-serif;
}

#carouselSlidesOnly {
    position: relative;
}

#carouselSlidesOnly .carousel-item {
    min-height: 100vh;
    width: 100%;
    max-width: 1920px;
    background-repeat: no-repeat;
    background-position: top right;
    background-size: cover;
}

.carousel-logo {
    position: absolute;
    top: 8%;
    right: 10%;
    left: 10%;
    z-index: 9;
}

.carousel-logo img {
    width: 350px;
}

.carousel-caption {
    font-size: 60px;
    text-transform: uppercase;
    text-align: left;
    font-weight: 600;
    line-height: 1.3em;
    right: 10%;
    left: 10%;
    bottom: 8%;

}

.language-selector-container {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: calc(8% + 211px);
    z-index: 9;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    overflow: hidden;
}

.language-selector {
    width: 110px;
    margin-right: 15px;
}

.language-selector a {
    display: block;
    padding: 5px;
    border: 1px solid #6e4a5b;
    border-radius: 100%;
}

.language-selector a:hover {
    border-color: #FFFFFF;
}

.logo-pf {
    position: fixed;
    top: 54px;
    left: 71px;
    width: 91px;
}

.logo-tuv {
    position: fixed;
    top: 54px;
    right: 71px;
    width: 91px;
}

.content {
    padding: 100px 0;
}

input::placeholder {
    font-family: 'gothamlight';
    opacity: 0.5 !important;
    color: #FFFFFF !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-family: 'gothamlight';
}

input:focus::-webkit-input-placeholder {
    color: #FFFFFF;
}

.form-control {
    background: rgba(1,33,63,.5);
    color: #FFFFFF !important;
    border-color: #FFFFFF;
    font-size: 26px;
    padding: 15px;
}

.cabinet-input {
    font-size: 21px;
}

.form-control:focus {
    border-color: #FFFFFF;
    box-shadow: none;
}

.form-control:focus {
    background: rgba(1,33,63,.5);

}
.select2-container .select2-selection--single {
    height: 71px;
    background: rgba(1,33,63,.5);
    border: 1px solid #FFFFFF;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    background: rgba(1,33,63,.5);
    color: #FFFFFF !important;
    border-color: #FFFFFF;
    font-size: 27px;
    padding: 15px 15px 14px;
    line-height: 1.5;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    font-size: 26px;
    width: 26px;
    line-height: 26px;
    text-align: center;
    top: 50%;
    margin-top: -13px;
    right: 15px;
}



.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: initial;
    margin: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\f078";
}

.ps-form {
    margin-top: 75px;
}

.ps-form div[class^='col'] {
    margin-bottom: 30px;
}

.ps-form .form-checkbox {
    display: grid;
    grid-template-columns: 1em auto;
    gap: 2em;
}

.ps-form input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: transparent;
    /* Not removed via appearance */
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 30px;
    height: 30px;
    border: 1px solid #FFFFFF;
    border-radius: .375rem;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

.ps-form input[type="checkbox"]::before {
    content: "";
    width: 1em;
    height: 1em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #FFFFFF;
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.ps-form input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.privacy_text a{
    color: #FFFFFF;
    text-decoration: underline;
}

.btn-ps {
    background: #FFFFFF;
    display: block;
    min-width: 320px;
    font-weight: 600;
    font-family: 'gothambold', sans-serif;
    font-size: 26px;
    border-radius: 0.375rem;
    color: #012349;
}
.btn-ps.azure {
    background: #b3bdc4;
}
.btn-ps:hover,
.btn-ps.azure:hover {
    background: rgba(1,33,63,.5);
    border-color: #FFFFFF;
}

.btn-ps-inline {
    display: inline-block;
}

.btn-logout {
    min-width: 100px;
    font-size: 16px;
}



.stepper {
    display: flex;
    width: 100%;
    justify-content: center;
}

.stepper .step {
    width: 88px;
    height: 88px;
    border: 1px solid #667482;
    border-radius: 100%;
    padding: 5px;
    margin: 30px 5%;
    font-size: 40px;
    text-align: center;
    display: block;
}

.stepper .step.empty {

}

.stepper .step.back {
    padding: 0;
    border: none;
    font-family: 'gothammedium', sans-serif;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.stepper .step.back span {
    font-size: 18px;
    opacity: 0.5;
   
    margin-top: 20px;
    display: block;
}

.stepper .step.back:hover span {
    opacity: 1;
}

.stepper .step div, .stepper .step a {
    background: #FFFFFF;
    color: #012349;
    display: block;
    border-radius: 100%;
    width: 76px;
    height: 76px;
    font-weight: 500;
    line-height: 76px;
    text-transform: uppercase;
    font-family: 'gothammedium', sans-serif;

}

.stepper .step a {
    width: 88px;
    height: 88px;
    line-height: 88px;
    background: rgba(255,255,255,0.5);
}

.stepper .step:hover a {
    background: rgba(255,255,255,1);
}

.restart {
    width: 88px;
    height: 88px;
    border: 1px solid #667482;
    border-radius: 100%;
    padding: 5px;
    margin: 30px 0 30px 5%;
    font-size: 40px;
    text-align: center;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
}

.restart div {
    background: #012642;
    color: #FFFFFF;
    display: block;
    border-radius: 100%;
    width: 76px;
    height: 76px;
    font-weight: 500;
    line-height: 76px;
    text-transform: uppercase;
    font-family: 'gothammedium', sans-serif;
}

.restart:hover div {
    color: #012642;
    background: #FFFFFF;
}

.footer {
    display: block;
    position: relative;
}

.cabinet {
    padding: 20px 15px;
    margin: 20px 5px;
    background: rgba(1,33,63,.5);
    border-radius: .375rem;
}

.cabinet img {
    margin-top: -40px;
    margin-bottom: 40px;
}

.cabinet:first-child {
    margin-left: 0;
}

.cabinet:last-child{
    margin-right: 0;
}

.electricity_cost label {
    font-family: 'gothambook', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
}

.electricity_cost input {
    border-right: none;
}

#electricity_cost-addon {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-left: none !important;
    padding-right: 20px;
    font-size: 26px;
    background: rgba(1,33,63,.5);
}

.electricity_cost .form-text {
    font-family: 'gothambook', sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 30px;
}

.ps-results {
    display: block;
    background: #83bc68;
    color: #012349;
}

.ps-results-header {
    background-image: url('/assets/main/images/PF-black.svg');
    background-position: 25px center;
    background-size: 60px 70px;
    background-repeat: no-repeat;
    padding: 30px 0;
    align-items: center;
}

.ps-results-header p, .ps-results-other-header p{
    font-family: 'gothambold', sans-serif;
    font-weight: 600;
    margin: 0;
    color: #012349;
}

.ps-table {
    border: 2px solid #012349;
    border-collapse: collapse;
    border-left: none;
    border-right: none;
}
.ps-table th, .ps-table td {
    border: 2px solid #012349;
    text-align: center;
    font-size: 14px;
    color: #012349;
}
.ps-table th {
    font-family: 'gothammedium', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    height: 60px;
    vertical-align: middle;
}

.ps-table td {
    border-bottom: none;
    border-top: none;
    padding: 8px 0;
}

.ps-table tr th:first-child, .ps-table tr td:first-child {
    border-left: none;
}
.ps-table tr th:last-child, .ps-table tr td:last-child {
    border-right: none;
}

.ps-table tbody tr:last-child td {
    white-space: nowrap;
}

.ps-table tbody tr:last-child td .value {
    font-size: 18px !important;
    font-family: 'gothambold', sans-serif;
    font-weight: 600;
}

.green-light {
    background: #b8cf97 !important;
}
.green-soft {
    background: #abdc84 !important;
}
.green {
    background: #83bc68 !important;
}

.ps-table td p {
    margin: 0;
    padding: 0 8px;
}

.ps-table tbody tr:last-child td p{
    background-color: #c4ee69 !important;
}

.ps-table tbody tr:first-child td {
    padding-top: 30px;
}

.ps-table tbody tr:last-child td {
    padding-bottom: 30px;
}


.saving-eur {
    font-family: 'gothammedium', sans-serif;
}

.saving-perc {
    font-family: 'gothambold', sans-serif;
    font-weight: 600;
    font-size: 26px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ps-results-other .nav-link {
    height: 54px;
    color: #012349;
    font-family: 'gothambold', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 36px;
}

.ps-results-other .nav-link.active {
    color: #012349;
}

.ps-results-other .nav-tabs {
    border-bottom: none;
}

.ps-results-other-header {
    height: 54px;
    align-items: center;
    display: flex;
    justify-content: center;
}



#tab_b, #tabs_b {
    background-color: #fef33b;
    border-color: #fef33b;
}
#tab_c, #tabs_c {
    background-color: #efbe2c;
    border-color: #efbe2c;
}
#tab_d, #tabs_d {
    background-color: #dd420f;
    border-color: #dd420f;
}

#tabs_b .ps-table tbody tr:last-child td p{
    background-color: #f6d733 !important;
}

#tabs_c .ps-table tbody tr:last-child td p{
    background-color: #f6d733 !important;
}

#tabs_d .ps-table tbody tr:last-child td p{
    background-color: #f6d733 !important;
}

.contact-details {
    display: inline-block;
    background: rgba(1,33,63,.5);
    min-width: 50%;
    padding: 25px 35px;
    margin: 50px 0;
}

.contact-details p{
    font-family: 'gothambook', sans-serif;
    font-weight: 400;
    font-size: 18px;
}

.contact-details a {
    color: #FFFFFF;
    text-decoration: none;
}

.contact-details p strong{
    font-family: 'gothammedium', sans-serif;
    font-weight: 500;
}


.basic-login{
    margin-top:80px;
}

.forget-pwd{
    color: #ffffff;
}
.forget-pwd:hover{
    text-decoration: none;
    color: #ffffff!important;
}

.text{
    font-family: 'gothambook', sans-serif;
}

.user-name-nav{
    margin-right:15px;
}

.text-white{
    color: white;

}

.headerbar-text{
    outline: 0!important;
    display: inline-block;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    padding: 2px;
    font-size: 16px;
    font-family: 'gothambook', sans-serif;
    margin-bottom: 0;
    margin-right: 20px;
}

.logo-margin {
    margin-top:30px;
}

.user-icon{
    color: #ffffff;
    margin-left:10px;
    margin-right:10px;
}

.headerbar{
    background-color: #01213f80!important;
    border-color: #ffffff;
    border: none!important;
    padding: 10px;
}

.save-block-results{
    padding-bottom:15px!important;
    padding-left: 45px!important;
}
