@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');

@import url('app-variables.css');


/* BASE */
::selection {
    background-color: #181a1b;
    color: #fff;
}

/*::placeholder {
    color: #BCBCBC
}*/


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #939393;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #939393;
}

*,
*::before,
*::after {
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    border-collapse: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
    /* height: 100%; */
}

    html.js-hidden-layout {
        overflow-y: hidden;
    }

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6667;
    background-color: #fff;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }

h1, h2, h3,
h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    line-height: inherit;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

button, input {
    box-shadow: none;
    outline: none !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

[type="button"], [role="button"] {
    -webkit-appearance: none;
    border-radius: 0;
}

.btn {
    padding: 8px 36px;
    border-radius: 8px;
    transition: .15s background-color ease, .15s color ease, .15s transform ease, .15s border-color ease;
    will-change: background-color, color, transform, border-color;
}

.btn-xs {
    padding: 6px 12px
}

.btn-sm {
    padding: 6px 16px !important
}

.btn-main {
    font-weight: 600;
}

.btn-white {
    background-color: var(--light-100)
}

    .btn-white:hover {
        background-color: var(--light-200)
    }

.btn-blue {
    background-color: var(--primary);
    color: #fff;
}

    .btn-blue:hover {
        background-color: var(--primary-darker);
        color: #fff;
    }

    .btn-blue.btn-bordered {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
    }

        .btn-blue.btn-bordered:hover {
            background-color: var(--primary);
            color: #fff;
        }

ul, ol, li {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

p {
    margin: 0
}

textarea {
    resize: none;
}

img[data-image-type="icon"] {
    width: 100%;
    height: auto;
    cursor: pointer
}

img[data-layout-type="cover-w"] {
    width: 100%;
    height: auto
}

img[data-layout-type="cover-h"] {
    width: auto;
    height: 100%
}

img[data-layout-type="cover-f"] {
    width: 100%;
    height: 100%;
    object-fit: cover
}

img[data-layout-type="contain-w"] {
    width: 100%;
    object-fit: contain
}

img[data-layout-type="contain-h"] {
    height: 100%;
    object-fit: contain
}

img[data-layout-type="contain-f"] {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.p10 {
    padding: 10px;
}

.glightbox-open {
    height: 100% !important;
}

.hide-scroll {
    overflow-y: hidden; /* Hide vertical scrollbar */
    overflow-x: hidden; /* Hide horizontal scrollbar */
}

body.hidescroll {
    overflow: hidden;
}

.invalid-feedback-custom {
    width: 100%;
    margin-top: 0.25rem;
    font-size: 1em;
    color: var(--bs-form-invalid-color);
}

.formHata {
    background: #e98484;
    padding: 10px 20px;
    color: #fff;
}

h2#swal2-title {
    font-size: 1.3em !important;
}

.swal2-icon {
    font-size: 0.8em !important;
}

.bg-grey {
    background: var(--light-100);
}

.bg-black-rounded {
    color: #fff !important;
    background: #333;
    border-radius: 20px;
    padding: 10px 21px !important;
}

.bg-green-rounded {
    color: #fff !important;
    background: #199f09;
    border-radius: 20px;
    padding: 10px 21px !important;
}

.form-invalid {
    color: #e33535;
    font-size: 12px;
    margin-left: 10px;
}
/* END BASE*/

.page-bayi .page-header {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: row;
    background-color: var(--ui-colors-default-header-color);
    height: 83px;
    z-index: 100;
    box-shadow: 0px 2px 7px -5px rgba(0, 0, 0, 0.75);
    transition: .3s transform ease-out;
    background: #fff;
}

    .page-bayi .page-header.desktop {
        padding: 10px 50px;
    }

    .page-bayi .page-header .flex-row {
        display: flex;
        margin-right: 20px;
    }

        .page-bayi .page-header .flex-row:last-child {
            margin-right: 0;
            margin-left: auto;
        }

        .page-bayi .page-header .flex-row.logo, .page-bayi .page-footer .flex-row.logo {
            position: relative;
            display: flex;
            align-items: center;
            width: auto;
            height: 60px;
            color: #fff;
            font-size: 13px;
        }

            .page-bayi .page-header .flex-row.logo img, .page-bayi .page-header .flex-row.logo a, .page-bayi .page-footer .flex-row.logo a {
                transition: .25s color ease;
                height: 100%;
            }

        .page-bayi .page-header .flex-row.header-router {
            margin-left: auto;
        }

            .page-bayi .page-header .flex-row.header-router .navbar-nav {
                align-items: center;
                display: flex;
                flex-direction: row;
            }

                .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item {
                    position: relative;
                    display: inline-block;
                    margin: 0 .6rem;
                }

                    .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item:hover .dropdown-menu {
                        display: block;
                        margin: 0 .9rem;
                        position: absolute;
                    }

                    .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-menu {
                        top: 35px;
                        left: -14px;
                        padding: 0;
                        background-color: #f8f8f8;
                        box-shadow: 0px 4px 12px rgba(9, 9, 9, .13);
                        min-width: 300px;
                        border: none;
                    }

                        .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-menu .sub-item {
                            position: relative
                        }

                            .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-menu .sub-item a {
                                display: block;
                                border-bottom: 1px solid #d5d8da;
                                -moz-transition: .2s color ease-in, .2s background-color ease-in;
                                -o-transition: .2s color ease-in, .2s background-color ease-in;
                                -webkit-transition: .2s color ease-in, .2s background-color ease-in;
                                transition: .2s color ease-in, .2s background-color ease-in;
                                line-height: 20px;
                                font-size: 13px;
                                font-weight: 500;
                                color: #00192F;
                                font-family: "Manrope", sans-serif;
                                padding: 15px;
                            }

                            .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-menu .sub-item:hover a {
                                color: #e74c3c;
                            }

                            .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-menu .sub-item:last-child a {
                                border-bottom: 0
                            }

                    .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-toggle {
                        position: relative;
                        font-size: 13px;
                        font-weight: 600;
                        color: #333;
                        padding: 15px 10px;
                        transition: .3s ease-in;
                        cursor: pointer;
                    }

                        .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-toggle:hover {
                            color: #e74c3c;
                        }

                        .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-toggle::after {
                            display: block;
                            position: absolute;
                            top: 0;
                            left: 0;
                            bottom: 0;
                            right: 0;
                            margin: auto;
                            width: 100%;
                            height: 1px;
                            content: '.';
                            color: transparent;
                            visibility: none;
                            opacity: 0;
                            z-index: -1;
                            transition: all .5s;
                        }

                        .page-bayi .page-header .flex-row.header-router .navbar-nav .route-item .dropdown-toggle:hover::after {
                            opacity: 1;
                            visibility: visible;
                            height: 100%;
                        }

        .page-bayi .page-header .flex-row.header-side-nav .nav-list {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 7px;
        }

        .page-bayi .page-header .flex-row.header-side-nav .nav-list span.uye-bilgi {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            font-size: 18px;
            font-weight: 700;
        }

            .page-bayi .page-header .flex-row.header-side-nav .nav-list span.uye-bilgi a {
                font-size: 16px;
                font-weight: 400;
            }

        .page-bayi .page-header .flex-row.header-side-nav .nav-item {
            display: flex;
            margin: 0 .33rem;
            align-items: center;
        }

            .page-bayi .page-header .flex-row.header-side-nav .nav-item img {
                margin-left: 30px;
            }

            .page-bayi .page-header .flex-row.header-side-nav .nav-item .nav-link:not(.no-border) {
                padding: 5px 20px;
                border: 2px solid #e20613;
                font-size: 13px;
                font-weight: 600;
                position: relative;
                -moz-transition: background-color .3s ease-in, color .3s ease-in;
                -o-transition: background-color .3s ease-in, color .3s ease-in;
                -webkit-transition: background-color .3s ease-in, color .3s ease-in;
                transition: background-color .3s ease-in, color .3s ease-in;
                color: #333;
                border-radius: 15px;
                -webkit-border-radius: 15px;
                will-change: background-color, color;
            }

                .page-bayi .page-header .flex-row.header-side-nav .nav-item .nav-link:not(.no-border):hover {
                    background-color: #e20613;
                    color: #fff
                }

            .page-bayi .page-header .flex-row.header-side-nav .nav-item.language {
                position: relative;
            }

                .page-bayi .page-header .flex-row.header-side-nav .nav-item.language > a {
                    width: auto;
                    height: 40px;
                    /* background-color: #fff; */
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    -webkit-box-pack: center;
                    -ms-flex-pack: center;
                    justify-content: center;
                    color: #707070;
                    font-size: 16px;
                }

                    .page-bayi .page-header .flex-row.header-side-nav .nav-item.language > a > span {
                        margin-right: 8px;
                    }

                        .page-bayi .page-header .flex-row.header-side-nav .nav-item.language > a > span img {
                            width: 21px;
                        }

                .page-bayi .page-header .flex-row.header-side-nav .nav-item.language .language-content {
                    position: absolute;
                    left: 0;
                    top: 100%;
                    width: 120px;
                    z-index: 10;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transform: translateY(15px);
                    transform: translateY(15px);
                    -webkit-transition: all 0.45s ease-in-out;
                    transition: all 0.45s ease-in-out;
                }

                .page-bayi .page-header .flex-row.header-side-nav .nav-item.language:hover .language-content {
                    opacity: 1;
                    visibility: visible;
                    -webkit-transform: translateY(0);
                    transform: translateY(0);
                }

                .page-bayi .page-header .flex-row.header-side-nav .nav-item.language .language-content ul {
                    list-style-type: none;
                    padding: 0;
                    margin: 0;
                    background: #fff;
                    padding: 0;
                    border-radius: 0;
                    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                }

                    .page-bayi .page-header .flex-row.header-side-nav .nav-item.language .language-content ul li a {
                        padding: 8px 8px;
                        display: -webkit-box;
                        display: -ms-flexbox;
                        display: flex;
                        -webkit-box-align: center;
                        -ms-flex-align: center;
                        align-items: center;
                        color: #707070;
                        font-size: 16px;
                    }

                    .page-bayi .page-header .flex-row.header-side-nav .nav-item.language .language-content ul li:nth-child(odd) a {
                        background-color: #F5F5F5;
                    }

                    .page-bayi .page-header .flex-row.header-side-nav .nav-item.language .language-content ul li img {
                        width: 24px;
                    }

                    .page-bayi .page-header .flex-row.header-side-nav .nav-item.language .language-content ul li a > span {
                        padding-left: 9px;
                    }

            .page-bayi .page-header .flex-row.header-side-nav .nav-item.social a {
                padding: 0 10px;
                font-size: 20px;
            }

            .page-bayi .page-header .flex-row.header-side-nav .nav-item.social {
                padding-left: 7px;
            }

            .page-bayi .page-header .flex-row.header-side-nav .nav-item.language {
                padding-left: 20px;
            }


/* Container */
.page-bayi .flex-center {
    height: calc(100vh - 83px);
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
}

.page-bayi .container .background {
    width: 100%;
    height: 100%;
    background: url('/images/bayi-bg.webp') center center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}




/* Card */
.page-bayi .container .card {
    width: 360px;
    max-width: 90%;
    padding: 28px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(2,6,23,0.6);
    border: 1px solid rgba(255,255,255,0.04);
}


    .page-bayi .container .card .brand {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 18px;
        text-align: center
    }

    .page-bayi .container .card .hint {
        font-size: 13px;
        text-align: center;
        margin-bottom: 18px
    }


    .page-bayi .container .card .form {
        display: flex;
        flex-direction: column;
        gap: 12px
    }

    .page-bayi .container .card label {
        font-size: 13px;
    }

    .page-bayi .container .card input[type="text"], input[type="password"] {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid rgb(187 187 187 / 58%);
        background: rgba(255,255,255,0.03);
        color: inherit;
        font-size: 15px;
        outline: none;
        transition: box-shadow .15s, border-color .15s;
    }

    .page-bayi .container .card input:focus {
        box-shadow: 0 6px 18px rgba(79,70,229,0.15);
        border-color: rgba(79,70,229,0.5)
    }


    .page-bayi .container .card .actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 6px
    }

    .page-bayi .container .card .button {
        appearance: none;
        border: 0;
        padding: 12px 14px;
        border-radius: 10px;
        background: var(--primary);
        color: white;
        font-weight: 600;
        cursor: pointer;
        font-size: 15px;
        transition: .3s;
    }

        .page-bayi .container .card .button:hover {
            background: var(--secondary);
            transition: .3s;
        }


    .page-bayi .container .card .small {
        font-size: 13px;
        color: rgba(230,238,248,0.7);
        text-align: center;
        margin-top: 8px
    }


.page-bayi .dashboard .background {
    width: 100%;
    height: 100%;
    background: url('/images/bayi-bg.webp') center center;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}

/* Container */
.page-bayi .dashboard .container {
    height: calc(100vh - 83px);
    display: flex;
    /* horizontal center */
    align-items: center;
    justify-content: flex-start;
}

    .page-bayi .dashboard .container .left {
        z-index: 10; /* width: 50%; */
    }

        .page-bayi .dashboard .container .left ul {
        }

            .page-bayi .dashboard .container .left ul li {
                width: 100%;
            }

                .page-bayi .dashboard .container .left ul li a {
                    color: rgb(255, 255, 255);
                    margin-top: 15px;
                    display: inline-block;
                    transition-duration: 0.5s;
                    padding: 10px 30px;
                    border-radius: 10px;
                    background: var(--primary);
                    width: 100%;
                    padding: 20px 30px;
                    font-size: 18px;
                }

                    .page-bayi .dashboard .container .left ul li a:hover {
                        transition-duration: 0.5s;
                        color: rgb(255, 255, 255);
                        background: var(--secondary);
                    }


                .page-bayi .dashboard .container .left ul li .geri {
                    background: #fff !important;
                    border: 1px solid var(--primary);
                    color: #222 !important;
                }

                    .page-bayi .dashboard .container .left ul li .geri:hover {
                        background: var(--secondary) !important;
                        border: 1px solid var(--secondary);
                        color: #fff !important;
                    }

                    .page-bayi .dashboard .container .left ul li .geri i {
                        padding-right: 30px;
                    }

.page-bayi .fiyatlandirma {
    padding-bottom: 100px;
}

.page-bayi .fiyatlandirma h2 {
    padding: 100px 0 30px 0;
}

.page-bayi .fiyatlandirma .section-content {
    display: flex;
    gap: 100px;
}

    .page-bayi .fiyatlandirma .section-content .item {
        width: 50%;
    }



        .page-bayi .fiyatlandirma .section-content .item .form-area h5 {
            padding: 10px;
            background: #343434;
            margin: 0 0 15px 0;
            color: #fff;
        }

        .page-bayi .fiyatlandirma .section-content .item .form-area .row {
            margin: 0 0 15px 0;
            background: #efefef;
            padding: 7px 0 7px 7px;
        }

            .page-bayi .fiyatlandirma .section-content .item .form-area .row.braun {
                background: #ed8f04;
                color: white;
            }

            .page-bayi .fiyatlandirma .section-content .item .form-area .row.red1 {
                background: #afe7b1;
                color: #222;
            }


            .page-bayi .fiyatlandirma .section-content .item .form-area .row.red2 {
                background: #ffab91;
                color: #222;
            }

            .page-bayi .fiyatlandirma .section-content .item .form-area .row.red3 {
                background: #ff2828;
                color: #fff;
            }

        .page-bayi .fiyatlandirma .section-content .item .form-area label {
            margin-top: 7px;
        }

        .page-bayi .fiyatlandirma .section-content .item .form-area .form-area i {
            font-size: 22px;
            position: absolute;
            right: 20px;
            top: 10px;
        }

        .page-bayi .fiyatlandirma .section-content .item .form-area h3 {
            padding: 10px;
            background: #ea2213;
            margin: 0 0 15px 0;
            color: #fff;
            font-size: 17px
        }
.page-bayi .formlar {
    padding: 0 2% 100px;
}
.page-bayi .formlar h2 {
    padding: 100px 0 30px 0;
}

.page-bayi .formlar section.page-content {
    font-size: 13px;
}
.page-bayi .formlar table.tasiyici {
    width: 100%;
}

.page-bayi .formlar table.tasiyici {
    border-collapse: collapse;
}

    .page-bayi .formlar table.tasiyici th {
        border: 1px solid #d0d0d0;
        text-align: center;
        padding: 10px;
    }

    .page-bayi .formlar table.tasiyici td {
        border: 1px solid #d0d0d0;
        text-align: center;
        padding: 20px;
    }

    .page-bayi .formlar table.tasiyici input, table.tasiyici select {
        border: 1px solid #d0d0d0;
        padding: 7px 15px;
        border-radius: 6px;
        width: 100%;
        transition: .3s;
    }
    .page-bayi .formlar table.tasiyici td .btn {
        border: 1px solid var(--primary);
        background: var(--primary);
        color: #fff;
        transition: .3s;
    }

    .page-bayi .formlar table.tasiyici td .btn:hover {
        border: 1px solid var(--secondary);
        background: var(--secondary);
        color:#fff;
        transition:.3s;
    }

    .page-bayi .formlar .detay table {
        margin: 20px 0 40px;
    }

        .page-bayi .formlar .detay table th {
            padding: 10px 0px;
            font-size: 16px;
            padding-right: 30px;
        }

        .page-bayi .formlar .detay table td {
            padding: 10px 20px;
            font-size: 16px;
        }

.page-siparis-durum .table th {
    font-weight: bold !important;
    background: #383838;
    text-align: center;
    color: #FFF
}

.page-siparis-durum .table-striped tbody tr:nth-of-type(odd), .page-siparis-durum .table-striped tbody tr {
    background-color: #FFF;
}

.page-siparis-durum .table {
    font-size: 12px;
}

.page-siparis-durum caption {
    caption-side: top;
}

.page-siparis-durum .helpBtn {
    display: none !important;
}

.page-siparis-durum table.durumTablo {
    margin-top: 30px;
    float: left;
}

    .page-siparis-durum table.durumTablo td {
        border: 1px solid #cacaca;
        padding: 10px;
        /* background:#ffe598;*/
        /*background:#98eaff;*/
    }

.page-siparis-durum .durumTablo a {
    color: #222;
}

    .page-siparis-durum .durumTablo a:hover {
        text-decoration: none;
    }




.page-siparis-durum table.yurtTablo {
    margin-top: 30px;
    float: right;
}

    .page-siparis-durum table.yurtTablo td {
        border: 1px solid #cacaca;
    }

        .page-siparis-durum table.yurtTablo td a {
            display: block;
            padding: 10px 30px;
            color: #222;
        }

            .page-siparis-durum table.yurtTablo td a:hover {
                text-decoration: none;
            }

        .page-siparis-durum table.yurtTablo td.active a {
            background: #3e3d3d !important;
            color: #FFF;
        }

@media only screen and (max-width: 1400px) {
    .page-siparis-durum .table {
        font-size: 12px;
    }
}