﻿/*********************--------------------------------------------------------------------------------------------*********************/
/***********************************************************     GENEL     *********************************************************/
/*********************--------------------------------------------------------------------------------------------*********************/
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,800,700,600,300&subset=latin,latin-ext");

html {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}

div, section, article, side, main, figure {
    box-sizing: border-box;
}

img {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a, a:hover {
    text-decoration: none;
}

button {
    border: none;
}

    button:focus {
        outline: none;
    }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1;
}

ol, ul, li {
    list-style: none;
    margin: 0;
    padding: 0
}

textarea:focus, input:focus {
    outline: none;
}

figure, p {
    margin-block-start: unset;
    margin-block-end: unset;
    margin-inline-start: unset;
    margin-inline-end: unset;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    background: transparent;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    background: transparent;
    opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    background: transparent;
    opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    background: transparent;
}

::-ms-input-placeholder { /* Microsoft Edge */
    background: transparent;
}

::placeholder { /* Most modern browsers support this now. */
    background: transparent;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input[type="radio"] {
    margin: 0;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
    box-sizing: border-box;
    line-height: 1;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.ccontainer {
}

.cheader {
}

.cbody {
    display: flex;
    width: 100%;
    height: 100%;
}

.cfooter {
}

.hide {
    display: none;
}

.mainPage {
    display: flex;
    width: 100%;
}

    .mainPage .leftSide {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mainPage .rightSide {
        background-image: url(/Images/Banner/Banner.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 50%;
        height: 100%;
       /* -webkit-clip-path: polygon(5% 5%, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(5% 5%, 100% 0, 100% 100%, 0 100%);*/
    }

.panel-body {
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
    width: 100%;
    height: fit-content;
    margin: 10px 20px;
    border-radius: 5px !important;
}

.panel-body-2 {
    height: fit-content;
    margin: 10px;
    width: auto;
    border: 1px solid #b0b0b0;
    padding: 10px;
    border-radius: 5px !important;
}
/*-- HEADER --*/
#header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    box-shadow: 0 0 30px 3px rgb(0 0 0 / 10%);
    margin-bottom: 15px;
}

.logo {
    height: 40px;
    display: flex;
}

.right_menu_container {
    display: flex;
    gap: 15px;
}

.right_menu_container_mobil {
    display: none;
    gap: 10px;
}

.hamburgermenu_header {
    margin: 10px 0;
    text-align: end;
}

.hamburgermenu_button,
.hamburgermenu_button_close {
    background: transparent;
}

.hamburgermenu_icon {
    font-size: 25px !important;
}

.hamburgermenu_content {
    background: #fff;
    width: 0;
    height: 0;
    position: fixed;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: auto;
    left: -100%;
    height: 100%;
}

    .hamburgermenu_content.open {
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        visibility: visible !important;
        opacity: 1 !important;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

.nav_auth_container {
    display: flex;
    gap: 10px;
    border: 1px solid #e31919;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    padding: 3px 10px;
}

    .nav_auth_container a, .nav_auth_container span {
        color: #6d6d6d;
    }

.lang_container {
    position: relative;
}

.langItem, .lang_box {
    border: 1px solid rgb(109 109 109 / 20%);
    border-radius: 50% !important;
    padding: 3px 6px;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 18%);
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.lang_list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.nav_menu_container {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .nav_menu_container a {
        color: #6d6d6d;
        font-size: 16px;
        font-weight: 500;
    }

        .nav_menu_container a:hover {
            color: #e31919;
        }
/*-- FOOTER --*/
#footer {
}

.egan_link_container {
    background: #000;
    text-align: center;
    padding: 3px;
}

.egan_link {
    color: #fff;
    font-size: 11px;
    font-weight: 500;
}
/*-- MODAL --*/
.modal-content {
    border-radius: 5px !important;
    background: rgb(255 255 255 / 92%);
}

.modal .modal-header {
    border: none;
}

    .modal .modal-header .close {
        position: absolute;
        top: -10px;
        right: -10px;
        color: #e31919;
        font-size: 18px;
        border-radius: 50% !important;
        background: #fff;
        padding: 5px;
        width: 30px;
        height: 30px;
        font-weight: 700;
        -webkit-box-shadow: -2px 2px 5px rgb(0 0 0 / 50%);
        box-shadow: -2px 2px 5px rgb(0 0 0 / 50%);
        opacity: 1;
    }

.modal_title {
    margin-bottom: 15px;
    font-size: 18px;
    color: #6f6f6f;
}

.custom-alert {
    padding: 15px;
    box-shadow: 4px 6px 8px 1px rgb(108 84 84 / 30%);
    border-radius: 5px !important;
    width: 350px;
    margin: 10px;
    font-weight: 600;
}

    .custom-alert.success {
        background: green;
        color: white;
    }

    .custom-alert.danger {
        background: red;
        color: white;
    }

.top-left {
    top: 2%;
    left: 2%;
}

.top-center {
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.top-right {
    top: 2%;
    right: 2%;
}

.center-left {
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
}

.center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.center-right {
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.bottom-left {
    bottom: 2%;
    left: 2%;
}

.bottom-center {
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
}

.bottom-right {
    bottom: 2%;
    right: 2%;
}
/*-- FORM --*/
.form-group {
    position: relative;
    border: 1px solid #d5d5d5;
    border-radius: 5px !important;
    padding: 6px 10px 3px;
    background: #fff;
    height: fit-content;
}

    .form-group label {
        position: absolute;
        top: -10px;
        left: 20px;
        z-index: 1;
        font-size: 15px;
    }

        .form-group label:after {
            content: " ";
            background-color: #fff;
            width: 100%;
            height: 6px;
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: -1;
        }

    .form-group input, .form-group select, .form-group textarea {
        border: none;
        padding: 0;
        background: #fff;
    }

    .form-group textarea {
        resize: vertical;
    }

    .form-group.submit {
        border: none;
        background: transparent;
        display: flex;
        justify-content: center;
        padding: 0;
    }

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background: transparent;
}

.form-confirm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .form-confirm a {
        color: #333;
        font-size: 16px;
        font-weight: 500;
    }

.submitbtn {
    color: #e31919;
    font-size: 18px;
    border-radius: 5px !important;
    background: #fff;
    padding: 5px 15px;
    font-weight: 700;
    -webkit-box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
}

    .submitbtn:hover {
        background: #e31919;
        color: #fff;
    }

.textbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    margin: 15px;
    border-radius: 5px !important;
    box-shadow: 0 0 15px 3px rgb(0 0 0 / 25%);
    gap: 15px;
}

    .textbox a {
        background: #e31919;
        color: #fff;
        padding: 10px;
        border-radius: 5px !important;
        font-size: 18px;
        font-weight: 600;
        box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
    }
/*-- GIRISKAYIT --*/
.kayit,
.giris {
    font-size: 12px;
    color: #e31919;
}
/*-- NAVTABS --*/
.custom-tabs {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin-top: 30px;
}

.custom-nav-tabs {
    border: 1px solid #d5d5d5;
    border-radius: 5px !important;
    padding: 10px;
}

.custom-nav-tabs-header {
    display: flex;
    margin-bottom: 10px;
    gap: 25px;
}

.custom-nav-tab-link {
    color: #6d6d6d;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 15px;
    text-align: center;
    cursor: pointer;
}

    .custom-nav-tab-link.active {
        background: #e31919;
        color: #fff;
        border-radius: 5px !important;
        padding: 10px;
        font-weight: 600;
    }

.custom-nav-contents {
    padding: 10px;
}
/*-- SELECT --*/
.custom_select {
    margin-bottom: 15px;
    position: relative;
    border: 1px solid #d5d5d5;
    border-radius: 5px !important;
    padding: 6px 10px 3px;
    background: #fff;
    height: fit-content;
}

.custom_select_label {
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 1;
    font-size: 15px;
}

    .custom_select_label:after {
        content: " ";
        background-color: #fff;
        width: 100%;
        height: 6px;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
    }

.custom_select_input {
    display: flex;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    align-items: center;
    height: 34px;
}

.custom_select_title {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    line-height: 1;
}

.custom_select_arrow {
    font-size: 18px;
    color: #d5d5d5;
}

.custom_select_options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #6d6d6d;
    border: 1px solid #d5d5d5;
    border-radius: 5px !important;
    margin-top: 3px;
    z-index: 9;
}

.custom_select_option {
    cursor: pointer;
    padding: 10px;
}

    .custom_select_option:last-child {
        border-bottom-left-radius: 5px !important;
        border-bottom-right-radius: 5px !important;
    }

    .custom_select_option:first-child {
        border-top-left-radius: 5px !important;
        border-top-right-radius: 5px !important;
    }

    .custom_select_option:hover {
        background: #f5f5f5;
        color: #6d6d6d;
    }

    .custom_select_option.selected {
        background: #e31919;
        color: #fff;
    }

.rotate180 {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
/*-- CUSTOMS --*/
.teklifgrid {
    display: grid;
    grid-template-columns: 4fr 2fr 6fr;
}

    .teklifgrid > div:first-child, .teklifgrid > div:last-child {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
    }

.teklifIleri,
.teklifEkle {
    text-align: end;
    margin: 10px 0;
}

.teklifyer {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
}

.teklifBtns {
    display: flex;
    justify-content: space-between;
}

.custom-btn {
    background: #e31919;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px !important;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 0 10px 1px rgb(0 0 0 / 25%);
}

    .custom-btn:hover {
        color: #fff;
    }

.box-orders {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.box-order {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #d5d5d5;
    padding: 10px;
    border-radius: 5px !important;
}

.box {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 20px;
}

.box-inside-1 {
    text-align: center;
    position: relative;
}

.box-image {
    border: 1px solid #d5d5d5;
    border-radius: 5px !important;
    height: 190px;
}

    .box-image img {
        border-radius: 5px !important;
    }

.box-inside-2 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.box-features {
    display: flex;
    gap: 10px;
}

    .box-features > span:first-child {
        font-weight: 600;
    }

.box-cheapest {
    position: absolute;
    top: -25px;
    left: -15px;
}

    .box-cheapest > span {
        padding: 4px;
        background: #2cc12c;
        color: #fff;
        display: flex;
        border-radius: 5px !important;
    }

        .box-cheapest > span > span {
            border: 2px dashed #fff;
            padding: 3px;
            font-size: 12px;
            font-weight: 600;
        }

.box-warn {
    background: red;
    color: #fff;
    font-weight: 800;
    padding: 3px;
    width: fit-content;
}

.box-detail {
    margin-top: 15px;
}

.detail-title {
    padding: 3px 0;
    cursor: pointer;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .detail-content > div:first-child {
        font-size: 16px;
        font-weight: 600;
    }

    .detail-content > div:last-child {
        border-top: 1px solid #6f6f6f;
        padding: 5px 0;
    }

.price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 20px;
    font-weight: 500;
}

.adresler {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
}

.adresdouble {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.adrestriple {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.adresquaternary {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.adresquintet {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 15px;
}

.line_header {
    display: flex;
    width: 100%;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #6f6f6f;
}

    .line_header:before {
        content: "";
        flex: 1 1;
        border-bottom: 1px solid #6f6f6f;
        margin: auto;
        margin-right: 25px;
    }

    .line_header:after {
        content: "";
        flex: 1 1;
        border-bottom: 1px solid #6f6f6f;
        margin: auto;
        margin-left: 25px;
    }

.gonderici, .alici {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.telefon {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 2fr;
}

.box-payments {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.box-payment {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    border: 1px solid #d5d5d5;
    padding: 10px;
    border-radius: 5px !important;
}

.box-features-payment {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    border-left: 1px solid #d5d5d5;
    padding-left: 5px;
}

.box-feature-payment {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-features-payment .box-feature-payment:not(:last-child) {
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 5px;
}

.box-feature-payment span:first-child {
    font-weight: 600;
}

.box-ccard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.ccard-form {
}

.ccard-container {
    display: flex;
    align-items: center;
}

.ccard {
    width: 400px;
    background-image: linear-gradient(154deg,#eeeeee,#949494,#727272);
    border-radius: 20px !important;
    height: 200px;
    box-shadow: 3px 3px 10px 1px rgb(0 0 0 / 25%);
}

.ccard-front, .ccard-back {
    padding: 10px 20px;
    cursor: pointer;
}
/*.turn {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}*/
.card_imgs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.card_img {
    width: 40px;
    height: 40px;
}

.card_info {
    color: #ffffff;
    font-size: 20px;
    margin-top: 5px;
}

    .card_info:last-child {
        margin-top: 15px;
    }

.ccard-back_black {
    background: #000;
    height: 35px;
    margin: 20px -20px;
}

.ccard-back-info {
    display: flex;
    margin-top: 10px;
    width: 100%;
}

.ccard-back-lines {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ccard-back-lightline {
    display: flex;
    height: 3px;
    background: #f2f2f2;
}

.ccard-back-darkline {
    display: flex;
    height: 3px;
    background: #47525d;
}

.ccard-back-cvc {
    display: flex;
    align-items: center;
    padding: 0 5px;
    width: 35px;
    background: #f2f2f2;
}

@media only screen and (max-width: 600px) {
    .mainPage {
        flex-direction: column;
    }

        .mainPage .leftSide, .mainPage .rightSide {
            width: 100%;
        }

    .teklifgrid, .teklifyer, .box-orders, .box, .adresler, .box-payments, .box-ccard {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .adresdouble, .adrestriple, .adresquaternary, .adresquintet {
        display: flex;
        flex-direction: column;
        gap: unset;
    }

    .right_menu_container {
        display: none;
    }

    .right_menu_container_mobil {
        display: flex;
    }

    .nav_auth_container {
        padding: 10px;
    }

    .nav_menu_container {
        flex-direction: column;
    }

    .textbox span {
        font-size: 15px !important;
    }
}
