@charset "utf-8";

/* CSS Document */
:root {
    --max-width: 1500px;
    --sidebar-width: 230px;
    --parents-radius: 10px;
    --main-element-bgcolor: rgba(255, 255, 255, 0.4);
    --main-border-color: #DBDBDB;
    --button-radius: 6px;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    width: 100%;
    padding: 10px;
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    background-color: rgba(255, 255, 255, 0.6);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #424242;

}

.page_header {
    border: 1px solid var(--main-border-color);
    border-radius: var(--parents-radius);
    padding: 10px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*align-content: stretch;*/
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    background-color: var(--main-element-bgcolor);
    min-width: 350px;

}

.page_container {
    border: 1px solid var(--main-border-color);
    border-radius: var(--parents-radius);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-content: stretch;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    min-height: 70vh;
    background-color: var(--main-element-bgcolor);
    min-width: 350px;
}

.page_sidebar {
    border: 0px solid var(--main-border-color);
    border-radius: var(--parents-radius);
    padding: 10px;
    min-width: var(--sidebar-width);
    display: block;

}

.page_content {
    border: 1px solid #DBDBDB;
    border-radius: var(--parents-radius);
    padding-left: 25px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 30px;
    width: calc(calc(100% - var(--sidebar-width)) - 10px);
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;



}

.page_footer {
    border: 1px solid var(--main-border-color);
    border-radius: var(--parents-radius);
    padding: 20px 10px;
    display: flex;
    justify-content: space-around;
    align-content: stretch;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    min-height: 100px;
    background-color: var(--main-element-bgcolor);
    min-width: 450px;

}

.page_footer .privacy {
    align-content: center;
    padding: 10px 10px;
    max-width: 260px;
    min-width: 200px;
    text-align: center;
    border: 1px solid var(--main-border-color);
    border-radius: 9px;
    font-size: small;
    margin-right: 25px;
}

.page_footer .connections {
    border-left: 0px dashed #e2e2e2;
    padding: 5px 15px 15px 15px;
    max-width: 360px;
    min-width: 250px;
    margin-right: 25px;

}

.page_footer .socials {
    border-left: 0px dashed #e2e2e2;

    padding: 5px 15px 15px 15px;
    margin-right: 25px;
    max-width: 360px;
    min-width: 250px;
}

.page_footer a,
.page_footer a:visited,
.page_footer a:active,
.page_footer a:link {
    display: block;
    clear: both;
    margin-bottom: 2px;
    padding: 6px 15px;
    transition: background-color 0.2s ease-in;
    border-radius: 8px;
    border: 0px;
}

.page_footer a::before {
    content: "» ";
    font-size: large;
    color: #000000;
}

.page_footer a:hover {
    border-radius: 8px;
    border: 0px;
    background-color: #e7e7e7;
}

.page_footer .connections span {
    font-style: italic;
    font-size: small;
    color: #ec5058;
    line-height: 30px;
}

.page_footer .connections span::before {
    content: "💡";
    font-style: normal;
}

.page_footer .socials span {
    font-style: italic;
    font-size: small;
    color: #ec5058;
    line-height: 30px;
}

.page_footer .socials span::before {
    content: "💡";
    font-style: normal;
}

a,
a:visited,
a:active,
a:link {
    text-decoration: none;
    color: #818181;

}

a:hover {
    color: #070707;
}

.page_nav {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--main-border-color);
    padding-bottom: 35px;
    position: relative;


}

.page_nav span {
    font-size: 25px;
    margin-right: 5px;

}

.page_nav a,
.page_nav a:active,
.page_nav a:link,
.page_nav a:visited {
    display: flex;
    background-color: rgb(255, 255, 255);
    margin-bottom: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 5px;
    border-radius: 5px;
    border: 1px solid #ffffff00;
    text-decoration: none;
    color: darkgrey;
    transition: box-shadow 220ms ease, border-color, 240ms ease;
    /*, transform 240ms ease;*/
    line-height: 24px;
    position: relative;
    box-sizing: border-box;
}

.page_nav a::after {
    content: "»";
    position: absolute;
    right: 5px;
    /* sağa dayar */
    top: 50%;
    /* dikey ortalama */
    transform: translateY(-50%);
}

.page_nav a:hover {
    box-shadow: 5px 5px 10px #DBDBDB;
    /*transform: translateY(-2px);*/
    color: dimgray;
    border-color: darkgrey;
    border-width: 1px;
}

.page_header .page_header_logo {
    border-radius: 35px;
    border: 1px solid var(--main-border-color);
    height: 70px;
    width: 70px;
    margin-left: 15px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;
    align-content:center;
    text-align: center;
    font-weight: bolder;
}

.page_header .page_header_motto {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-style: italic;
    font-weight: bold;
    font-size: larger;
}

.page_header_account {
    display: flex;
    gap: 8px;
    justify-items: center;
    align-items: center;
    height: 100%;
}

.page_header_account .user_avatar {
    border-radius: 35px;
    border: 1px solid var(--main-border-color);
    padding: 0px;
    width: 70px;
    height: 70px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;



}

.page_header_account .user_status {
    border-radius: var(--parents-radius);
    border: 1px solid var(--main-border-color);
    padding: 8px 8px;
    width: 180px;
    font-size: small;
    margin-top: 5px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;

    align-items: center;
}

.page_header_account .user_info {}

.button_login {
    padding-left: 1px;
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    border-radius: var(--button-radius);
    border: 1px solid #DBDBDB;
    outline: none;
    color: #067e20;
    background-color: #f3f3f3;
    width: 130px;
}

.button_login::before {
    content: "🔓";
    margin-right: 5px;
}

.button_logout {
    padding-left: 2px;
    padding-right: 8px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    border-radius: var(--button-radius);
    border: 1px solid #DBDBDB;
    outline: none;
    color: #e02d0e;
    background-color: #f3f3f3;
    width: 130px;
}

.button_logout::before {
    content: "🔒";
    margin-right: 5px;

}

.button_logout:hover,
.button_login:hover {
    background-color: #e4e4e4;
    color: #424242;
}



/*Page Nesneleri*/
h1 {
    display: block;
    width: 100%;
    background-color: #f0f0f0;
    padding: 8px;
    font-size: 1.3em;
    border: 1px solid #c7c7c7;
    color: #414141;
    border-radius: var(--parents-radius);
    margin-bottom: 15px;
    position: relative;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;
}

h1::before {
    content: "📌";
    margin-right: 10px;

}

h2 {
    display: block;
    width: 100%;
    
    background-color: #f0f0f0;
    padding: 8px;
    font-size: 1em;
    border: 1px solid #c7c7c7;
    color: #414141;
    border-radius: var(--parents-radius);
    margin-bottom: 15px;
    position: relative;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;
}

h2::before {
    content: "📌";
    margin-right: 10px;

}

.page_content p {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    text-align: justify;
}

.msg_success {
    display: block;
    border-radius: var(--parents-radius);
    background-color: #cdec5c;
    padding: 10px;
    position: relative;
    margin-bottom: 18px;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;

}

.msg_success::before {
    content: "✅";
    margin-right: 15px;

}

.msg_warn {
    display: block;
    border-radius: var(--parents-radius);
    background-color: #ff9dc2;
    padding: 10px;
    position: relative;
    margin-bottom: 18px;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;
}

.msg_warn::before {
    content: "❌";
    margin-right: 15px;

}

.msg_info {
    display: block;
    border-radius: var(--parents-radius);
    background-color: #9dcdfa;
    padding: 10px;
    position: relative;
    margin-bottom: 18px;
    -webkit-box-shadow: 0px 0px 9px 3px #D7D7D7;
    box-shadow: 0px 0px 8px 2px #D7D7D7;
}

.msg_info::before {
    content: "ℹ️";
    margin-right: 15px;

}

.container_flex {
    display: flex;
    
    width: 100%;
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    /*justify-content: space-around;*/
    gap: 8px;
    margin-left:auto;
    margin-right:auto;

}
.flex_dir_coloumn {
    flex-direction:column;
}
.flex_dir_row {
    flex-direction:row;
}


.container {
    display: block;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    margin-top: 20px;
    margin-bottom: 30px;
    align-items: center;
    justify-content: center;
    align-content:center;
    /*justify-content: space-around;*/
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
    padding:20px;
}

.cart_holder {

    border: 1px solid var(--main-border-color);
    border-radius: 20px;
    padding: 0px;
    height: 250px;
    width: 220px;
    max-width: 400px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 8px 1px #D7D7D7;
    box-shadow: 0px 0px 8px 1px #D7D7D7;
    flex: 1 0 auto;
    /* 0 = büyüme yok, 1 = küçülebilir, auto = genişlik içerikten */
    flex-shrink: 0;

}


.cart_holder .cart_header {
    background: linear-gradient(to top, #cccccc, #fbfcfc);
    display: block;
    padding: 8px;
    height: 65px;
    text-align: center;
    font-weight: bold;
    -webkit-box-shadow: 0px 0px 8px 1px #D7D7D7;
    box-shadow: 0px 0px 8px 1px #D7D7D7;
    align-content: center;
    overflow: hidden;

}

.cart_holder .cart_content {
    padding: 15px;
    display: block;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

.cart_small_holder {

    border: 1px solid var(--main-border-color);
    border-radius: 10px;
    padding: 0px;
    height: 150px;
    width: 180px;

    overflow: hidden;
    -webkit-box-shadow: 0px 0px 8px 1px #D7D7D7;
    box-shadow: 0px 0px 8px 1px #D7D7D7;
    flex: 0 0 auto;
    /* 0 = büyüme yok, 1 = küçülebilir, auto = genişlik içerikten */
    flex-shrink: 0;

}

.cart_small_holder .cart_small_header {
    background: #414141;
    display: block;
    padding: 5px;
    height: 55px;
    text-align: center;
    font-weight: bold;

    align-content: center;
    overflow: hidden;
    color: #cccccc;
    width: 100%;

}

.cart_small_holder .cart_small_content {
    padding: 15px;
    display: block;
    margin-top: 8px;
    text-align: center;
    font-weight: bolder;
    font-size: 1.5em;
    color: #d84f10;
    width: 100%;
}


.page_toolbar {
    display: flex;
    gap: 8px;
    padding: 10px;
    border: 2px solid #e7e5e5;
    border-radius: 15px;
    justify-content: end;
    position: relative;
    border-left-width: 4px;
    border-left-color: #f36506;
    background-color: #ffffff;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 8px 1px #D7D7D7;
    box-shadow: 0px 0px 8px 1px #D7D7D7;
    width: 100%;

}

.page_toolbar button {

    padding: 7px;
    border: 1px solid var(--main-border-color);
    border-radius: var(--button-radius);
    background-color: #eeeeee;
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
}

.page_toolbar button:hover {
    background-color: #636363;
    border-color: #f36506;
    cursor: pointer;
    color: #e6e6e6;
    -webkit-box-shadow: 0px 5px 8px 1px #B5B5B5;
    /* h-sh, v-sh, blur, spread, color*/
    box-shadow: 0px 5px 8px 1px #B5B5B5;
}

/*FORM ELEMANLARI*/

/*END FORM ELEMANLARI*/
.menu_hmbgr {
    display: none;
}


/*TABLE AND DATA*/
table {
    margin: 15px auto 15px auto;

    border-collapse: separate;
    border-spacing: 0px;
    width: 95%;

}

th {
    border: 1px solid #c0c0c0;
    padding: 10px 5px;
    background: #5a5a5a;
    /*linear-gradient(to top, #2e2d2d, #666565);*/
    overflow: hidden;
    
    color: #fffff0;

}

th:first-child {
    border-top-left-radius: 8px;

}

th:last-child {
    border-top-right-radius: 8px;

}

thead {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

tr {}

td {

    border: 1px solid #e0e0e0;
    padding: 5px 15px;
    overflow: hidden;
    /*word-break: break-all;*/

}


.text_right {
    text-align: right;
}

/*END TABLE AND DATA*/

button {
    padding: 8px 9px;
    margin-right: 5px;
    outline: none;
    background-color: #f0efef;
    cursor: pointer;
    border-radius: var(--button-radius);
    border: 1px solid var(--main-border-color);

}

button:hover {
    background-color: #5f5f5f;
    color: #ffffff;
}

button span {
    margin-right: 8px;
    font-size: 14px;
}

td button {
    padding: 8px 9px;
    margin-right: 5px;
    outline: none;
    background-color: #f0efef;
    cursor: pointer;
    border-radius: var(--button-radius);
    border: 1px solid var(--main-border-color);

}

td button:hover {
    background-color: #5f5f5f;
    color: #ffffff;
}

td button span {
    margin-right: 8px;
    font-size: 14px;
}



/*LOADER*/
.loader_anim {
    display: flex;
    position: fixed;
    top: 0px;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;

    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
    color: #3498db;
    background-color: #ffffff;
    width: 100%;
    border-bottom: 1px solid #cccccc;
    -webkit-box-shadow: 0px 5px 8px 1px #B5B5B5;
    /* h-sh, v-sh, blur, spread, color*/
    box-shadow: 0px 5px 8px 1px #B5B5B5;
    z-index: 11;
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.dots div {
    width: 12px;
    height: 12px;
    margin: 4px;
    background-color: #3498db;
    border-radius: 50%;
    animation: bounce 0.6s infinite alternate;
}

.dots div:nth-child(2) {
    animation-delay: 0.2s;
}

.dots div:nth-child(3) {
    animation-delay: 0.4s;
}

.page_lock {
    
    position: fixed;
    width: 100%;
    height: 1000%;
    left: 0;
    top: 0;
    background-color: rgba(201, 201, 201, 0.8);
    z-index: 20;
}

.page_lock.active{
    display: block;
    
}
.page_lock.disabled {
        display: none;
    }

.rb_dialog {
    display:none;
    position: fixed;
    background-color: #FFFFFF;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 20;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    border-radius: var(--parents-radius);
    width: 60%;
    min-width: 300px;
    height: 90%;
    
    
}
.rb_dialog .dialog_content{
    display:block;
    background-color: #FFFFFF;
    width: 100%;
    min-width: 300px;
    height: 60vh;
    overflow-y: auto;
    display:flex;
    justify-content:center;
    
}
.rb_modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:8;
    background-color:rgba(45,45,45,0.4);
    backdrop-filter:blur(5px);
    


}

@keyframes bounce {
    from {
        transform: translateY(0);
        opacity: 0.5;
    }

    to {
        transform: translateY(-10px);
        opacity: 1;
    }
}



@media (max-width: 600px) {

    .page_sidebar {

        display: none;
        position: fixed;
        z-index: 25;
        background-color: #f5f5f5;
        top: 108px;
        left: 10px;
        border-color: #9c9c9c;
        border-width: 1px;

    }

    .page_content {
        width: 100%;
    }

    .page_header_motto,
    .user_status {
        display: none;
    }

    .menu_hmbgr {

        width: 35px;

        display: block;
        font-weight: bolder;
        cursor: pointer;
        font-size: x-large;

    }

    .menu_hmbgr span {
        height: 3px;
        width: 100%;
        background-color: #979797;
        border-radius: 3px;
        transition: 0.3s;
    }

    .page_header .page_header_logo {

        margin-left: 0px;

    }

    .page_header {
        justify-content: space-around;
    }

    .page_footer {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        row-gap: 20px;
        flex-direction: column-reverse;


    }


    .page_footer .privacy {
        display: inline;
        width: 100% !important;
        max-width: none;
        min-width: none;
    }

    td button {
        padding: 8px 9px;
        margin-right: 5px;
        outline: none;
        background-color: #f0efef;
        cursor: pointer;
        border-radius: var(--button-radius);
        border: 1px solid var(--main-border-color);
        width: 40px;
        overflow: hidden;
        font-size: 0;

    }

    td button:hover {
        background-color: #5f5f5f;
        color: #ffffff;
    }

    td button span {
        margin-right: 8px;
        font-size: 14px;
    }

    .page_header_account .user_avatar {display: none;}
    .page_header {
        justify-content:space-between;
    }

    th {
        font-weight: 200;
        word-break: normal;
        
    }

    table {
        font-size: smaller;
    }
    .rb_dialog {
        width: 95%;
    }
    .rb_dialog .dialog_content{
        height:70%;
    }

}