﻿@import url("https://fonts.googleapis.com/css?family=Nunito+Sans:300,400,600,700,800,900&display=swap");

:root {
    font-family: var(--font1);
}

html {
    height: 100%;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}


#header {
    background-color: rgb(250,250,250);
    position: relative;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    transition: all 0.2s;
    display: flex;
    padding: 0 40px;
    justify-content: center;
    flex-wrap: wrap;
    position: fixed;
}

@media screen and (min-width:1025px) {
    #header {
        height: 125px;
        padding: 0 40px;
    }

    body {
        padding-top: 0px;
    }
}

@media screen and (max-width:1024px) {
    #header {
        height: 80px;
        padding: 0 15px;
    }

    body {
        padding-top: 0px;
    }
}

.header-scrolled {
    transition: all 0.4s;
    height: 80px !important;
}

.body-scrolled {
    padding-top: 80px !important;
    transition: all 0.4s;
}

.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 9px;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

        .navbar li a {
            text-decoration: none !important;
            color: rgb(246,246,246) !important;
            white-space: nowrap;
        }

#header .navbar li a {
    font-size: 22px;
    font-weight: 900;
    font-family: var(--font1);
}

    #header .navbar li a:hover {
        color: rgb(255, 90, 90) !important;
        transition: all 0.3s;
    }


#footer {
    background-image: -webkit-linear-gradient(123deg, rgb(114, 191, 68) 0%, rgb(184, 232, 150) 100%);
    position: relative;
    z-index: 1000;
    left: 0;
    width: 100%;
    height: 100%;
}


#section-kurumsal {
    margin-top: 19%;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    overflow-x: hidden;
    transition: all 0.2s;
    overflow: hidden;
}

@media screen and (min-width:1892px) and (max-width:1919px) {
    #footer {
        margin-top: -2%;
    }
}

@media screen and (min-width:768px) and (max-width:1800px) {
    #section-kurumsal {
        margin-top: 9.3%;
        background: url(../image/kurumsal.jpg);
        background-size: 100%;
        background-position: top center;
        width: 76%;
        min-height: 42.5vw;
        background-repeat: no-repeat;
    }

    #mobile-image-header {
        display: none;
    }

    #header .navbar li a {
        font-size: 22px;
    }

    #container-kurumsal {
        margin-left: 73%;
        margin-top: -46%;
        margin-bottom: 7.5%;
    }

    .form-container {
        margin-left: 17%;
        width: 80%;
        padding-bottom: 30px;
    }
}

@media screen and (min-width:1801px) {
    #section-kurumsal {
        margin-top: 6.3%;
        background: url(../image/kurumsal.jpg);
        background-size: 100%;
        background-position: top center;
        width: 73%;
        min-height: 40vw;
        background-repeat: no-repeat;
    }

    .form-container {
        margin-left: -15%;
        width: 108%;
        padding-bottom: 40px;
    }

    #mobile-image-header {
        display: none;
    }

    #header .navbar li a {
        font-size: 22px;
    }

    #container-kurumsal {
        margin-left: 78%;
        margin-top: -37%;
        margin-bottom: 9%;
    }
}

@media screen and (max-width:767px) {
    #container-kurumsal {
        display: block !important;
        margin: auto !important;
    }

    #mobile-image-header img {
        width: 100%;
    }

    #header .navbar li a {
        font-size: 13px;
    }

    #container-kurumsal {
        transform: translate(0px,-70px);
        -webkit-transform: translate(0px,-70px);
    }

    .form-container {
        margin-left: 25px !important;
        margin-right: 10px !important;
    }
}

@media screen and (max-width:1024px) {
    #biwatt-logo {
        width: 140px;
        height: auto;
    }
}

@media screen and (min-width:1025px) {
    #biwatt-logo {
        width: 240px;
        height: auto;
    }

    #modal-basarili .modal-dialog {
        width: 600px !important;
    }
}

.form-group {
    margin-bottom: -0.35rem;
}

/*Checkbox & Radio Button*/
.checkbox .cr, .radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

    .checkbox .cr .cr-icon, .radio .cr .cr-icon {
        position: absolute;
        font-size: .8em;
        line-height: 0;
        top: 50%;
        left: 20%;
    }

    .radio .cr .cr-icon {
        margin-left: 0.04em;
    }

.checkbox label input[type="checkbox"], .radio label input[type="radio"] {
    display: none;
}

    .checkbox label input[type="checkbox"] + .cr > .cr-icon, .radio label input[type="radio"] + .cr > .cr-icon {
        transform: scale(3) rotateZ(-20deg);
        opacity: 0;
        transition: all .3s ease-in;
    }

    .checkbox label input[type="checkbox"]:checked + .cr > .cr-icon, .radio label input[type="radio"]:checked + .cr > .cr-icon {
        transform: scale(1) rotateZ(0deg);
        opacity: 1;
    }

    .checkbox label input[type="checkbox"]:disabled + .cr, .radio label input[type="radio"]:disabled + .cr {
        opacity: .5;
    }


.form-control[readonly] {
    background-color: #fff !important;
}

.btn-light {
    background-color: #fff;
    border: 1px solid #ced4da;
    outline: none !important;
}

/*GIF*/
@keyframes ldio-e5veb4ywsdm-o {
    0% {
        opacity: 1;
        transform: translate(0 0)
    }

    49.99% {
        opacity: 1;
        transform: translate(69.3px,0)
    }

    50% {
        opacity: 0;
        transform: translate(69.3px,0)
    }

    100% {
        opacity: 0;
        transform: translate(0,0)
    }
}

@keyframes ldio-e5veb4ywsdm {
    0% {
        transform: translate(0,0)
    }

    50% {
        transform: translate(69.3px,0)
    }

    100% {
        transform: translate(0,0)
    }
}

#loading {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgba(102,102,102,0.2);
    z-index: 99999;
    position: fixed;
    overflow: hidden !important;
}

@keyframes ldio-95ie2vjkx8e {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.ldio-95ie2vjkx8e div {
    left: 94px;
    top: 48px;
    position: absolute;
    animation: ldio-95ie2vjkx8e linear 1s infinite;
    background: #3f3638;
    width: 12px;
    height: 24px;
    border-radius: 6px / 12px;
    transform-origin: 6px 52px;
}

    .ldio-95ie2vjkx8e div:nth-child(1) {
        transform: rotate(0deg);
        animation-delay: -0.9166666666666666s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(2) {
        transform: rotate(30deg);
        animation-delay: -0.8333333333333334s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(3) {
        transform: rotate(60deg);
        animation-delay: -0.75s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(4) {
        transform: rotate(90deg);
        animation-delay: -0.6666666666666666s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(5) {
        transform: rotate(120deg);
        animation-delay: -0.5833333333333334s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(6) {
        transform: rotate(150deg);
        animation-delay: -0.5s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(7) {
        transform: rotate(180deg);
        animation-delay: -0.4166666666666667s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(8) {
        transform: rotate(210deg);
        animation-delay: -0.3333333333333333s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(9) {
        transform: rotate(240deg);
        animation-delay: -0.25s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(10) {
        transform: rotate(270deg);
        animation-delay: -0.16666666666666666s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(11) {
        transform: rotate(300deg);
        animation-delay: -0.08333333333333333s;
        background: #3f3638;
    }

    .ldio-95ie2vjkx8e div:nth-child(12) {
        transform: rotate(330deg);
        animation-delay: 0s;
        background: #3f3638;
    }

.loadingio-spinner-spinner-wmtvau41w6 {
    width: 200px;
    height: 200px;
    overflow: hidden;
    overflow: hidden;
    background: transparent;
    display: block;
    margin: auto;
    top: 40%;
    position: relative;
}

.ldio-95ie2vjkx8e {
    width: 100%;
    height: 100%;
    position: relative;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    transform-origin: 0 0; 
}

    .ldio-95ie2vjkx8e div {
        box-sizing: content-box;
    }

#ui-datepicker-div {
    z-index: 1001 !important;
}
