﻿/*#region Font settings */

@font-face {
    font-family: Aeonik-Air;
    src: url('../fonts/Aeonik-Air.otf') format("OpenType");
}

@font-face {
    font-family: Aeonik;
    src: url('../fonts/Aeonik-Regular.otf') format("OpenType");
}

@font-face {
    font-family: Aeonik;
    src: url('../fonts/Aeonik-Bold.otf') format("OpenType");
    font-weight: bold
}

* { font-family: "Aeonik", sans-serif; }

/*#endregion */

:root {
    --accent-color: #E1E000;
    --title-color: #ffffff;
    --subtext-color: #D0D3D4;
    --darktext-color: #848687;
}


body {
    background: #000000;
    overflow-x: hidden;
}


/*#region Default styling text */


h1, h2, h3, h4, p {
    margin: 0px;
    padding: 0px;
    min-height: 0vw;
}

h1, .h1 {
    font-family: "Aeonik", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 56px;
}


@media (min-width: 1000px) {
    h1, .h1 {
        font-size: 108px;
        line-height: 118px;
    }
}

/*#endregion */




/*#region CookieConsentPartial */

/*.cookie-alert-container {
    background: var(--accent-color);
    color: #000000;
    font-weight: bold;
    border-radius: 0px;
}
*/
/*#endregion */

.alert-success {
    background: var(--accent-color) !important;
    color: #000000 !important;
    font-weight: bold !important;
    border-radius: 0px !important;
}

.alert-warning {
    background: var(--accent-color) !important;
    color: #000000 !important;
    font-weight: bold !important;
    border-radius: 0px !important;
}

/*#region Header */

.logo-image {
    width: 150px; 
    
}

@media(min-width: 1000px) {
    .logo-image {
        width: 350px;
        margin-left: 85px;
    }
}

.container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow: visible !important;
}

.nav-link:hover { color: var(--accent-color) !important; }

.dropdown button { color: #ffffff; }

.dropdown button:hover { color: var(--accent-color); }

.dropdown-menu {
    background-color: #212322;
    color: var(--accent-color);
    z-index: 10000;
}

header {
    min-height: 100px;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow-y: visible;
}

header .nav-link { color: #ffffff !important; }

.navbar {
    /*background-color: #000000;*/
    width: 100%;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    color: var(--accent-color) !important;
    font-weight: bold
}


.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--subtext-color);
    background-color: #000000;
    border-color: #1861ac;
}

.nav-pills .nav-link:hover { color: var(--darktext-color) !important; }

.nav-pills a { color: #212322; }


/*#endregion */

/*#region footer */

.footer {
    bottom: 0;
    width: 100%;
    overflow-x: hidden;
    white-space: nowrap;
    padding: 40px 5% 0 5%;
    line-height: 60px; /* Vertically center the text there */
    background: #000000;
}

@media(min-width: 1000px) {
    .footer h2 {
        font-size: 88px;
    }
}

    .footer h2 {
        color: rgb(33, 35, 34);
        
        line-height: 98px;
        font-weight: bold;
    }

.footer hr { background: #ffffff; }

.footer a { color: #D0D3D4; }

.footer a:hover { color: #E1E000; text-decoration: none!important; }

.footer-section {
    color: #ffffff;
    font-weight: bold;
    padding: 1em;
}



.footer-sections {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}



@media (min-width: 1000px) {
    .footer-sections {
        flex-direction: row;
        font-size: 22px;
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    line-height: 20px;
    color: #D0D3D4;
}

.footer-links a {
    overflow-wrap: break-word;
    max-width: 250px;
    white-space: normal;
    font-weight: normal;
    margin-bottom: 15px
}

.footer-info {
    display: flex;
    flex-direction: column;
    color: #848687;
    align-items: stretch;
    min-height: 130px;
}

@media (min-width: 1000px) {
    .footer-info { flex-direction: row; }
}



.footer-info div[class^="footer-info-block"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 1 1 auto;
    line-height: 16px;
}



@media (min-width: 1000px) {
    .footer-info div[class^="footer-info-block"] {
        border: 1px #848687 solid;
        border-radius: 20px 20px 0 0;
        border-bottom: none;
        flex-direction: row;
    }
}

.footer-info-block-2 a{
    color: #848687;
}

.footer-info div[class^="footer-info-block"] h3 { font-weight: bold; }


.social {
    display: flex;
    flex-direction: row !important;
    color: white !important;
}

.social a {
    margin-left: 15px;
    fill: #848687 !important;
}

.social a:hover {
    transition: all 0.25s ease 0s;
    transform: translateX(5px);
}


.social-svg:hover .social-svg-mask {
    fill: #ffffff !important;
}

.social-svg-mask {
    fill: #5f6061 !important
}
/*#endregion */

/*#region air-text */

.air {
    display: none;
}

@media (min-width: 1000px) {
    .air {
        display: block;
        width: 100%;
        overflow-x: hidden;
        font-weight: bold;
        font-size: 150px;
        line-height: 155px;
        color: #000000;
        -webkit-text-stroke-width: .5px;
        -webkit-text-stroke-color: gray;
        margin: 100px 0 0 0;
        text-transform: uppercase;
    }

    .air.yellow {
        background: var(--accent-color) !important;
        color: var(--accent-color) !important;
        -webkit-text-stroke-color: black;
        margin: 0;
        margin-right: 100px;
        position: relative;
    }
}

@media (min-width: 2000px){
    .air {
        font-size: 180px;
        line-height: 185px;
    }
}

    /*#endregion */


    .container {
        overflow-x: hidden;
    }

    .scanline-yellow {
        background-image: linear-gradient(135deg, transparent 30%, rgb(225, 224, 0) 30%, rgb(225, 224, 0) 50%, transparent 50%, transparent 80%, rgb(225, 224, 0) 80%, rgb(225, 224, 0) 100%);
        background-size: 7.07px 7.07px;
    }

    .scanline-gray {
        background-image: linear-gradient(135deg, transparent 30%, rgb(197, 197, 197) 30%, rgb(197, 197, 197) 50%, transparent 50%, transparent 80%, rgb(197, 197, 197) 80%, rgb(197, 197, 197) 100%);
        background-size: 7.07px 7.07px;
    }

    .scanline-white {
        background-image: linear-gradient(135deg, transparent 30%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 50%, transparent 50%, transparent 80%, rgb(255, 255, 255) 80%, rgb(255, 255, 255) 100%);
        background-size: 7.07px 7.07px;
    }




    .accent-block {
        background: var(--accent-color);
        /*width: 100%;*/
        padding: 30px 10px;
        position: relative;
    }

    @media (min-width: 1000px) {
        .accent-block {
            padding: 100px 10%;
        }
    }

    .black-block {
        /*background: #000000;*/
        color: var(--title-color);
        padding: 30px 10px;
    }

    @media (min-width: 1000px) {
        .black-block {
            padding: 100px 10%;
        }
    }

    .gray-block {
        background: #CFD2D3;
        padding: 30px 10px;
    }

    @media (min-width: 1000px) {
        .gray-block {
            padding: 100px 10%;
        }
    }

    @media (min-width: 1000px) {
        .space-left {
            margin-left: 100px;
        }

        .space-right {
            margin-right: 100px;
        }
    }

    .raster {
        background-image: linear-gradient(0deg, transparent 24%, rgba(0, 0, 0, .05) 25%, rgba(0, 0, 0, .05) 26%, transparent 27%, transparent 74%, rgba(0, 0, 0, .05) 75%, rgba(0, 0, 0, .05) 76%, transparent 77%, transparent), linear-gradient(90deg, transparent 24%, rgba(0, 0, 0, .05) 25%, rgba(0, 0, 0, .05) 26%, transparent 27%, transparent 74%, rgba(0, 0, 0, .05) 75%, rgba(0, 0, 0, .05) 76%, transparent 77%, transparent);
        background-size: 21px 21px;
    }

    h1 {
        font-weight: bold;
    }

    a.link::before {
        content: url('data:image/svg+xml;utf8,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 48.7 45.4" xml:space="preserve" color="black" direction="top-left" class="link-arrow"><path d="M0,21.1l24.3,24.3l24.3-24.3l-4.2-4.2L27.3,34.2l-5.9,0L4.2,16.9L0,21.1z M27.3,34.2V0 h-5.9v34.2"></path></svg>');
        transform: rotate(135deg);
        height: 15px;
        width: 15px;
        display: inline-block;
    }

    @media (min-width: 1000px) {
        .left-block {
            max-width: 45%;
        }
    }

    .las {
        font-size: 24px;
        color: #5F6061;
    }


    @media (max-width: 999px) {
        .horizontal-scroll {
            width: 100%;
            overflow-x: scroll;
        }
    }

    ::-moz-selection { /* Code for Firefox */
        background: var(--accent-color);
        color: black;
    }

    ::selection {
        background: var(--accent-color);
        color: black;
    }

    .less-padding {
        padding: 100px 100px !important;
    }


.inbetween-image {
    display: none;
}

@media (min-width: 1100px) {
    .inbetween-image {
        z-index: 1;
        display: block;
        width: 40%;
        max-height: 500px;
        right: 100px;
        margin: 0 auto;
        margin-top: -100px;
        position: absolute;
        text-align: center;
        vertical-align: middle;
        object-fit: cover;
    }

} 


.pill-button.bigger {
    min-height: 50px;
    justify-self: center;
    width: 100%;
    font-size: 20px !important;
}

.bigger-input {
    height: 3.5em;
}

.pill-button.grand-button {
    min-height: 45px;
    min-width: 300px;
    font-size: 25px;
    line-height: 40px;
}

.solarpanel-info-table tr {
    height: 40px;
}

#solarInformation {
    margin-left: 50px;
}

.required:after {
    content: "*";
    font-weight: bold;
    color: red;
}

/*#region profile crud */



.basic-only{
    display: none;
}

/*#endregion */

/*#region CustomSwitch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #707070;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 6px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: var(--accent-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--accent-color);
}

input:checked + .slider:before {
    -webkit-transform: translateX(32px);
    -ms-transform: translateX(32px);
    transform: translateX(32px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

/*#endregion */

/*#region spinner */
.image-spinner-loader {
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-bottom: 100px;
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    display: none;
}

.inside-spinner-loader {
    position: relative;
    display: flex;
    justify-content: center;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .inside-spinner-loader img {
        transform-origin: 49.5% 47%;
        animation: rotation 1.5s linear infinite;
    }

.spinner-image {
    position: absolute;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
/*#endregion */