@font-face {
    font-family: 'Gilroy';
    src: url('font/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'Gilroy Bold';
    src: url('font/Gilroy-Bold.ttf') format('truetype');
    font-weight: 700;
}

:root {
    --ts-flag-width: 20px;
    --ts-flag-height: 16px;
    --ts-flag-border-radius: 100%;
    --ts-flag-border-color: rgba(225, 227, 229, 0.50);
    --theme-backgorund: #E22822;
    --white: #fff;
    --black: #000;
    --theme-black: #0b0b0b;
}

*, ::after, ::before {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    font-size: 100%;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    scroll-behavior: smooth
}

html, * {
    scrollbar-color: #000 #f8f9f9;
    scrollbar-width: thin;
}

img, video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: middle;
}

body {
    font-family: Gilroy, Arial, sans-serif;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Gilroy Bold, Arial, sans-serif;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
    outline: 0;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
}

b, strong {
    font-weight: bolder;
}

code, kbd, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button, input {
    overflow: visible;
}

button, select {
    text-transform: none;
    cursor: pointer;
}

button, [type="button"], [type="reset"], [type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    outline: 0;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"], [type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

.flag {
    display: inline-block;
    flex-basis: var(--ts-flag-width);
    width: var(--ts-flag-width);
    min-width: var(--ts-flag-width);
    height: var(--ts-flag-height);
    border: .5px solid var(--ts-flag-border-color);
    margin: 0 !important;
    vertical-align: middle;
    object-fit: cover;
}

.top-menu {
    background-color: var(--theme-backgorund);
}

.sign-in-ul {
    & li {
        display: inline-block;
    }

    & .sign-in {
        background-color: #490c0c66;
        border-radius: 5px;
        padding: 5px 10px;
        letter-spacing: .5px;

        &:hover {
            background-color: var(--theme-black);
        }
    }
}

.logo-img {
    & a img {
        max-height: 50px;
    }
}

#footer {
    display: block;
    position: relative;
    background-color: #181818;
    font-size: 14px;
    line-height: 32px;
    font-weight: 400;
    font-family: inherit;

    & .container
}

.lozad {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    height: 100vh;
}

.lozad[data-loaded="true"] {
    opacity: 1;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.productImage {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb-item a h1, .breadcrumb-item a {
    line-height: 21px;
    display: inline;
    color: #000;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #000;
    padding: 0 5px;
}

.breadcrumb-item:first-child::before {
    content: "";
    color: #000;
}

.breadcrumb-content {
    transition: all 0.3s ease-in-out 0s;
    width: 100%;
    border-top: 1px solid #000;
    border-image: initial;
    border-bottom: 1px solid #000;
}

.btn-inverted {
    display: inline-block;
    font-family: inherit;
    border-radius: .42rem .42rem .42rem .42rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-decoration: none;
    outline: 0;
    padding: 12px 18px;
    position: relative;
    text-transform: uppercase;
    background-color: #E22822;
    border-color: #E22822;
    border-width: 1px;
    border-style: solid;
    color: #fff;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-bottom: 6px;
    line-height: 14px;
    cursor: pointer;

    &:hover {
        background-color: #0333e8;
        border-color: #0333e8;
        color: #fff;
        text-decoration: none;
    }
}

.blog-img:hover {
    transition: all ease .3s;

    & img {
        transform: scale(1.06);
    }
}

.loader {
    width: 60px;
    aspect-ratio: 2;
    --_g: no-repeat radial-gradient(circle closest-side, #000 90%, #0000);
    background: var(--_g) 0 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
    background-size: calc(100% / 3) 50%;
    animation: l3 1s infinite linear;
}

.text-body {
    color: #162a4c;
    font-size: 18px;
}

.light {
    & .nice-select {
        -webkit-tap-highlight-color: transparent;
        border-radius: 5px;
        box-sizing: border-box;
        clear: both;
        cursor: pointer;
        display: block;
        float: right;
        font-family: inherit;
        font-size: 12px;
        font-weight: normal;
        height: 30px;
        outline: none;
        padding-left: 18px;
        padding-right: 30px;
        position: relative;
        text-align: left !important;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        white-space: nowrap;
        width: 120px;
        margin-left: 5px;

        & .current {
            line-height: 30px;
            color: #000;
        }

        & a {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        & #langOption {
            box-shadow: 0 0 0 1px rgba(0, 0, 0, .4);
            background: #fff;
        }
    }

    &.dark {
        & #langOption {
            background: rgb(52 55 74 / var(--tw-border-opacity));
        }

        & .nice-select {
            & .current {
                line-height: 30px;
                color: #fff;
            }
        }

        & .nice-select .option {
            color: #fff;
        }

        & .nice-select .option:hover {
            color: #000;
        }

        .nice-select.open .list {
            border: 1px solid #d6d6d6;
        }

        & .breadcrumb-item a h1, .breadcrumb-item a, & .breadcrumb-item + .breadcrumb-item::before {
            color: #fff !important;
        }

        & .loader {
            --_g: no-repeat radial-gradient(circle closest-side, red 90%, transparent);
        }

        & .text-body {
            color: #fff;
        }

        @media (max-width: 768px) {
            .labelFixed {
                background: #000 !important;
            }
        }
    }
}

.float-wp {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 80px;
    right: 30px;
    background-color: #fff;
    color: #FFF;
    text-align: center;
    font-size: 38px;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.15) 0 3px 12px;
    border-radius: 50%;

    & i {
        color: #25d366;
    }
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

.text-uppercase {
    text-transform: uppercase;
}

.iti {
    width: 100%;
}

.text-danger {
    color: #E22822;
}

.responseModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 9999;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center;
    display: none;

    &::after {
        content: "";
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.05em;
    }

    & #messageContainer {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        z-index: 2;
        max-width: 500px;
        box-sizing: border-box;
        width: 90%;
        background: #fff;
        padding: 15px 30px;
        -webkit-box-shadow: 0 0 10px #000;
        -moz-box-shadow: 0 0 10px #000;
        -o-box-shadow: 0 0 10px #000;
        -ms-box-shadow: 0 0 10px #000;
        box-shadow: 0 0 10px #000;
        text-align: left;

        & #closeModal {
            position: absolute;
            top: -10px;
            right: -10px;
            border-radius: 100%;
            background: #000;
            color: #fff;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }

        & span {
            font-size: 16px;
            text-align: center;
            display: inline-block;
            width: 100%;
        }
    }
}

.fs-13 {
    font-size: 13px;
}

.fs-16 {
    font-size: 16px;
}

.gap-4 {
    gap: 1.5rem;
}

.contact-features {
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
}

@keyframes l3 {
    20% {
        background-position: 0% 0%, 50% 50%, 100% 50%
    }

    40% {
        background-position: 0% 100%, 50% 0%, 100% 50%
    }

    60% {
        background-position: 0% 50%, 50% 100%, 100% 0%
    }

    80% {
        background-position: 0% 50%, 50% 50%, 100% 100%
    }
}

.form-check-input {
    width: 1.3em;
    height: 1.3em;
    margin-top: .1em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(0, 0, 0, 0.25);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
    -webkit-transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    cursor: pointer;

    &:checked[type="checkbox"] {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
        background-color: #E22822;
        border-color: #E22822;
    }
}

.bg-dark-alfa-50:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(34, 34, 34, .5);
}

.page-section, .small-section {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 140px 0;
}

.bg-scroll {
    background-attachment: scroll !important;
    background-position: center center !important;
}

#menuTheme {
    li {
        a {
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            margin-top: 0;
            margin-bottom: 0;
            font-size: 12px;
            font-family: Gilroy Bold, Arial, serif;
            @media (max-width: 768px) {
                &.hidden {
                    display: block;
                    border: 1px solid;
                }
            }
        }
    }

    & li.submenu-item ul.submenu li {
        a {
            font-weight: normal;
            letter-spacing: 0.5px;
        }
    }
}

.div-block-383 {
    display: flex;
    justify-content: center;
    @media (max-width: 768px) {
        display: block;
    }

    & .div-block-269.uygulamalar {
        border-right: 1px #f5f7fa;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        margin-right: 0;
        padding-top: 30px;
        padding-right: 34px;
        display: flex;
        width: 291px;
        height: 200px;
        @media (max-width: 768px) {
            justify-content: center;
            align-items: flex-start;
            width: 100%;
            margin-bottom: 20px;
            padding-right: 0;
        }

        & .referans-h-v3 {
            color: #162a4c;
            text-align: center;
            letter-spacing: 0;
            justify-content: center;
            align-items: center;
            margin-top: 0;
            margin-bottom: 0;
            font-size: 40px;
            font-weight: 700;
            line-height: 40px;
            display: flex;
            position: static;
            @media (max-width: 768px) {
                text-align: center;
                letter-spacing: -.02em;
                justify-content: flex-start;
                align-items: center;
                font-size: 32px;
            }
        }

        & .paragraph-6-v3 {
            color: #162a4cd9;
            text-align: left;
            letter-spacing: -.02em;
            margin-top: 20px;
            margin-bottom: 30px;
            padding-top: 0;
            padding-left: 0;
            padding-right: 25px;
            font-family: Sf Pro Display, Tahoma, sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 24px;
            @media (max-width: 768px) {
                font-size: 17px;
            }
        }
    }

    & .div-block-213-v3 {
        grid-column-gap: 15px;
        grid-row-gap: 15px;
        flex-flow: column;
        grid-template-rows: auto auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-auto-columns: 1fr;
        justify-content: center;
        align-items: stretch;
        display: flex;
        @media (max-width: 768px) {
            grid-column-gap: 16px;
            grid-row-gap: 16px;
        }

        & .div-block-270 {
            grid-column-gap: 16px;
            grid-row-gap: 16px;
            justify-content: space-between;
            align-items: center;
            display: flex;
            margin-bottom: 15px;
            @media (max-width: 768px) {
                flex-flow: column;
                justify-content: space-between;
                align-items: stretch; .link-block-13, .link-block-14, .link-block-15 {
                justify-content: center;
                display: flex;
            }
            }

            .link-block-13, .link-block-14, .link-block-15 {
                text-decoration: none;
                max-width: 100%;
            }

            @media (max-width: 991px) {
                .link-block-13 {
                    object-fit: fill;
                    flex-direction: column;
                    align-items: center;
                    width: 100%;
                    display: flex;
                    position: static;
                }
            }
        }

        & .div-block-39-v2 {
            box-shadow: none;
            mix-blend-mode: normal;
            background-color: #fff;
            border: 1px solid #f4f5ff;
            border-radius: 5px;
            flex-wrap: wrap;
            grid-template-rows: auto auto;
            grid-template-columns: 1fr 1fr;
            grid-auto-columns: 1fr;
            justify-content: center;
            align-items: flex-start;
            width: 275px;
            padding: 25px 25px 40px;
            transition: all .2s;
            display: block;

            &:hover {
                mix-blend-mode: normal;
                background-color: #f8fbff;
                border-style: solid;
                border-color: #e3eaff;
                transform: scale(1.02);
                box-shadow: 0 2px 16px 2px #dde4ff33;
            }

            @media (max-width: 768px) {
                .div-block-39-v2 {
                    box-shadow: none;
                    border-style: solid;
                    border-color: #e3eaff;
                    width: 100%;
                    margin-top: 0;
                    margin-bottom: 0;
                    padding: 10%;
                }
            }

            @media (max-width: 991px) {
                align-self: auto;
                width: 100%;
                margin-bottom: 25px;
                box-shadow: 0 10px 20px 1px #94949421;
            }
        }

        & .div-block-40-v3 {
            grid-column-gap: 17px;
            grid-row-gap: 17px;
            text-align: center;
            justify-content: flex-start;
            align-items: center;
            height: 60px;
            display: flex;
            @media (max-width: 768px) {
                border-bottom: 1px solid #e3eaff;
            }
        }

        & .paragraph-8-v3 {
            color: #162a4ccc;
            text-align: left;
            letter-spacing: -.02em;
            margin-top: 20px;
            margin-bottom: 30px;
            font-family: Gilrow web, sans-serif;
            font-size: 17px;
            font-weight: 400;
            line-height: 22px;
            @media screen and (max-width: 768px) {
                font-size: 17px;
            }
        }

        & .link-v3-1 {
            color: #162a4ca6;
            text-align: left;
            letter-spacing: 1px;
            text-transform: uppercase;
            justify-content: flex-start;
            align-items: center;
            font-family: Gilroy Web, Arial, sans-serif;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all .25s;
            display: inline;
            @media (max-width: 768px) {
                .link-v3-1 {
                    font-size: 13px;
                }
            }
        }
    }
}

.foot-img {
    height: 42px !important;
}

.image-24 {
    margin-bottom: 5px;
    margin-right: 0;
}

.link-block-7, .link-block-8, .link-block-9, .link-block-10 {
    margin-right: 20px;
}

#priceSelect {
    font-weight: 500;
    background-color: #fff;
    height: 30px;
    min-width: 100px;
    border: 2px solid #000;
    border-radius: 10px;
    margin: 0 10px;
}

.supPriceText {
    text-transform: lowercase;
}

.blog-list-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    align-self: auto;
    width: 100%;
    height: 75px;
    margin: 5px 0 15px;
    font-size: 17px;
    font-weight: 300;
    line-height: 24px;
    overflow: hidden;
    color: #000c;
}

.light.dark {
    & .foot-svg {
        & path {
            fill: #fff;
        }

        &.huawei {
            & path {
                fill: none;
                stroke: #fff;
            }
        }

        & rect {
            stroke: #fff;
        }
    }

    & .fot-social {
        gap: 10px;

        & svg {
            g, path {
                fill: #fff;
            }
        }
    }
}

#footIso {
    gap: 10px;

    & img {
        width: 52px !important;
        object-fit: contain;
    }
}

.dark .dark\:hover\:text-primary:hover {
    color: #eb0404 !important;
}

.net-ref img {
    object-fit: contain;
}

.sms_onay {
    color: #000;
    font-weight: 500;
    width: 50px;
    float: left;
    font-size: 20px;
    text-align: center;
    -webkit-appearance: none;
    padding: 0;
    margin-left: 10px;
    caret-color: transparent;
    height: 40px;
    border: 1px solid #d6d6d6;
}

.blog-title {
    letter-spacing: -.02em;
    text-decoration-skip-ink: auto;
    object-position: 50% 50%;
    justify-content: flex-start;
    align-items: flex-start;
    height: 62px;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-top: 5px;
    padding-right: 50px;
    font-size: 26px;
    line-height: 28px;
    transition: all .25s;
    display: inline-flex;
    overflow: auto;
}

.blog-show-more {
    font-size: 14px;
    color: #e22822;
    font-family: "Gilroy Bold", Arial, serif;
    cursor: pointer;
    transition: all .25s;

    &:hover {
        transform: translate(6px) scale(1.02);
    }
}

.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}

.breadcrumb li::after {
    content: ">";
    margin-left: 0.5rem;
}

.breadcrumb li:last-child::after {
    content: "";
}

.text-red {
    color: #ff0000;
}

.mobil-app-link {
    max-width: 160px;
    width: 160px;
}

.lg\:w-10\/12 {
    width: 83.333333%;
}

.text-right {
    text-align: right;
}

@media (min-width: 992px) {
    a.hidden.rounded-md.bg-primary.py-\[10px\].px-\[30px\].text-base.font-medium.text-white.hover\:bg-opacity-90.sm\:inline-block {
        padding-right: 10px;
        padding-left: 10px;
    }

    .desk-none {
        display: none;
    }

    .lg-pb-65px {
        padding-bottom: 65px;
    }

    .net-ref img {
        height: 135px;
    }
}

@media (max-width: 991px) {
    .mbl-fs-13 {
        font-size: 13px!important;
    }

    .menu-wrapper {
        width: 100%;
        position: fixed;
        height: 100%;
        transform: translateX(-100%);
        display: block;
        overflow: hidden auto;
        transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
        left: 0;
        top: 0;
        margin: 0;
        z-index: 99;
    }

    .menu-wrapper:not(.hidden) {
        transform: translateX(0);
    }

    .submenu {
        padding-left: 20px;
    }

    nav#menuTheme {
        display: flex;
        justify-content: left;
        padding: 0 40px;

        & ul {
            width: 100%;

            & li a {
                display: flex;
                justify-content: space-between;

                & span {
                    width: 50%;
                    display: flex;
                    justify-content: end;
                    height: 100%;
                }
            }
        }
    }

    .mobileMenu {
        text-align: center;
    }

    #loginMbl {
        border: 1px solid #fff;
    }

    .sm-justify-center {
        display: flex;
    }

    #footIso, .sm-justify-center {
        justify-content: center;
    }

    .blog-title {
        height: auto;
        font-size: 26px;
    }

    .blog-list-text {
        width: 100%;
        height: auto;
        margin-top: 5px;
        font-size: 16px;
        font-weight: 300;
        line-height: 22px;
    }
}

@media (max-width: 768px) {
    .net-ref img {
        height: 65px;
    }

    .sm\:pt-\[100px\] {
        padding-top: 100px;
    }

    .sm\:pt-\[40px\] {
        padding-top: 100px;
    }

    .sm\:pt-\[0\] {
        padding-top: 0;
    }

    .sm\:px-\[0\] {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .google-map > iframe {
        height: 300px !important;
    }

    .labelFixed {
        position: fixed;
        height: 50px;
        width: 50px;
        left: 30px;
        bottom: 50px;
        z-index: 999;
        border-radius: 100%;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    }

    .mb-text-center {
        text-align: center;
    }

    .mb-none {
        display: none;
    }
}

#hata_mesaji_text {
    background: #e22822;
    color: #fff;
    display: block;
    padding: 10px 20px;
}

.ilk-kod {
    font-family: "Gilroy Bold", Arial, serif;
}

#hata_mesaji_kapat {
    position: absolute;
    right: 10px;
    top: 7px;
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid;
    border-radius: 100%;
}