/* APP css classes */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    /* font-size: 12px; */
    font-family: "Roboto", sans-serif;
    /* font-weight: bold; */
}
body {
    background-color: #fdfdfd;
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100% !important;
    height: 100% !important;
}

header {
    margin-top: 80px;
    /* position: relative;
    top: 80px; */
}

nav {
    top: 0px;
}
.siteMainAreaDiv {
    padding-top: 1rem;
    display: flex;
    position: relative;
    height: 100% !important;
    width: 100% !important;
}
/*********************************************/
/* Main css classes */
.siteLoaderDiv {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 225, 200, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.siteLoader {
    margin-top: 2rem;
    border: 8px solid #ffffff00;
    border-top: 8px solid rgba(250, 250, 250, 1);
    border-bottom: 8px solid rgba(250, 250, 250, 1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*********************************/

.nav {
    margin: 0px !important;
    z-index: 10;
    position: fixed;
    width: 100%;
    height: 80px;
    background-color: rgba(25, 225, 200, 1);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logoLink {
    position: relative;
    order: 1;
    top: 0px;
    margin-left: 3rem;
    line-height: 6rem;
    height: 6rem;
    width: 5%;
}

.logoLink > img {
    height: 100%;
}

.navMenuButon {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    line-height: 100%;
    justify-content: center;
    color: #ffffff;
}

.navMenuButonDiv {
    display: none;
    order: 3;
    width: 10%;
    height: 100%;
    margin-right: 2%;
    font-size: x-large;
}

.navMenuCheck {
    display: none;
}

.navMenuCheck:checked + .navMenuButonDiv > .navMenuButon > .navMenuButtonImg {
    display: none;
}

.navMenuCheck:checked + .navMenuButonDiv > .navMenuButon::before {
    content: "X";
}

.navMenuButtonImg {
    display: block;
    width: 40%;
}

.navLinks {
    display: grid;
    justify-content: start;
    grid-template-columns: repeat(10, 2fr);
    width: 85%;
    order: 4;
    /* column-gap: 1rem; */
    /* margin-right: 1rem; */
    align-items: center;
    
}

.navPageLinks {
    width: max-content;
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto;
    /* column-gap: 1rem;  */
    align-items: center;
}

/***/
.dropdown {
    /* margin-left: 1rem; */
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.dropdown:first-child {
    margin-left: 0px;
}
.navDropdownContentCheck {
    display: none;
}

.dropdown-content {
    max-height: 20rem;
    overflow-y: auto;
    display: none;
    position: absolute;
    background-color: #00ffff;
    min-width: 120px;
    max-width: 150px;
    width: max-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.dropdown-content::-webkit-scrollbar {
    width: 0.5rem;
    /* background-color: rgba(0, 0, 0, 0.2); */
}
.dropdown-content::-webkit-scrollbar-thumb {
    background-color: #f3f3f3;
    border-radius: 10px;
}
.dropdown-content a {
    color: rgb(16, 16, 16);
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f3f3f3;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/**************************************/
.navLink {
    font-size: 11px;
    display: inline-block;
    min-width: 3rem;
    height: 30px;
    line-height: 30px;
    /* margin-right: 0.2rem; */
    text-decoration: none;
    color: rgb(13, 13, 13);
    text-align: center;
    border-radius: 15px;
}

.navLink:hover {
    color: rgb(255, 255, 255);
}

.active {
    color: rgb(255, 255, 255);
}

.hidden {
    display: none;
}

/************************************/

.navSelectLangDiv {
    cursor: pointer;
    order: 5;
    margin-right: 0.5rem;
    width: 5%;
    height: 100%;
    display: flex;
    align-items: center;
}

.navLangSelector {
    cursor: pointer;
    width: 3rem;
    height: 2rem;
    color: rgb(255, 255, 255);
    border: none;
    background: none;
    transition: 500ms;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: "";
}

.navLangSelector:hover {
    background-color: rgb(255, 255, 255);
    color: rgba(0, 0, 0, 1);
}

.navLanguages {
    cursor: pointer;
    background-color: rgba(24, 224, 191, 0.8);
    text-align: center;
    color: rgb(255, 255, 255);
    border: none;
}

.navLangSelectIcons {
    width: 3vh;
    height: 3vh;
    margin-right: 0.4rem;
}

/* Medya sorguları */
@media screen and (min-width: 2000px) {
    .navLink {
        font-size: 1.2rem;
        min-width: 6rem;
        /* margin-left: 0.8rem; */
    }
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    /* @keyframes spin {} */
    /* .nav {} */
    /* .logoLink {} */
    /* .logoLink > img {} */
    /* .navMenuButon {} */
    /* .navMenuButonDiv {} */
    /* .navMenuCheck {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon > .navMenuButtonImg {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon::before {} */
    /* .navMenuButtonImg {} */
    /* .navLinks {} */
    /* .navPageLinks {} */
    /* .dropdown {} */
    /* .navDropdownContentCheck {} */
    /* .dropdown-content {} */
    /* .dropdown-content a {} */
    /* .dropdown-content a:hover {} */
    /* .dropdown:hover .dropdown-content {} */
    /* .navLink {} */
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
    /* .navSelectLangDiv {} */
    /* .navLangSelector {} */
    /* .navLangSelector:hover {} */
    /* .navLanguages {} */
    /* .navLangSelectIcons {} */
}

@media screen and (max-width: 2000px) {
    .navLink {
        font-size: 14px;
        min-width: 5rem;
        /* margin-left: 0.5rem; */
    }
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    /* @keyframes spin {} */
    /* .nav {} */
    /* .logoLink {} */
    /* .logoLink > img {} */
    /* .navMenuButon {} */
    /* .navMenuButonDiv {} */
    /* .navMenuCheck {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon > .navMenuButtonImg {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon::before {} */
    /* .navMenuButtonImg {} */
    /* .navLinks {} */
    /* .navPageLinks {} */
    /* .dropdown {} */
    /* .navDropdownContentCheck {} */
    /* .dropdown-content {} */
    /* .dropdown-content a {} */
    /* .dropdown-content a:hover {} */
    /* .dropdown:hover .dropdown-content {} */
    /* .navLink {} */
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
    /* .navSelectLangDiv {} */
    /* .navLangSelector {} */
    /* .navLangSelector:hover {} */
    /* .navLanguages {} */
    /* .navLangSelectIcons {} */
}

@media screen and (max-width: 1400px) {
    .navLink {
        font-size: 14px;
        min-width: 4rem;
        /* margin-left: 0.2rem; */
    }
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    /* @keyframes spin {} */
    /* .nav {} */
    /* .logoLink {} */
    /* .logoLink > img {} */
    /* .navMenuButon {} */
    /* .navMenuButonDiv {} */
    /* .navMenuCheck {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon > .navMenuButtonImg {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon::before {} */
    /* .navMenuButtonImg {} */
    /* .navLinks {} */
    /* .navPageLinks {} */
    /* .dropdown {} */
    /* .navDropdownContentCheck {} */
    /* .dropdown-content {} */
    /* .dropdown-content a {} */
    /* .dropdown-content a:hover {} */
    /* .dropdown:hover .dropdown-content {} */
    /* .navLink {} */
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
    /* .navSelectLangDiv {} */
    /* .navLangSelector {} */
    /* .navLangSelector:hover {} */
    /* .navLanguages {} */
    /* .navLangSelectIcons {} */
}

@media screen and (max-width: 1100px) {
.siteMainAreaDiv{
    flex-direction: column;
}
    .nav > .logoLink {
        margin-left: 1rem;
    }
    .navLink {
        font-size: 12px;
        min-width: 3rem;
    }
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    /* @keyframes spin {} */
    /* .nav {} */
    /* .logoLink {} */
    /* .logoLink > img {} */
    /* .navMenuButon {} */
    /* .navMenuButonDiv {} */
    /* .navMenuCheck {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon > .navMenuButtonImg {} */
    /* .navMenuCheck:checked + .navMenuButonDiv > .navMenuButon::before {} */
    /* .navMenuButtonImg {} */
    /* .navLinks {} */
    /* .navPageLinks {} */
    /* .dropdown {} */
    /* .navDropdownContentCheck {} */
    /* .dropdown-content {} */
    /* .dropdown-content a {} */
    /* .dropdown-content a:hover {} */
    /* .dropdown:hover .dropdown-content {} */
    /* .navLink {} */
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
    /* .navSelectLangDiv {} */
    /* .navLangSelector {} */
    /* .navLangSelector:hover {} */
    /* .navLanguages {} */
    /* .navLangSelectIcons {} */
}
@media screen and (max-width: 780px) {
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    .nav {
        margin: 0px !important;
        z-index: 10;
        position: fixed;
        width: 100%;
        height: 80px;
        background-color: rgba(24, 224, 191, 1);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logoLink {
        position: relative;
        order: 1;
        top: 0px;
        margin-left: 3rem;
        line-height: 6rem;
        height: 6rem;
        width: 5%;
    }
    .logoLink > img {
        height: 100%;
    }
    .navHeader {
        width: calc(25% - 70px);
        /*
        70px => .logolink{width:70px}
        */
    }
    .navSearchDiv {
        width: calc(75% - 70px);
    }
    /* .navSearchDiv:hover, */
    /* .navSearchDiv:has(input:focus) {} */
    /* .focusBgNone {} */
    .navSearchDiv > input {
        width: calc(100% - 50px);
    }
    /* .navSearchDiv > button {} */
    .navMenuButonDiv {
        display: block;
        margin-left: 10%;
    }
    /* .navMenuCheck {} */
    .navMenuButon::before {
        font-size: 1.75rem;
    }
    /* .navMenuButtonImg{}*/
    .navLinks {
        position: absolute;
        height: 0px;
        width: 100%;
        top: 80px;
        overflow-y: scroll;
        background-color: rgba(24, 224, 191, 0.95);
        display: flex;
        flex-direction: column;
        transition: 600ms height;
    }
    .navPageLinks {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
    }
    /***/

    .dropdown {
        margin-top: 1rem;
        width: 100%;
        position: relative;
        text-align: center;
    }
    .dropdown:hover .dropdown-content {
        display: none;
    }
    .dropdown > .navLink {
        margin-top: 1rem;
        text-align: center;
    }
    .navDropdownContentCheckLabel {
        position: absolute;
        top: 0;
        right: -1rem;
    }

    .navDropdownContentCheckLabel > i {
        margin-left: 3rem;
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 1);
    }

    .navDropdownContentCheckLabel > i::before {
        content: "\f229";
    }

    .navDropdownContentCheck:checked
        + .navDropdownContentCheckLabel
        > i::before {
        content: "\f235";
    }

    .navDropdownContentCheck:checked ~ .dropdown-content {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
        width: 80%;
    }

    .dropdown-content {
        background: none;
        display: none;
        position: relative;
        width: 80%;
        box-shadow: none;
        margin-left: 10%;
        overflow-y: visible;
        max-height: none;
    }

    .dropdown-content > a {
        text-align: justify;
        display: flex;
        color: rgb(255, 255, 255);
        font-size: 1.25rem;
        margin-top: 0.5rem;
        margin-left: 1rem;
        width: max-content;
    }
    .dropdown-content > a:hover {
        background-color: transparent;
    }
    .dropdown-content > a > i::before {
        font-size: 1.25rem;
        content: "\F138";
        line-height: inherit;
    }
    .dropdown-content > a > p {
        margin-left: 1rem;
        font-size: 1.25rem;
    }
    /***********************************************/
    .navMenuCheck:checked ~ .navLinks {
        height: calc(100vh - 80px);
        padding-top: 3rem;
    }
    .navLinks {
        transition: 400ms all;
    }
    .navLinks > .navLink {
        height: 3rem;
    }
    .navMenuCheck:checked ~ .navLinks > .navLink {
        display: block;
    }
    .navLink {
        height: 0px;
        margin-top: 4rem;
        transition: 500ms display;
        font-size: 1.5rem;
        color: #ffffff;
    }
    .navLink:last-child {
        margin-bottom: 1rem;
    }
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
    .navSelectLangDiv {
        width: 15vh;
    }
    .navLangSelector {
        font-size: 1.8rem;
        width: 5rem;
        height: 5rem;
    }
    .navLangSelector:hover {
        background: none;
        border: none;
        color: #ffffff;
    }
    .navLangSelector:focus {
        border: none;
    }
    .navLangSelector:active {
        border: none;
    }
    .navLangSelectIcons {
        width: 5vh;
        height: 5vh;
    }
}

@media screen and (max-width: 480px) {
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    /* .nav {} */
    /* .logoLink {} */
    /* .logoLink > img {} */
    /* .navHeader {} */
    /* .navSearchDiv {} */
    /* .navSearchDiv:hover, */
    /* .navSearchDiv:has(input:focus) {} */
    /* .focusBgNone {} */
    /* .navSearchDiv > input {} */
    /* .navSearchDiv > button {} */
    /* .navMenuButonDiv{} */
    /* .navMenuCheck {} */
    /* .navMenuCheck:checked + .navMenuButon {} */
    /* .navMenuButon {} */
    .dropdown-content {
        width: 90%;
        margin-left: 10%;
    }
    .dropdown-content > a {
        font-size: 1rem;
    }
    .navMenuButtonImg {
        width: 100%;
    }
    /* .navLinks {} */
    .navLink {
        font-size: 14px;
    }
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
}

@media screen and (max-width: 400px) {
    /* .siteLoaderDiv {} */
    /* .siteLoader {} */
    /* .nav {} */
    /* .logoLink {} */
    /* .logoLink > img {} */
    /* .navHeader {} */
    /* .navSearchDiv {} */
    /* .navSearchDiv:hover, */
    /* .navSearchDiv:has(input:focus) {} */
    /* .focusBgNone {} */
    /* .navSearchDiv > input {} */
    /* .navSearchDiv > button {} */
    /* .navMenuButonDiv{} */
    /* .navMenuCheck {} */
    /* .navMenuCheck:checked + .navMenuButon {} */
    /* .navMenuButon {} */
    .dropdown-content {
        width: 95%;
        margin-left: 5%;
    }
    .dropdown-content > a {
        font-size: 1rem;
    }
    .navMenuButtonImg {
        width: 100%;
    }
    /* .navLinks {} */
    .navLink {
        font-size: 1rem;
    }
    /* .navLink:hover {} */
    /* .active {} */
    /* .hidden {} */
}
