body {
    line-height: 20px;
}


.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y) * -1);
    margin-right: calc(var(--bs-gutter-x) * -.5);
    margin-left: calc(var(--bs-gutter-x) * -.5)
}

.row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y)
}

.col {
    flex: 1 0 0%
}

.row-cols-auto > * {
    flex: 0 0 auto;
    width: auto
}

.row-cols-1 > * {
    flex: 0 0 auto;
    width: 100%
}

.row-cols-2 > * {
    flex: 0 0 auto;
    width: 50%
}

.row-cols-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%
}

.row-cols-4 > * {
    flex: 0 0 auto;
    width: 25%
}

.row-cols-5 > * {
    flex: 0 0 auto;
    width: 20%
}

.row-cols-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%
}

@media (min-width: 576px) {
    .col-sm {
        flex: 1 0 0%
    }

    .row-cols-sm-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-sm-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-sm-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-sm-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-sm-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-sm-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-sm-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 768px) {
    .col-md {
        flex: 1 0 0%
    }

    .row-cols-md-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-md-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-md-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-md-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-md-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-md-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-md-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        flex: 1 0 0%
    }

    .row-cols-lg-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-lg-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-lg-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-lg-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-lg-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-lg-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        flex: 1 0 0%
    }

    .row-cols-xl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

@media (min-width: 1400px) {
    .col-xxl {
        flex: 1 0 0%
    }

    .row-cols-xxl-auto > * {
        flex: 0 0 auto;
        width: auto
    }

    .row-cols-xxl-1 > * {
        flex: 0 0 auto;
        width: 100%
    }

    .row-cols-xxl-2 > * {
        flex: 0 0 auto;
        width: 50%
    }

    .row-cols-xxl-3 > * {
        flex: 0 0 auto;
        width: 33.3333333333%
    }

    .row-cols-xxl-4 > * {
        flex: 0 0 auto;
        width: 25%
    }

    .row-cols-xxl-5 > * {
        flex: 0 0 auto;
        width: 20%
    }

    .row-cols-xxl-6 > * {
        flex: 0 0 auto;
        width: 16.6666666667%
    }
}

.col-auto {
    flex: 0 0 auto;
    width: auto
}

.col-1 {
    flex: 0 0 auto;
    width: 8.33333333%
}

.col-2 {
    flex: 0 0 auto;
    width: 16.66666667%
}

.col-3 {
    flex: 0 0 auto;
    width: 25%
}

.col-4 {
    flex: 0 0 auto;
    width: 33.33333333%
}

.col-5 {
    flex: 0 0 auto;
    width: 41.66666667%
}

.col-6 {
    flex: 0 0 auto;
    width: 50%
}

.col-7 {
    flex: 0 0 auto;
    width: 58.33333333%
}

.col-8 {
    flex: 0 0 auto;
    width: 66.66666667%
}

.col-9 {
    flex: 0 0 auto;
    width: 75%
}

.col-10 {
    flex: 0 0 auto;
    width: 83.33333333%
}

.col-11 {
    flex: 0 0 auto;
    width: 91.66666667%
}

.col-12 {
    flex: 0 0 auto;
    width: 100%
}

.offset-1 {
    margin-left: 8.33333333%
}

.offset-2 {
    margin-left: 16.66666667%
}

.offset-3 {
    margin-left: 25%
}

.offset-4 {
    margin-left: 33.33333333%
}

.offset-5 {
    margin-left: 41.66666667%
}

.offset-6 {
    margin-left: 50%
}

.offset-7 {
    margin-left: 58.33333333%
}

.offset-8 {
    margin-left: 66.66666667%
}

.offset-9 {
    margin-left: 75%
}

.offset-10 {
    margin-left: 83.33333333%
}

.offset-11 {
    margin-left: 91.66666667%
}

.g-0, .gx-0 {
    --bs-gutter-x: 0
}

.g-0, .gy-0 {
    --bs-gutter-y: 0
}

.g-1, .gx-1 {
    --bs-gutter-x: 0.25rem
}

.g-1, .gy-1 {
    --bs-gutter-y: 0.25rem
}

.g-2, .gx-2 {
    --bs-gutter-x: 0.5rem
}

.g-2, .gy-2 {
    --bs-gutter-y: 0.5rem
}

.g-3, .gx-3 {
    --bs-gutter-x: 1rem
}

.g-3, .gy-3 {
    --bs-gutter-y: 1rem
}

.g-4, .gx-4 {
    --bs-gutter-x: 1.5rem
}

.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem
}

.g-5, .gx-5 {
    --bs-gutter-x: 3rem
}

.g-5, .gy-5 {
    --bs-gutter-y: 3rem
}

@media (min-width: 576px) {
    .col-sm-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-sm-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-sm-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-sm-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-sm-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-sm-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-sm-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-sm-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-sm-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-sm-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-sm-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-sm-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.33333333%
    }

    .offset-sm-2 {
        margin-left: 16.66666667%
    }

    .offset-sm-3 {
        margin-left: 25%
    }

    .offset-sm-4 {
        margin-left: 33.33333333%
    }

    .offset-sm-5 {
        margin-left: 41.66666667%
    }

    .offset-sm-6 {
        margin-left: 50%
    }

    .offset-sm-7 {
        margin-left: 58.33333333%
    }

    .offset-sm-8 {
        margin-left: 66.66666667%
    }

    .offset-sm-9 {
        margin-left: 75%
    }

    .offset-sm-10 {
        margin-left: 83.33333333%
    }

    .offset-sm-11 {
        margin-left: 91.66666667%
    }

    .g-sm-0, .gx-sm-0 {
        --bs-gutter-x: 0
    }

    .g-sm-0, .gy-sm-0 {
        --bs-gutter-y: 0
    }

    .g-sm-1, .gx-sm-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-sm-1, .gy-sm-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-sm-2, .gx-sm-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-sm-2, .gy-sm-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-sm-3, .gx-sm-3 {
        --bs-gutter-x: 1rem
    }

    .g-sm-3, .gy-sm-3 {
        --bs-gutter-y: 1rem
    }

    .g-sm-4, .gx-sm-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-sm-4, .gy-sm-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-sm-5, .gx-sm-5 {
        --bs-gutter-x: 3rem
    }

    .g-sm-5, .gy-sm-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 768px) {
    .col-md-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-md-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-md-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-md-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-md-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-md-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-md-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-md-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-md-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-md-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-md-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-md-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.33333333%
    }

    .offset-md-2 {
        margin-left: 16.66666667%
    }

    .offset-md-3 {
        margin-left: 25%
    }

    .offset-md-4 {
        margin-left: 33.33333333%
    }

    .offset-md-5 {
        margin-left: 41.66666667%
    }

    .offset-md-6 {
        margin-left: 50%
    }

    .offset-md-7 {
        margin-left: 58.33333333%
    }

    .offset-md-8 {
        margin-left: 66.66666667%
    }

    .offset-md-9 {
        margin-left: 75%
    }

    .offset-md-10 {
        margin-left: 83.33333333%
    }

    .offset-md-11 {
        margin-left: 91.66666667%
    }

    .g-md-0, .gx-md-0 {
        --bs-gutter-x: 0
    }

    .g-md-0, .gy-md-0 {
        --bs-gutter-y: 0
    }

    .g-md-1, .gx-md-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-md-1, .gy-md-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-md-2, .gx-md-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-md-2, .gy-md-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-md-3, .gx-md-3 {
        --bs-gutter-x: 1rem
    }

    .g-md-3, .gy-md-3 {
        --bs-gutter-y: 1rem
    }

    .g-md-4, .gx-md-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-md-4, .gy-md-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-md-5, .gx-md-5 {
        --bs-gutter-x: 3rem
    }

    .g-md-5, .gy-md-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 992px) {
    .col-lg-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-lg-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-lg-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-lg-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-lg-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-lg-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-lg-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-lg-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-lg-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-lg-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.33333333%
    }

    .offset-lg-2 {
        margin-left: 16.66666667%
    }

    .offset-lg-3 {
        margin-left: 25%
    }

    .offset-lg-4 {
        margin-left: 33.33333333%
    }

    .offset-lg-5 {
        margin-left: 41.66666667%
    }

    .offset-lg-6 {
        margin-left: 50%
    }

    .offset-lg-7 {
        margin-left: 58.33333333%
    }

    .offset-lg-8 {
        margin-left: 66.66666667%
    }

    .offset-lg-9 {
        margin-left: 75%
    }

    .offset-lg-10 {
        margin-left: 83.33333333%
    }

    .offset-lg-11 {
        margin-left: 91.66666667%
    }

    .g-lg-0, .gx-lg-0 {
        --bs-gutter-x: 0
    }

    .g-lg-0, .gy-lg-0 {
        --bs-gutter-y: 0
    }

    .g-lg-1, .gx-lg-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-lg-1, .gy-lg-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-lg-2, .gx-lg-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-lg-2, .gy-lg-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-lg-3, .gx-lg-3 {
        --bs-gutter-x: 1rem
    }

    .g-lg-3, .gy-lg-3 {
        --bs-gutter-y: 1rem
    }

    .g-lg-4, .gx-lg-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-lg-4, .gy-lg-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-lg-5, .gx-lg-5 {
        --bs-gutter-x: 3rem
    }

    .g-lg-5, .gy-lg-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1200px) {
    .col-xl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.33333333%
    }

    .offset-xl-2 {
        margin-left: 16.66666667%
    }

    .offset-xl-3 {
        margin-left: 25%
    }

    .offset-xl-4 {
        margin-left: 33.33333333%
    }

    .offset-xl-5 {
        margin-left: 41.66666667%
    }

    .offset-xl-6 {
        margin-left: 50%
    }

    .offset-xl-7 {
        margin-left: 58.33333333%
    }

    .offset-xl-8 {
        margin-left: 66.66666667%
    }

    .offset-xl-9 {
        margin-left: 75%
    }

    .offset-xl-10 {
        margin-left: 83.33333333%
    }

    .offset-xl-11 {
        margin-left: 91.66666667%
    }

    .g-xl-0, .gx-xl-0 {
        --bs-gutter-x: 0
    }

    .g-xl-0, .gy-xl-0 {
        --bs-gutter-y: 0
    }

    .g-xl-1, .gx-xl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xl-1, .gy-xl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xl-2, .gx-xl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xl-2, .gy-xl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xl-3, .gx-xl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xl-3, .gy-xl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xl-4, .gx-xl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xl-4, .gy-xl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xl-5, .gx-xl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xl-5, .gy-xl-5 {
        --bs-gutter-y: 3rem
    }
}

@media (min-width: 1400px) {
    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%
    }

    .offset-xxl-0 {
        margin-left: 0
    }

    .offset-xxl-1 {
        margin-left: 8.33333333%
    }

    .offset-xxl-2 {
        margin-left: 16.66666667%
    }

    .offset-xxl-3 {
        margin-left: 25%
    }

    .offset-xxl-4 {
        margin-left: 33.33333333%
    }

    .offset-xxl-5 {
        margin-left: 41.66666667%
    }

    .offset-xxl-6 {
        margin-left: 50%
    }

    .offset-xxl-7 {
        margin-left: 58.33333333%
    }

    .offset-xxl-8 {
        margin-left: 66.66666667%
    }

    .offset-xxl-9 {
        margin-left: 75%
    }

    .offset-xxl-10 {
        margin-left: 83.33333333%
    }

    .offset-xxl-11 {
        margin-left: 91.66666667%
    }

    .g-xxl-0, .gx-xxl-0 {
        --bs-gutter-x: 0
    }

    .g-xxl-0, .gy-xxl-0 {
        --bs-gutter-y: 0
    }

    .g-xxl-1, .gx-xxl-1 {
        --bs-gutter-x: 0.25rem
    }

    .g-xxl-1, .gy-xxl-1 {
        --bs-gutter-y: 0.25rem
    }

    .g-xxl-2, .gx-xxl-2 {
        --bs-gutter-x: 0.5rem
    }

    .g-xxl-2, .gy-xxl-2 {
        --bs-gutter-y: 0.5rem
    }

    .g-xxl-3, .gx-xxl-3 {
        --bs-gutter-x: 1rem
    }

    .g-xxl-3, .gy-xxl-3 {
        --bs-gutter-y: 1rem
    }

    .g-xxl-4, .gx-xxl-4 {
        --bs-gutter-x: 1.5rem
    }

    .g-xxl-4, .gy-xxl-4 {
        --bs-gutter-y: 1.5rem
    }

    .g-xxl-5, .gx-xxl-5 {
        --bs-gutter-x: 3rem
    }

    .g-xxl-5, .gy-xxl-5 {
        --bs-gutter-y: 3rem
    }
}




/*# sourceMappingURL=bootstrap.min.css.map */
'+


@media only screen and (min-width: 962px) {

    .top-bar a {
        font-size: 13px;
        color: #ffffff;
        display: block;
        display: flex !important;
        font-weight: 600;
        padding: 0;
        min-width: 130px !important;
    }

}

.main-wrap {
    z-index: 99 !important;
    height: 50px;
    justify-content: center;
    background: #25285a;
    font-weight: 600;
    color: #fff;
    border-bottom-left-radius: 100%;
    border-bottom-right-radius: 100%;
    position: relative;
    z-index: 9;
}

.main-page-banner {
    width: 100%;
    background-image: url(../img/m-1.jpg);
    background-size: cover;
    background-position: top;
    height: auto !important;
}

.main-page-banner .container {
    height: 100%;
    padding: 50px 0;
}

.main-page-banner .container .sepet-nav {
    width: calc(100% - 110px);
    margin: 0 auto;
    background-color: #fff;
    height: 94px;
    border-radius: 10px 10px 0 0;
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-page-banner .container .sepet-nav .item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
    color: #25285a;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.main-page-banner .container .sepet-content .content-box .user-login-area .register-btn {
    width: 222px;
    height: 47px;
    border-radius: 47px;
    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;
    background-color: #008afb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgb(44 44 44 / 24%);
    box-shadow: 0px 4px 6.51px 0.49px rgb(44 44 44 / 24%);
}

.main-page-banner .container .sepet-nav .item:last-child {
    border-right: 0;
}

.main-page-banner .container .sepet-nav .item.active {
    color: #5f2eee;
}

.main-page-banner .container .sepet-nav .item:hover {
    color: #5f2eee;
}

.main-page-banner .container .sepet-nav .item span {
    font-size: 27px;
}

.main-page-banner .container .sepet-content {
    width: 100%;
    height: 735px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    background-color: #fff;
    background-image: url(../img/sepet-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 40px;
    position: relative;
    z-index: 99;
}

.main-page-banner .container .sepet-content.auto-content {
    height: auto;
}

.main-page-banner .container .sepet-content .category-box {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    height: auto;
}

.main-page-banner .container .sepet-content .category-box .title {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    color: #1d1d1d;
    font-weight: 700;
    background-color: #fff;
}

.main-page-banner .container .sepet-content .category-box a {
    display: block;
    padding: 10px 20px;
    font-weight: 600;
}

.main-page-banner .container .sepet-content .category-box a.active {
    color: #000;
    font-weight: 900;
}

.main-page-banner .container .sepet-content .category-box .amounts span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 15px;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
    font-weight: 600;
}

.main-page-banner .container .sepet-content .category-box .amounts span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.main-page-banner .container .sepet-content .category-box .total-price {
    margin: 15px;
    height: 97px;
    background-color: #25285a;
    color: #fff;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-page-banner .container .sepet-content .category-box .total-price b {
    font-size: 28px;
}

.main-page-banner .container .sepet-content .category-box .total-price span {
    font-size: 17px;
}

.main-page-banner .container .sepet-content .category-box .odeme-yap {
    margin: 15px;
    height: 52px;
    background-color: #5f2eee;
    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: #fff;
}

.main-page-banner .container .sepet-content .category-box .continue {
    color: #252525;
    border: 1px solid #252525;
    margin: 15px 15px 0 15px;
    height: 40px;
    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;
}

.main-page-banner .container .sepet-content .category-box .content {
    padding: 15px;
}

.main-page-banner .container .sepet-content .category-box .content > b {
    color: #5f2eee;
    font-weight: 900;
    font-size: 14px;
    display: block;
}

.main-page-banner .container .sepet-content .category-box .content > i {
    color: #5f2eee;
    font-weight: 600;
    font-size: 14px;
    display: block;
    font-style: italic;
    margin-bottom: 10px;
}

.main-page-banner .container .sepet-content .category-box .content span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.main-page-banner .container .sepet-content .category-box .content span b {
    font-weight: 700;
}

.main-page-banner .container .sepet-content .content-box {
    width: 100%;
    max-height: 655px;
    height: 655px;
    overflow-y: auto;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.3);
    padding: 35px;
    position: relative;
    z-index: 95;
}

.main-page-banner .container .sepet-content .content-box .paket-item {
    width: 100%;
    padding: 10px 0;
    padding: 8px 0;
    background-color: #36373b;
    background-image: -webkit-gradient(linear, left top, right top, from(#5f2eee), color-stop(#5e2eee9f), color-stop(#5e2eee00), to(#5e2eee00));
    background-image: linear-gradient(to right, #5f2eee, #5e2eee9f, #5e2eee00, #5e2eee00);
    border-radius: 5px;
    margin-bottom: 20px;
}

.main-page-banner .container .sepet-content .content-box .paket-item .row {
    height: 100%;
    padding: 0 20px !important;
}

.main-page-banner .container .sepet-content .content-box .paket-item .row p {
    font-size: 32px;
    color: #fff;
}

.main-page-banner .container .sepet-content .content-box .paket-item .row span {
    font-size: 16px;
    color: #fff;
    display: block;
}

.main-page-banner .container .sepet-content .content-box .paket-item .row a.sepete-ekle {
    width: 160px;
    height: 47px;
    border-radius: 5px;
    background-color: #5f2eee;
    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;
    margin-right: -20px;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
}

.main-page-banner .container .sepet-content .content-box .paket-item .row .price {
    width: 100%;
    margin-top: 10px;
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
}

.main-page-banner .container .sepet-content .content-box .paket-item .row .price b {
    font-size: 28px;
    font-weight: 900;
}

.main-page-banner .container .sepet-content .content-box .cond-check {
    width: 100%;
    height: 57px;
    border-radius: 5px;
    background-color: #36373b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 20px;
}

.main-page-banner .container .sepet-content .content-box .cond-check .check-container {
    height: auto;
    margin-bottom: 0 !important;
}

.main-page-banner .container .sepet-content .content-box .check-domain {
    width: 100%;
    height: 57px;
    background-color: #36373b;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.main-page-banner .container .sepet-content .content-box .check-domain.show {
    padding: 20px;
    display: block;
    height: 160px;
    background-image: -webkit-gradient(linear, left top, right top, from(#5f2eee), color-stop(#5e2eee9f), color-stop(#5e2eee00), to(#5e2eee00));
    background-image: linear-gradient(to right, #5f2eee, #5e2eee9f, #5e2eee00, #5e2eee00);
}

.main-page-banner .container .sepet-content .content-box .check-domain.show .check-domain-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-page-banner .container .sepet-content .content-box .check-domain .check-container {
    height: auto;
    margin-bottom: 0 !important;
}

.main-page-banner .container .sepet-content .content-box .check-domain-row {
    display: none;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.main-page-banner .container .sepet-content .content-box .check-domain-row a {
    width: 160px;
    height: 70px;
    border-radius: 5px;
    background-color: #5f2eee;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
}

.main-page-banner .container .sepet-content .content-box .check-domain-input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 40px;
    height: 70px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-page-banner .container .sepet-content .content-box .check-domain-input input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: none;
    background-color: #fff;
    font-size: 18px;
    font-weight: 600;
    color: #2d2d2d;
    text-indent: 20px;
}

.main-page-banner .container .sepet-content .content-box .check-domain-input .select {
    position: relative;
}

.main-page-banner .container .sepet-content .content-box .check-domain-input .select.full {
    width: 100%;
}

.main-page-banner .container .sepet-content .content-box .check-domain-input .select.full select {
    width: 100%;
    background-color: #fff;
}

.main-page-banner .container .sepet-content .content-box .check-domain-input .select span {
    position: absolute;
    right: 15px;
    top: 35%;
}

.main-page-banner .container .sepet-content .content-box .check-domain-input .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 110px;
    height: 70px;
    background-color: #ebebec;
    border: none !important;
    outline: none !important;
    padding-left: 40px;
    font-size: 18px;
    font-weight: 600;
}

.main-page-banner .container .sepet-content .content-box .renew-domain {
    width: 100%;
    height: auto;
    background-color: #36373b;
    background-image: -webkit-gradient(linear, left top, right top, from(#5f2eee), color-stop(#5e2eee9f), color-stop(#5e2eee00), to(#5e2eee00));
    background-image: linear-gradient(to right, #5f2eee, #5e2eee9f, #5e2eee00, #5e2eee00);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 20px;
}

.main-page-banner .container .sepet-content .content-box .renew-domain > p {
    font-size: 18px;
    color: #fff;
}

.main-page-banner .container .sepet-content .content-box .renew-domain .head .name {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.main-page-banner .container .sepet-content .content-box .renew-domain .head .expire {
    height: 24px;
    border-radius: 24px;
    background-color: #fff;
    padding: 0 12px;
    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: #5f2eee;
    font-weight: 700;
}

.main-page-banner .container .sepet-content .content-box .renew-domain-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 0px;
}

.main-page-banner .container .sepet-content .content-box .renew-domain-row a {
    width: 160px;
    height: 70px;
    border-radius: 5px;
    background-color: #5f2eee;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: -40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
}

.main-page-banner .container .sepet-content .content-box .renew-domain .select {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 40px;
    height: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #fff;
}

.main-page-banner .container .sepet-content .content-box .renew-domain .select span {
    position: absolute;
    width: 100px;
    height: 54px;
    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;
    right: 0;
    background-color: #ebebec;
    font-size: 24px;
}

.main-page-banner .container .sepet-content .content-box .renew-domain .select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    height: 54px;
    border: none !important;
    outline: none !important;
    padding-left: 40px;
    font-size: 20px;
    font-weight: 600;
    color: #252525;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .heading .row .col-md-6 {
    border-right: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .heading .row .col-md-6 b {
    color: #292929;
    font-weight: 900;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .heading .row .col-md-6 span {
    color: #292929;
    font-weight: 700;
    font-size: 16px;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .heading .row .col-md-6 span.purple {
    color: #5f2eee;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .heading .row .col-md-6 span.purple a {
    font-weight: 900;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .configure-item {
    width: 100%;
    height: auto;
    background-color: #252525;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .configure-item p.info {
    font-size: 14px;
    min-height: 57px;
    color: #fff;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .configure-item .date {
    width: 100%;
    height: 40px;
    background-color: #008afb;
    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;
    font-size: 14px;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .configure-item > a {
    width: 100%;
    height: 70px;
    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;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #5f2eee;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .nameservers .title {
    color: #0090e0;
    font-weight: 900;
    font-size: 20px;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .nameservers .row .col-md-6 {
    border-right: 0 !important;
}

.main-page-banner .container .sepet-content .content-box .configure-domain .nameservers .row .col-md-6 span {
    margin-top: 10px;
    color: #252525;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 46px;
    border-radius: 5px;
    background-color: rgba(37, 37, 37, 0.05);
}

.main-page-banner .container .sepet-content .content-box .head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.main-page-banner .container .sepet-content .content-box .head p {
    font-size: 20px;
    font-weight: 600;
}

.main-page-banner .container .sepet-content .content-box .head a {
    font-size: 18px;
    font-weight: 600;
}

.main-page-banner .container .sepet-content .content-box .head a:first-child {
    border-right: 1px solid #aeaeae;
    padding-right: 15px;
    margin-right: 15px;
}

.main-page-banner .container .sepet-content .content-box .sepet-table-head {
    width: 100%;
    height: 44px;
    background-color: #5f2eee;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.main-page-banner .container .sepet-content .content-box .sepet-table-head span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    padding-left: 20px;
}

.main-page-banner .container .sepet-content .content-box .sepet-table-row {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2f2f2f;
}

.main-page-banner .container .sepet-content .content-box .sepet-table-row:last-child {
    border-bottom: 0;
}

.main-page-banner .container .sepet-content .content-box .sepet-table-row .row-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    padding-left: 20px;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 {
    border-right: 0 !important;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item {
    width: 100%;
    height: auto;
    background-color: #36373b;
    background-image: -webkit-gradient(linear, left top, right top, from(#5f2eee), color-stop(#5e2eee9f), color-stop(#5e2eee00), to(#5e2eee00));
    background-image: linear-gradient(to right, #5f2eee, #5e2eee9f, #5e2eee00, #5e2eee00);
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 25px 20px;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .name {
    font-size: 20px;
    margin-bottom: 10px;
    width: 100%;
    display: block;
    text-align: center;
    color: #fff;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item small {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px;
    display: block;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .eklenti-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item a.sepete-ekle {
    width: 160px;
    height: 47px;
    border-radius: 5px;
    background-color: #5f2eee;
    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;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 600;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .price {
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    margin-left: 30px;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .price b {
    font-size: 28px;
    font-weight: 900;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .select {
    position: relative;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .select span {
    position: absolute;
    top: 30%;
    right: 15px;
}

.main-page-banner .container .sepet-content .content-box .eklenti-row .col-md-6 .eklenti-item .select select {
    width: 100%;
    height: 40px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 5px;
    padding-left: 20px;
}

.main-page-banner .container .sepet-content .content-box .col-md-6:first-child {
    border-right: 1px solid rgba(37, 37, 37, 0.2);
}

.main-page-banner .container .sepet-content .content-box .col-md-6 .sub-title {
    color: #5f2eee;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.main-page-banner .container .sepet-content .content-box .col-md-6 .t-row {
    width: 100%;
    height: 46px;
    background-color: #fafafa;
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 15px;
    color: #252525;
    font-size: 16px;
    font-weight: 600;
}

.main-page-banner .container .sepet-content .content-box .col-md-6 .numbers {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 12px;
    color: #252525;
    font-weight: 700;
}

.main-page-banner .container .sepet-content .content-box .total-amount {
    width: 100%;
    height: auto;
    background-color: #5f2eee;
    color: #fff;
    text-align: center;
    font-size: 30px;
    padding: 30px 0;
}

.main-page-banner .container .sepet-content .content-box .total-amount.no-pd {
    padding: 5px 0;
}

.main-page-banner .container .sepet-content .content-box .payment-methods {
    padding: 30px 40px;
}

.main-page-banner .container .sepet-content .content-box .payment-methods .sub-title {
    font-size: 20px;
    font-weight: 700;
    color: #5f2eee;
    margin-bottom: 5px;
}

.main-page-banner .container .sepet-content .content-box .payment-methods label {
    margin-top: 15px;
}

.main-page-banner .container .sepet-content .content-box .payment-methods .notes {
    background-color: rgba(250, 250, 250, 0.5);
    padding: 20px;
    margin-top: 30px;
}

.main-page-banner .container .sepet-content .content-box .payment-methods .notes b {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #1d1d1d;
}

.main-page-banner .container .sepet-content .content-box .payment-methods .notes textarea {
    width: 100%;
    height: 60px;
    resize: vertical;
    max-height: 200px;
}

.main-page-banner .container .sepet-content .content-box .make-payment {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
}

.main-page-banner .container .sepet-content .content-box .make-payment a {
    width: 326px;
    height: 52px;
    background-color: #5f2eee;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    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;
}

.main-page-banner .container .sepet-content .content-box .user-login-area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
}

.main-page-banner .container .sepet-content .content-box .user-login-area .title {
    color: #008afb;
    font-size: 30px;
    font-weight: 900;
}

.main-page-banner .container .sepet-content .content-box .user-login-area button {
    width: 222px;
    height: 47px;
    border-radius: 47px;
    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;
    background-color: #008afb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
}

.main-page-banner .container .sepet-content .content-box .user-login-area .login-input {
    width: 263px;
    height: 51px;
    border-radius: 7px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 108, 110, 0.08);
    box-shadow: 0px 0px 10px rgba(0, 108, 110, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: 5px solid #008afb;
}

.main-page-banner .container .sepet-content .content-box .user-login-area .login-input span {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #008afb;
}

.main-page-banner .container .sepet-content .content-box .user-login-area .login-input input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.sepet-form-wrap {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    height: auto;
}

.sepet-form-wrap .register-types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
}

.sepet-form-wrap .register-types p {
    font-size: 20px;
    font-weight: 900;
    color: #25285a;
    margin-bottom: 20px;
}

.sepet-form-wrap .register-types a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 26px;
    font-weight: 900;
    color: #008afb;
}

.sepet-form-wrap .register-types a .fa-user {
    margin-bottom: 5px;
}

.form-content-box {
    width: 100%;
    border-radius: 10px;
    min-height: 418px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    background-color: #fff;
    background-image: url(../img/sepet-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 40px;
    position: relative;
    z-index: 99;
}

.form-content-box .form-title {
    font-size: 24px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-content-box .form-title .type-switch {
    margin-left: 30px;
    width: 180px;
    height: 32px;
    border-radius: 32px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-content-box .form-title .type-switch button {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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;
    height: 32px;
    border-radius: 32px;
}

.form-content-box .form-title .type-switch button:hover {
    background-color: #008afb;
    color: #fff;
}

.form-content-box .form-title .type-switch button.active {
    background-color: #008afb;
    color: #fff;
}

.form-content-box .row .col-md-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-content-box .row .col-md-6 > span {
    color: #fff;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 110px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-width: 110px;
}

.form-content-box .row .col-md-6 input, .form-content-box .row .col-md-6 select {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 215px;
    height: 44px;
    border-radius: 5px;
    text-indent: 10px;
    margin-left: 15px;
}

.form-content-box .row .col-md-6 .select {
    position: relative;
    width: 100%;
    height: 44px;
    max-width: 215px;
    margin-left: 15px;
}

.form-content-box .row .col-md-6 .select span {
    position: absolute;
    top: 30%;
    right: 10px !important;
    color: #252525;
}

.form-content-box .row .col-md-6 .select select {
    width: 100%;
    height: 44px;
    max-width: 215px;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 5px;
    padding-left: 20px;
}

.sozlesme {
    width: 100%;
    margin-bottom: 20px;
}

.sozlesme .title {
    font-weight: 700;
    font-size: 13px;
}

.sozlesme-box {
    max-height: 105px;
    overflow: auto;
    background-color: #fff;
    padding: 10px;
    font-size: 13px;
    color: #000000;
    font-weight: 500;
}

.not-robot {
    width: 100%;
    height: 42px;
    border-radius: 5px;
    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;
    padding-top: 5px;
}

.not-robot label {
    color: #008afb;
}

.not-robot label .checkmark {
    border-color: #008afb;
}

.not-robot label input:checked ~ .checkmark {
    background-color: #008afb;
}

.go-back {
    width: 100%;
    height: 42px;
    border-radius: 5px;
    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;
    background-color: #5f2eee;
    color: #fff;
    margin-top: 15px;
    font-size: 20px;
}

.create-user {
    background-color: #25285a;
    border-radius: 5px;
    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;
    width: 100%;
    height: 47px;
    color: #fff;
    margin-top: 15px;
    font-size: 20px;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #1d1d1d;
    outline: none;
    opacity: 1;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 8px;
    height: 20px;
    background: #5f2eee;
    cursor: pointer;
    border-radius: 4px;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: #5f2eee;
    cursor: pointer;
}

.big-check {
    margin-top: -30px;
    margin-left: 20px;
}

.big-check .checkmark {
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.big-check .checkmark:after {
    left: 15px !important;
    top: 8px !important;
    width: 10px !important;
    height: 20px !important;
    border: solid #5f2eee;
    border-width: 0 3px 3px 0 !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* The container */
.check-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

/* Hide the browser's default checkbox */
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    border-radius: 2px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #eee;
    margin-top: 3px;
}

/* On mouse-over, add a grey background color */
.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #5f2eee;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* The container */
.check-container-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #252525;
    padding-top: 4px;
}

/* Hide the browser's default checkbox */
.check-container-2 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    border-radius: 2px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #252525;
    margin-top: 3px;
}

/* On mouse-over, add a grey background color */
.check-container-2:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container-2 input:checked ~ .checkmark {
    background-color: #252525;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container-2 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container-2 .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* The container */
.check-container-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
    padding-top: 4px;
}

/* Hide the browser's default checkbox */
.check-container-3 input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    border-radius: 2px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #252525;
    margin-top: 3px;
}

/* On mouse-over, add a grey background color */
.check-container-3:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.check-container-3 input:checked ~ .checkmark {
    background-color: #fff;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.check-container-3 input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.check-container-3 .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #252525;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.alt-page-banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 470px;
}

.alt-page-banner.small-banner {
    height: 270px;
}

.alt-page-banner.small-banner .container {
    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;
}

.alt-page-banner.small-banner .container b {
    font-weight: 900;
}

.alt-page-banner.small-banner .container .summary {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}

.alt-page-banner .container {
    height: 100%;
}

.alt-page-banner .container .col-wrap {
    padding: 50px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.alt-page-banner .container .col-wrap .alt-page-title {
    text-align: center;
    font-size: 26px;
    color: #fff;
}

.alt-page-banner .container .col-wrap .alt-page-title b {
    font-weight: 700;
    font-size: 32px;
}

.alt-page-banner .container .info-text {
    color: #fff;
    margin-top: 20px;
}

.hover-up {
    -webkit-transition: .2s all;
    transition: .2s all;
}

.hover-up:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.domain-types {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 720px;
    width: 100%;
    margin-top: 40px;
}

.domain-types .type-buttons {
    max-width: 495px;
    width: 100%;
    height: 45px;
    border-radius: 10px 10px 0 0;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.domain-types .type-buttons.purple-btns {
    background-color: rgba(95, 46, 238, 0.9);
}

.domain-types .type-buttons.purple-btns button.active, .domain-types .type-buttons.purple-btns a.active {
    background-color: rgba(0, 0, 0, 0.2);
}

.domain-types .type-buttons.purple-btns button:hover, .domain-types .type-buttons.purple-btns a:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.2);
}

.domain-types .type-buttons button, .domain-types .type-buttons a {
    cursor: pointer;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 45px;
    border-radius: 10px 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.domain-types .type-buttons button span, .domain-types .type-buttons a span {
    margin-right: 6px;
}

.domain-types .type-buttons button.active, .domain-types .type-buttons a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

.domain-types .type-buttons button:hover, .domain-types .type-buttons a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
}

.domain-types .type-box {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.domain-types .type-box input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 26px;
    color: #25285a;
    font-weight: 700;
    min-width: 220px;
}

.domain-types .type-box .v-line {
    width: 1px;
    height: 100%;
    background-color: #25285a;
}

.domain-types .type-box button {
    background-color: #25285a;
    height: 100%;
    border-radius: 10px;
    color: #fff;
    padding: 0 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.host-paket-box {
    max-width: 720px;
    width: 100%;
    border-radius: 10px;
    padding: 20px 30px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #2d2d2d;
    font-weight: 600;
    display: none;
    position: relative;
}

.host-paket-box .paket-logo {
    z-index: 10;
    left: -12%;
    position: absolute;
}

.host-paket-box .paket-logo.v2 {
    left: -5%;
}

.host-paket-box.show-paket {
    display: block;
}

.host-paket-box.lightpurple-paket .pricing a {
    background-color: #5f2eee;
}

.host-paket-box.yellow-paket .pricing span {
    background-color: #c88e05;
}

.host-paket-box.yellow-paket .pricing a {
    background-color: #fbb100;
}

.host-paket-box.red-paket .pricing span {
    background-color: #460e0e;
}

.host-paket-box.red-paket .pricing a {
    background-color: #990a32;
}

.host-paket-box.light-red-paket .pricing span {
    background-color: #8b1117;
}

.host-paket-box.light-red-paket .pricing a {
    background-color: #ca121b;
}

.host-paket-box .text .title {
    font-size: 60px;
    color: #2d2d2d;
    margin-bottom: 10px;
    width: 100%;
}

.host-paket-box .text .title span {
    color: #a8a8a8;
}

.host-paket-box .pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
}

.host-paket-box .pricing span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 125px;
    height: 140px;
    background-color: #25285a;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    line-height: 1;
    color: #fff;
    font-size: 18px;
    padding-left: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 500;
}

.host-paket-box .pricing a {
    width: 115px;
    height: 140px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1.2;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    margin-left: -50px;
    background-color: #008afb;
}

.domain-result {
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
    background-color: #f3f3f3;
    border-radius: 10px;
}

.domain-result .head {
    height: 60px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: rgba(37, 40, 90, 0.15);
    border-radius: 10px 10px 0 0;
    color: #25285a;
    font-size: 18px;
}

.domain-result .transfer-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
}

.domain-result .transfer-form b {
    font-size: 24px;
    display: block;
    font-weight: 900;
    color: #5f2eee;
    position: relative;
    width: 100%;
    max-width: 630px;
    text-align: center;
}

.domain-result .transfer-form b span {
    position: absolute;
    right: 0;
}

.domain-result .transfer-form b span a {
    font-size: 16px;
}

.domain-result .transfer-form input {
    max-width: 630px;
    width: 100%;
    height: 56px;
    border-radius: 2px;
    background-color: rgba(212, 213, 220, 0.5);
    text-align: center;
    color: #252525;
    margin-bottom: 20px;
}

.domain-result .transfer-form input::-webkit-input-placeholder {
    color: #252525;
}

.domain-result .transfer-form input:-ms-input-placeholder {
    color: #252525;
}

.domain-result .transfer-form input::-ms-input-placeholder {
    color: #252525;
}

.domain-result .transfer-form input::placeholder {
    color: #252525;
}

.domain-result .transfer-form .action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 630px;
    width: 100%;
}

.domain-result .transfer-form .action a {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 55px;
    border-radius: 10px;
    background-color: #5f2eee;
    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;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;
}

.domain-result .transfer-form .action .select {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.domain-result .transfer-form .action .select select {
    width: 100%;
    height: 55px;
    border-radius: 10px;
    background-color: rgba(95, 46, 238, 0.1);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #292929;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 17px;
    text-align: center !important;
    padding-left: 30px;
}

.domain-result .result-row {
    width: 100%;
    height: 110px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.domain-result .result-row .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.domain-result .result-row .left p {
    color: #2d2d2d;
    margin-left: 15px;
    margin-top: 10px;
    font-weight: 500;
    display: block;
    font-size: 16px;
}

.domain-result .result-row .left p b {
    font-size: 22px;
}

.domain-result .result-row .right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.domain-result .result-row .right button {
    width: 188px;
    height: 55px;
    border-radius: 10px;
    background-color: #5f2eee;
    color: #fff;
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    margin-left: 10px;
}

.domain-result .result-row .right .select select {
    width: 188px;
    height: 55px;
    border-radius: 10px;
    background-color: rgba(95, 46, 238, 0.1);
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #292929;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 17px;
    text-align: center !important;
    padding-left: 30px;
}

.domain-result .result-row:nth-child(odd) {
    background-color: #eaeaea;
}

.domain-result .result-row:last-child {
    border-radius: 0 0 10px 10px;
}

.common-features {
    background-color: #fff;
    padding: 40px 0;
}

.common-features.lightred .title {
    color: #ca121b !important;
}

.common-features.lightred .features-item span {
    color: #ca121b !important;
}

.common-features.lightred .features-item .text b {
    color: #ca121b !important;
}

.common-features.lightpurple .title {
    color: #5f2eee !important;
}

.common-features.lightpurple .features-item span {
    color: #5f2eee !important;
}

.common-features.lightpurple .features-item .text b {
    color: #5f2eee !important;
}

.common-features.blue .title {
    color: #0aacba !important;
}

.common-features.blue .features-item span {
    color: #0aacba !important;
}

.common-features.blue .features-item .text b {
    color: #0aacba !important;
}

.common-features.yellow .title {
    color: #fbb100 !important;
}

.common-features.yellow .features-item span {
    color: #fbb100 !important;
}

.common-features.yellow .features-item .text b {
    color: #fbb100 !important;
}

.common-features.red .title {
    color: #990a32 !important;
}

.common-features.red .features-item span {
    color: #990a32 !important;
}

.common-features.red .features-item .text b {
    color: #990a32 !important;
}

.common-features.dark-purple .title {
    color: #25285a !important;
}

.common-features.dark-purple .features-item span {
    color: #25285a !important;
}

.common-features.dark-purple .features-item .text b {
    color: #25285a !important;
}

.common-features .container .title {
    width: 100%;
    display: block;
    text-align: center;
    color: #008afb;
    font-size: 36px;
    font-weight: 900;
}

.common-features .container .row .features-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.common-features .container .row .features-item span {
    font-size: 82px;
    color: #008afb;
}

.common-features .container .row .features-item .text {
    margin-left: 10px;
}

.common-features .container .row .features-item .text b {
    font-size: 28px;
    color: #008afb;
}

.common-features .container .row .features-item .text p {
    color: #3f3f3f;
    font-size: 16px;
    font-weight: 500;
}

.table-nav {
    width: 100%;
    height: 30px;
    background-color: #25285a;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.table-nav a {
    height: 30px;
    border-radius: 30px;
    color: #fff;
    padding: 0 30px;
    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;
    font-size: 17px;
}

.table-nav a.active {
    background-color: #5f2eee;
}

.table-nav a:hover {
    background-color: #5f2eee;
}

.domain-pricing {
    width: 100%;
    position: relative;
    padding: 80px 0 20px;
    background-image: url(../img/domain-pricing-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.domain-pricing .title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: aliceblue;
    text-align: center;
    margin-bottom: 0;
}

.domain-pricing .title b {
    display: block;
    font-weight: 900;
    font-size: 32px;
}

.domain-pricing .pricing-table {
    width: 100%;
    border-radius: 15px;
    background-image: -webkit-gradient(linear, left top, right top, from(#1d335a), to(#0d1c38));
    background-image: linear-gradient(to right, #1d335a, #0d1c38);
    padding-bottom: 10px;
    margin-top: 20px;
}

.domain-pricing .pricing-table.host-table .head span {
    padding-left: 30px;
    text-align: start;
    font-size: 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.domain-pricing .pricing-table.host-table .head span img {
    position: absolute;
    left: 30%;
    top: -40px;
}

.domain-pricing .pricing-table.host-table .head span small {
    font-size: 14px;
    color: #93a6c9;
}

.domain-pricing .pricing-table.host-table .t-row span {
    text-align: start;
    padding-left: 30px;
}

.domain-pricing .pricing-table .head {
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.domain-pricing .pricing-table .head span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    text-align: center;
    font-size: 40px;
    font-weight: 900;
}

.domain-pricing .pricing-table .t-row {
    width: 100%;
    height: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.domain-pricing .pricing-table .t-row .flex-row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.domain-pricing .pricing-table .t-row .flex-row a {
    width: 170px;
    height: 40px;
    border-radius: 10px;
    background-color: #008afb;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: -30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.domain-pricing .pricing-table .t-row .flex-row a.purple {
    background-color: #5f2eee;
}

.domain-pricing .pricing-table .t-row span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    text-align: center;
    font-size: 18px;
}

.domain-pricing .pricing-table .t-row:nth-child(even) {
    background-color: rgba(12, 22, 39, 0.6);
}

.domain-pricing .info-text {
    color: #fff;
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
    margin-bottom: 20px;
}

.see-details {
    width: 250px;
    height: 42px;
    border-radius: 7px;
    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;
    font-size: 18px;
}

.see-details.purple {
    background-color: rgba(105, 21, 207, 0.7);
}

.see-details.blue {
    background-color: rgba(0, 138, 251, 0.7);
}

.see-details.red {
    background-color: #990a32;
}

.see-details.lightblue {
    background-color: #0aacba;
}

.see-details.yellow {
    background-color: #ffa800;
}

.evrak-area {
    background-color: #c6d0d6;
    padding-top: 40px;
}

.evrak-area .title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: #25285a;
    text-align: center;
    margin-bottom: 0;
}

.evrak-area .title b {
    display: block;
    font-weight: 900;
    font-size: 32px;
}

.evrak-slider .swiper-slide {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 230px;
    flex: 0 0 230px;
    max-width: 230px;
}

.evrak-slider .swiper-slide .item {
    width: 230px;
    height: 230px;
    background-color: #b9c2cc;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
}

.evrak-slider .swiper-slide .item.item-small {
    padding: 5px;
}

.evrak-slider .swiper-slide .item.item-small b {
    font-size: 17px;
}

.evrak-slider .swiper-slide .item.item-small p {
    font-size: 15px;
}

.evrak-slider .swiper-slide .item b {
    font-size: 48px;
    color: #292929;
}

.evrak-slider .swiper-slide .item p {
    font-size: 16px;
    color: #5e5e5e;
}

.evrak-slider .swiper-container-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: inherit;
    -ms-flex-positive: inherit;
    flex-grow: inherit;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    max-width: inherit;
}

.evrak-slider .swiper-container {
    padding: 30px 33px 70px 33px;
}

.evrak-slider .swiper-button-prev {
    width: auto;
    height: auto;
    margin-top: -52.5px;
    left: -80px;
}

.evrak-slider .swiper-button-prev:after {
    display: none;
}

.evrak-slider .swiper-button-next {
    width: auto;
    height: auto;
    margin-top: -52.5px;
    right: -80px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.evrak-slider .swiper-button-next:after {
    display: none;
}

.c-domains-slider .swiper-button-next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.c-domains-slider .swiper-button-prev:after, .c-domains-slider .swiper-button-next:after {
    display: none;
}

.c-domains-slider .swiper-wrapper {
    margin: 0 60px;
}

.c-domains-slider .swiper-slide {
    width: 100px !important;
    margin: 0 !important;
}

.c-domains-slider .swiper-slide:first-child .domain-item .price {
    border-radius: 20px 0 0 20px;
}

.c-domains-slider .swiper-slide:last-child .domain-item {
    border-right: 0px solid rgba(37, 40, 90, 0.1);
}

.c-domains-slider .swiper-slide:last-child .domain-item .price {
    border-radius: 0 20px 20px 0;
}

.c-domains-slider .swiper-slide .domain-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100px;
    border-right: 1px solid rgba(37, 40, 90, 0.1);
    padding-bottom: 10px;
}

.c-domains-slider .swiper-slide .domain-item span {
    font-size: 26px;
    color: #25285a;
    margin-bottom: 6px;
    display: block;
}

.c-domains-slider .swiper-slide .domain-item .price {
    width: 100%;
    height: 20px;
    background-color: rgba(37, 40, 90, 0.15);
    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;
    text-align: center;
    color: #25285a;
    font-size: 14px;
    font-weight: 600;
}

.login-page-wrap {
    width: 100%;
    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;
}

.login-page-wrap .login-form-box {
    width: 316px;
    height: auto;
    border-radius: 10px;
    background-color: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 99;
}

.login-page-wrap .login-form-box .title {
    font-size: 30px;
    color: #008afb;
    font-weight: 900;
    margin-bottom: 15px;
}

.login-page-wrap .login-form-box button {
    width: 222px;
    height: 47px;
    border-radius: 47px;
    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;
    background-color: #008afb;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    margin-top: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.login-page-wrap .login-form-box .login-input {
    width: 263px;
    height: 51px;
    border-radius: 7px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 108, 110, 0.08);
    box-shadow: 0px 0px 10px rgba(0, 108, 110, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: 5px solid #008afb;
    margin-bottom: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.login-page-wrap .login-form-box .login-input span {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #008afb;
}

.login-page-wrap .login-form-box .login-input input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.login-page-wrap .login-form-box .col-md-6 b {
    font-size: 16px;
    color: #292929;
    margin-bottom: 5px;
    font-weight: 900;
}

.login-page-wrap .login-form-box ul li {
    font-size: 14px;
    margin-bottom: 3px;
}

.login-page-wrap .login-form-box .box-footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 20px;
}

.login-page-wrap .login-banner {
    width: 350px;
    height: 418px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
    z-index: 0;
    margin-left: -20px;
    background-image: url(../img/sepet-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 10px 30px 30px;
}

.login-page-wrap .login-banner .title {
    font-size: 24px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 10px;
}

.login-page-wrap .login-banner .title.big-title {
    font-size: 50px;
    margin-bottom: 0;
    line-height: 1;
}

.login-page-wrap .login-banner span {
    line-height: 1;
    color: #fff;
    font-size: 50px;
    font-weight: lighter;
}

.login-page-wrap .login-banner a {
    width: 260px;
    height: 47px;
    border-radius: 5px;
    background-color: #5f2eee;
    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;
    font-size: 20px;
    font-weight: 700;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
}

.host-paketler-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.host-paketler-wrap.no-flex {
    display: block;
}

.purple-text {
    color: #25285a !important;
}

.host-paket {
    padding: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    border: 6px solid #008afb;
    max-width: 286px;
    width: 100%;
}

.host-paket:nth-child(2) {
    margin-left: -6px;
    z-index: 2;
}

.host-paket:nth-child(3) {
    margin-left: -6px;
    z-index: 3;
}

.host-paket:nth-child(4) {
    margin-left: -6px;
    z-index: 2;
}

.host-paket.purple {
    border: 6px solid #5f2eee;
}

.host-paket.purple .pricing-box .cell:last-child {
    background-color: #5f2eee;
}

.host-paket.purple .pricing-box .cell:last-child::before {
    border-right: 50px solid #5f2eee;
}

.host-paket.purple .sepete-ekle {
    background-color: #5f2eee;
}

.host-paket.darkpurple {
    border: 6px solid #25285a;
}

.host-paket.darkpurple .pricing-box .cell:last-child {
    background-color: #25285a;
}

.host-paket.darkpurple .pricing-box .cell:last-child::before {
    border-right: 50px solid #25285a;
}

.host-paket.darkpurple .sepete-ekle {
    background-color: #25285a;
}

.host-paket.disabled {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.host-paket.disabled ul li.green {
    -webkit-filter: grayscale(0) !important;
    filter: grayscale(0) !important;
}

.host-paket.grey-paket {
    border: 6px solid #757575;
}

.host-paket.grey-paket .pricing-box .cell:last-child {
    background-color: #757575;
}

.host-paket.grey-paket .pricing-box .cell:last-child::before {
    border-right: 50px solid #757575;
}

.host-paket.grey-paket .grey {
    color: #757575;
}

.host-paket.grey-paket .sepete-ekle {
    background-color: #757575;
}

.host-paket.blue-paket {
    margin-left: 0 !important;
    max-width: 280px;
    border: none;
    border-radius: 30px;
}

.host-paket.blue-paket .title {
    font-size: 32px;
}

.host-paket.blue-paket .pricing-box .cell:last-child {
    background-color: #0aacba;
}

.host-paket.blue-paket .pricing-box .cell:last-child::before {
    border-right: 50px solid #0aacba;
}

.host-paket.blue-paket ul li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.host-paket.blue-paket ul li:last-child {
    border-bottom: 0;
}

.host-paket.blue-paket ul li.grey {
    color: #0aacba !important;
}

.host-paket.blue-paket ul li.blue {
    color: #0aacba !important;
}

.host-paket.blue-paket .sepete-ekle {
    background-color: #0aacba;
}

.host-paket.vds-paket {
    max-width: 210px !important;
    width: 210px !important;
    border-radius: 15px !important;
    border: 6px solid #5f2eee !important;
    padding: 10px;
}

.host-paket.vds-paket .title {
    font-size: 16px !important;
}

.host-paket.vds-paket > p {
    font-size: 12px !important;
}

.host-paket.vds-paket .host-spec {
    padding: 0 !important;
}

.host-paket.vds-paket .pricing-box .cell {
    font-size: 12px;
}

.host-paket.vds-paket .pricing-box .cell b {
    font-size: 22px !important;
}

.host-paket.vds-paket .sepete-ekle {
    height: 42px !important;
}

.host-paket.lightpurple-paket {
    margin-left: 0 !important;
    max-width: 280px;
    border: none;
    border-radius: 30px;
}

.host-paket.lightpurple-paket .title {
    font-size: 32px;
}

.host-paket.lightpurple-paket .pricing-box .cell:last-child {
    background-color: #5f2eee;
}

.host-paket.lightpurple-paket .pricing-box .cell:last-child::before {
    border-right: 50px solid #5f2eee;
}

.host-paket.lightpurple-paket ul li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.host-paket.lightpurple-paket ul li:last-child {
    border-bottom: 0;
}

.host-paket.lightpurple-paket .sepete-ekle {
    background-color: #5f2eee;
}

.host-paket.game-paket {
    margin-left: 0 !important;
    max-width: 280px;
    border: none;
    border-radius: 10px;
    border: 6px solid #008afb;
}

.host-paket.game-paket .pricing-box {
    z-index: 22;
    position: relative;
}

.host-paket.game-paket .game-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.host-paket.game-paket .game-title .text {
    max-width: 155px;
    margin-left: auto;
    color: #2d2d2d;
}

.host-paket.game-paket .game-title .text p {
    font-size: 14px;
    color: #858585;
}

.host-paket.game-paket .game-title .text span {
    font-size: 20px;
}

.host-paket.game-paket .game-title img {
    position: absolute;
    bottom: 0%;
    left: -24%;
    z-index: 0;
    max-height: 170px;
    width: auto;
}

.host-paket.game-paket.rust1 {
    border: 6px solid #5d5146;
}

.host-paket.game-paket.rust1 .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.rust1 .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.rust1 .pricing-box .cell:last-child {
    background-color: #5d5146;
}

.host-paket.game-paket.rust1 .pricing-box .cell:last-child::before {
    border-right: 50px solid #5d5146;
}

.host-paket.game-paket.rust1 .sepete-ekle {
    background-color: #5d5146;
}

.host-paket.game-paket.rust2 {
    border: 6px solid #9d0000;
}

.host-paket.game-paket.rust2 .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.rust2 .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.rust2 .pricing-box .cell:last-child {
    background-color: #9d0000;
}

.host-paket.game-paket.rust2 .pricing-box .cell:last-child::before {
    border-right: 50px solid #9d0000;
}

.host-paket.game-paket.rust2 .sepete-ekle {
    background-color: #9d0000;
}

.host-paket.game-paket.rust3 {
    border: 6px solid #2c3521;
}

.host-paket.game-paket.rust3 .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.rust3 .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.rust3 .pricing-box .cell:last-child {
    background-color: #2c3521;
}

.host-paket.game-paket.rust3 .pricing-box .cell:last-child::before {
    border-right: 50px solid #2c3521;
}

.host-paket.game-paket.rust3 .sepete-ekle {
    background-color: #2c3521;
}

.host-paket.game-paket.rust4 {
    border: 6px solid #1b1b1a;
}

.host-paket.game-paket.rust4 .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.rust4 .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.rust4 .pricing-box .cell:last-child {
    background-color: #1b1b1a;
}

.host-paket.game-paket.rust4 .pricing-box .cell:last-child::before {
    border-right: 50px solid #1b1b1a;
}

.host-paket.game-paket.rust4 .sepete-ekle {
    background-color: #1b1b1a;
}

.host-paket.game-paket.green {
    border: 6px solid #2e8504;
}

.host-paket.game-paket.green .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.green .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.green .pricing-box .cell:last-child {
    background-color: #2e8504;
}

.host-paket.game-paket.green .pricing-box .cell:last-child::before {
    border-right: 50px solid #2e8504;
}

.host-paket.game-paket.green .sepete-ekle {
    background-color: #2e8504;
}

.host-paket.game-paket.dark-yellow {
    border: 6px solid #b5ac2d;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell:last-child {
    background-color: #b5ac2d;
}

.host-paket.game-paket.dark-yellow .pricing-box .cell:last-child::before {
    border-right: 50px solid #b5ac2d;
}

.host-paket.game-paket.dark-yellow .sepete-ekle {
    background-color: #b5ac2d;
}

.host-paket.game-paket.turkuvaz {
    border: 6px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child {
    background-color: #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child::before {
    border-right: 50px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .sepete-ekle {
    background-color: #5fa4a3;
}

.host-paket.game-paket.light-green {
    border: 6px solid #31984b;
}

.host-paket.game-paket.light-green .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.light-green .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.light-green .pricing-box .cell:last-child {
    background-color: #31984b;
}

.host-paket.game-paket.light-green .pricing-box .cell:last-child::before {
    border-right: 50px solid #31984b;
}

.host-paket.game-paket.light-green .sepete-ekle {
    background-color: #31984b;
}

.host-paket.game-paket.turkuvaz {
    border: 6px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child {
    background-color: #5fa4a3;
}

.host-paket.game-paket.turkuvaz .pricing-box .cell:last-child::before {
    border-right: 50px solid #5fa4a3;
}

.host-paket.game-paket.turkuvaz .sepete-ekle {
    background-color: #5fa4a3;
}

.host-paket.game-paket.dark {
    border: 6px solid #202020;
}

.host-paket.game-paket.dark .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.dark .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.dark .pricing-box .cell:last-child {
    background-color: #202020;
}

.host-paket.game-paket.dark .pricing-box .cell:last-child::before {
    border-right: 50px solid #202020;
}

.host-paket.game-paket.dark .sepete-ekle {
    background-color: #202020;
}

.host-paket.game-paket.red {
    border: 6px solid #9d0000;
}

.host-paket.game-paket.red .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.red .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.red .pricing-box .cell:last-child {
    background-color: #9d0000;
}

.host-paket.game-paket.red .pricing-box .cell:last-child::before {
    border-right: 50px solid #9d0000;
}

.host-paket.game-paket.red .sepete-ekle {
    background-color: #9d0000;
}

.host-paket.game-paket.orange {
    border: 6px solid #ed981f;
}

.host-paket.game-paket.orange .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.orange .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.orange .pricing-box .cell:last-child {
    background-color: #ed981f;
}

.host-paket.game-paket.orange .pricing-box .cell:last-child::before {
    border-right: 50px solid #ed981f;
}

.host-paket.game-paket.orange .sepete-ekle {
    background-color: #ed981f;
}

.host-paket.game-paket.blue {
    border: 6px solid #079fdd;
}

.host-paket.game-paket.blue .pricing-box .cell {
    font-size: 13px;
}

.host-paket.game-paket.blue .pricing-box .cell b {
    font-size: 26px;
    line-height: 1;
}

.host-paket.game-paket.blue .pricing-box .cell:last-child {
    background-color: #079fdd;
}

.host-paket.game-paket.blue .pricing-box .cell:last-child::before {
    border-right: 50px solid #079fdd;
}

.host-paket.game-paket.blue .sepete-ekle {
    background-color: #079fdd;
}

.host-paket.game-paket .pricing-box .cell:last-child {
    background-color: #5f2eee;
}

.host-paket.game-paket .pricing-box .cell:last-child::before {
    border-right: 50px solid #5f2eee;
}

.host-paket.game-paket ul li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.host-paket.game-paket ul li:last-child {
    border-bottom: 0;
}

.host-paket.game-paket .sepete-ekle {
    background-color: #5f2eee;
}

.host-paket.red-paket {
    margin-left: 0 !important;
    max-width: 280px;
    border: none;
    border-radius: 30px;
}

.host-paket.red-paket .title {
    font-size: 32px;
}

.host-paket.red-paket .pricing-box .cell:last-child {
    background-color: #990a32;
}

.host-paket.red-paket .pricing-box .cell:last-child::before {
    border-right: 50px solid #990a32;
}

.host-paket.red-paket ul li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.host-paket.red-paket ul li:last-child {
    border-bottom: 0;
}

.host-paket.red-paket .sepete-ekle {
    background-color: #990a32;
}

.host-paket.yellow-paket {
    margin-left: 0 !important;
    max-width: 280px;
    border: none;
    border-radius: 30px;
}

.host-paket.yellow-paket .title {
    font-size: 32px;
}

.host-paket.yellow-paket .pricing-box .cell:last-child {
    background-color: #fbb100;
}

.host-paket.yellow-paket .pricing-box .cell:last-child::before {
    border-right: 50px solid #fbb100;
}

.host-paket.yellow-paket ul li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.host-paket.yellow-paket ul li:last-child {
    border-bottom: 0;
}

.host-paket.yellow-paket .sepete-ekle {
    background-color: #fbb100;
}

.host-paket .title {
    font-size: 23px;
    color: #2d2d2d;
}

.host-paket > p {
    color: #858585;
    font-size: 16px;
}

.host-paket ul li {
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 5px;
}

.host-paket ul li.green {
    color: #29a71a;
}

.host-paket ul li.grey {
    color: #008afb;
}

.host-paket ul li.blue {
    color: #008afb;
}

.host-paket ul li.purple {
    color: #5f2eee;
}

.host-paket ul li.darkpurple {
    color: #25285a;
}

.host-paket .sepete-ekle {
    width: 100%;
    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: #fff;
    border-radius: 10px;
    height: 60px;
    background-color: #008afb;
    margin-top: 10px;
}

.host-paket .pricing-box {
    background-color: #3d3d3d;
    width: 100%;
    height: 75px;
    overflow: hidden;
    border-radius: 7px !important;
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.host-paket .pricing-box .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 75px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.host-paket .pricing-box .cell b {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
}

.host-paket .pricing-box .cell span {
    text-decoration: line-through;
}

.host-paket .pricing-box .cell:first-child {
    margin-right: 30px;
}

.host-paket .pricing-box .cell:last-child {
    -webkit-box-flex: 1.4;
    -ms-flex: 1.4;
    flex: 1.4;
    position: relative;
    background-color: #008afb;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.host-paket .pricing-box .cell:last-child::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 75px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 50px solid #008afb;
    position: absolute;
    top: 0;
    left: -50px;
}

.page-in-links {
    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;
    margin-top: 10px;
    height: 100%;
}

.page-in-links a {
    display: block;
    z-index: 999;
    padding: 0 15px;
    border-right: 1px solid #fff;
}

.page-in-links a.active {
    font-weight: 900;
}

.page-in-links a:last-child {
    border-right: 0;
}

.kurumsal-head {
    margin-bottom: 20px;
}

.kurumsal-head h2 {
    color: #25285a;
    font-size: 36px;
    font-weight: 900;
}

.kurumsal-head p {
    font-size: 16px;
    color: #161616;
}

.banka-item {
    width: 100%;
    min-height: 250px;
    border-radius: 7px;
    background-color: #25285a;
    padding: 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.banka-item .image {
    width: 190px;
    height: 190px;
    border-radius: 15px;
    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;
    margin-right: 20px;
}

.banka-item .image img {
    max-width: 90%;
    height: auto;
}

.banka-item .text ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #fff;
    margin-bottom: 5px;
}

.sozlesme-item {
    width: 100%;
    padding: 20px;
    border-radius: 7px;
    background-color: #25285a;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sozlesme-item span {
    font-size: 54px;
    margin-right: 20px;
}

.iletisim-input {
    margin-bottom: 15px;
}

.iletisim-input b {
    display: block;
    margin-bottom: 5px;
    font-size: 22px;
    color: #2b2b2b;
}

.iletisim-input textarea {
    width: 100%;
    height: 128px;
    border-radius: 5px;
    background-color: #25285a;
    color: #fff;
    padding: 20px;
    font-size: 17px;
}

.iletisim-input input {
    width: 100%;
    height: 60px;
    border-radius: 5px;
    background-color: #25285a;
    color: #fff;
    text-indent: 20px;
    font-size: 17px;
}

.security-code {
    width: 100%;
    height: 64px;
    border-radius: 5px;
    background-color: #25285a;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
}

.security-code input {
    height: 40px;
}

.security-code small {
    margin-left: 20px;
    font-size: 12px;
}

.send-iletisim {
    width: 100%;
    height: 64px;
    border-radius: 5px;
    background-color: #008afb;
    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;
    font-size: 22px;
}

.bilgi-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px;
}

.bilgi-item span {
    margin-right: 20px;
    font-size: 48px;
    color: #25285a;
}

.bilgi-item .text b {
    font-size: 18px;
    font-weight: 700;
    color: #25285a;
}

.bilgi-item .text p {
    color: #2b2b2b;
    font-weight: 600;
}


.bilgi-item .text p {
    min-height: 70px !important;
}


.info-box-wrap {
    width: 100%;
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    font-size: 20px;
    background-image: linear-gradient(45deg, #292929 0%, black 99%);
    margin-bottom: 30px;
    margin-top: 20px;
}

section.faq {
    padding: 40px 0;
    background-color: #fff;
}

section.faq.lightred h3 {
    color: #ca121b;
}

section.faq.lightred .faq-item {
    background-color: #282828 !important;
}

section.faq.lightred .faq-item .faq-head {
    background-color: #ca121b !important;
    color: #fff;
}

section.faq.lightred .faq-item .faq-body {
    background-color: #282828 !important;
}

section.faq.purple h3 {
    color: #25285a;
}

section.faq.purple .faq-item {
    background-color: #25285a !important;
}

section.faq.purple .faq-item .faq-head {
    background-color: #575757 !important;
    color: #fff;
}

section.faq.purple .faq-item .faq-body {
    background-color: #25285a !important;
}

section.faq.dark-purple {
    background-color: #25285a;
}

section.faq.dark-purple h3 {
    color: #fff;
}

section.faq.dark-purple .faq-item {
    background-color: #282828 !important;
}

section.faq.dark-purple .faq-item .faq-head {
    background-color: #5f2eee !important;
    color: #fff;
}

section.faq.dark-purple .faq-item .faq-body {
    background-color: #282828 !important;
}

section.faq .faq-item {
    width: 100%;
    background-color: #282828;
    border-radius: 10px;
    margin-bottom: 10px;
}

section.faq .faq-item .faq-head {
    font-size: 16px;
    background-color: #fbb100;
    height: 47px;
    width: 100%;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    color: #282828;
    cursor: pointer;
}

section.faq .faq-item .faq-body {
    background-color: #282828;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    border-radius: 0 0 10px 10px;
    display: none;
}

.host-spec-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
}

.host-spec-wrap .host-spec-mini {
    margin: 0 !important;
}

.host-spec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #2d2d2d;
    font-size: 13px;
    padding: 10px;
    font-weight: 700;
}

.host-spec span {
    font-size: 36px;
    color: #2d2d2d;
}

.host-spec.host-spec-mini {
    padding: 0 !important;
    font-size: 11px;
}

.host-spec.host-spec-mini span {
    font-size: 30px;
}

.hesap-stat {
    width: 100%;
    height: 108px;
    border-radius: 10px;
    background-color: #008afb;
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
}

.hesap-stat.purple {
    background-color: #5f2eee;
}

.hesap-stat.red {
    background-color: #dc1b1b;
}

.hesap-stat span {
    margin-right: 15px;
    font-size: 60px;
}

.hesap-stat .text b {
    font-size: 38px;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.hesap-stat .text p {
    font-size: 18px;
    line-height: 1;
}

.hesap-link-box {
    width: 100%;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 10px;
}

.hesap-link-box .title {
    color: #25285a;
    font-weight: 900;
    margin-bottom: 10px;
    display: block;
    font-size: 30px;
}

.hesap-link-box a {
    display: block;
    width: 100%;
    font-size: 18px;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 700;
    -webkit-transition: .2s all;
    transition: .2s all;
}

.hesap-link-box a:hover {
    color: #25285a;
    padding-left: 5px;
}

.hesap-content-box {
    max-height: none !important;
    height: auto !important;
}

.hesap-content-box .col-md-6 {
    border: none !important;
}

.hesap-form-item {
    margin-bottom: 13px;
}

.hesap-form-item input {
    width: 100%;
    height: 47px;
    background-color: #f5f4f8;
    padding-left: 20px;
    font-size: 17px;
    color: #252525;
    font-weight: 700;
    -webkit-transition: .2s all;
    transition: .2s all;
}

.hesap-form-item input:focus {
    padding-left: 25px;
}

.hesap-form-item input::-webkit-input-placeholder {
    color: #252525;
}

.hesap-form-item input:-ms-input-placeholder {
    color: #252525;
}

.hesap-form-item input::-ms-input-placeholder {
    color: #252525;
}

.hesap-form-item input::placeholder {
    color: #252525;
}

.hesap-form-item textarea {
    width: 100%;
    height: 130px;
    background-color: #f5f4f8;
    padding-left: 20px;
    font-size: 17px;
    color: #252525;
    font-weight: 700;
    padding-top: 15px;
    -webkit-transition: .2s all;
    transition: .2s all;
}

.hesap-form-item textarea:focus {
    padding-left: 25px;
}

.hesap-form-item textarea::-webkit-input-placeholder {
    color: #252525;
}

.hesap-form-item textarea:-ms-input-placeholder {
    color: #252525;
}

.hesap-form-item textarea::-ms-input-placeholder {
    color: #252525;
}

.hesap-form-item textarea::placeholder {
    color: #252525;
}

.hesap-form-item .select {
    position: relative;
}

.hesap-form-item .select span {
    position: absolute;
    top: 30%;
    right: 15px;
}

.hesap-form-item .select select {
    width: 100%;
    height: 47px;
    background-color: #f5f4f8;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 20px;
    font-size: 17px;
    color: #252525;
    font-weight: 700;
    -webkit-transition: .2s all;
    transition: .2s all;
}

.hesap-form-item .select select:focus {
    padding-left: 25px;
}

.newsletter-kayit {
    padding: 15px;
    background-color: #eaeaea;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.newsletter-kayit .text {
    font-size: 17px;
    color: #252525;
}

.newsletter-kayit .text b {
    color: #009fdd;
}

.newsletter-kayit .check-container-2 {
    margin: 0 !important;
    padding: 0 !important;
    width: 120px;
    height: 50px;
}

.newsletter-kayit .check-container-2 .checkmark {
    width: 50px;
    height: 50px;
}

.newsletter-kayit .check-container-2 .checkmark::after {
    left: 18px;
    top: 8px;
    width: 12px;
    height: 24px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.save-changes {
    padding: 0 20px;
    height: 47px;
    background-color: #5f2eee;
    color: #fff;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    border-radius: 5px;
    font-size: 20px;
    font-weight: 900;
    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;
}

.save-changes small {
    font-weight: 400;
    font-size: 18px;
}

.save-changes.blue {
    background-color: #008afb;
}

.save-changes.red {
    background-color: #d41c1c;
}

.save-changes.grey {
    background-color: #292929;
}

.hesap-tab {
    display: none;
    min-height: 762px;
}

.hesap-tab.no-min-h {
    min-height: auto !important;
}

.hesap-tab.show-tab {
    display: block;
}

.sorumluluk-box {
    width: 100%;
    background-color: #008afb;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sorumluluk-box p {
    color: #fff;
    font-size: 18px;
}

.sorumluluk-box .select {
    position: relative;
    width: 305px;
}

.sorumluluk-box .select span {
    position: absolute;
    top: 30%;
    right: 15px;
}

.sorumluluk-box .select select {
    width: 100%;
    height: 47px;
    background-color: #f5f4f8;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 20px;
    font-size: 17px;
    color: #252525;
    font-weight: 700;
    -webkit-transition: .2s all;
    transition: .2s all;
}

.sorumluluk-box .select select:focus {
    padding-left: 25px;
}

.sorumluluk-box button {
    width: 202px;
    height: 47px;
    background-color: #252525;
    color: #fff;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    border-radius: 5px;
    font-size: 17px;
    font-weight: 700;
    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;
}

.form-info {
    padding: 0 20px;
    width: 100%;
    margin: 10px 0;
    color: rgba(29, 29, 29, 0.8);
}

.line {
    display: block;
    width: 100%;
    height: 2px;
    margin: 30px 0;
    background-color: rgba(29, 29, 29, 0.5);
}

.dogrulama-box {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(29, 29, 29, 0.3);
    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;
}

.dogrulama-box p {
    font-size: 20px;
    font-weight: 700;
    color: #2f2f2f;
}

.dogrulama-box span {
    padding: 0 10px;
    height: 45px;
    color: #fff;
    font-size: 18px;
    border-radius: 45px;
    font-weight: 700;
}

.dogrulama-box span.red {
    background-color: #e50000;
}

.dogrulama-box span.blue {
    background-color: #008afb;
}

.table-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.table-head p {
    font-size: 14px;
    color: rgba(47, 47, 47, 0.7);
}

.table-head .search {
    width: 207px;
    height: 37px;
    background-color: #f5f4f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-head .search span {
    margin: 0 5px;
    color: #002b3c;
}

.table-head .search input {
    background-color: #f5f4f8;
}

.table-wrap {
    overflow-x: auto;
}

table.sortable {
    width: 100%;
    min-width: 700px;
}

table.sortable.blue-table thead {
    background-color: #008afb;
}

table.sortable.blue-table tbody tr.blue {
    background-color: rgba(0, 138, 251, 0.1);
}

table.sortable.blue-table tbody tr td {
    color: #002b3c;
}

table.sortable thead {
    width: 100%;
    background-color: #5f2eee;
}

table.sortable thead th {
    font-size: 16px;
    font-weight: 700;
    height: 42px;
    line-height: 42px;
    padding-left: 10px;
    color: #fff;
    cursor: pointer;
}

table.sortable thead th:hover {
    background-color: #252525;
}

table.sortable tbody {
    width: 100%;
    background-color: #fff;
}

table.sortable tbody tr {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

table.sortable tbody tr:last-child {
    border-bottom: 0;
}

table.sortable tbody td {
    font-size: 16px;
    font-weight: 700;
    color: #2f2f2f;
    padding: 15px 0 15px 10px;
    position: relative;
}

table.sortable tbody td > a {
    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: #fff;
    width: 218px;
    height: 37px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    background-color: #008afb;
}

table.sortable tbody td > a.mini-btn {
    width: 80px;
}

table.sortable tbody td .status {
    font-size: 16px;
    font-weight: 900;
    color: #008afb;
}

table.sortable tbody td .status.red {
    color: #d41c1c;
}

#sorttable_sortfwdind, #sorttable_sortrevind {
    display: none;
}

.table-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.table-footer.blue-footer .limiter span {
    background-color: #008afb;
}

.table-footer.blue-footer .paginate button {
    background-color: #008afb;
}

.table-footer .limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-footer .limiter select {
    background-color: #252525;
    color: #fff;
    border: none !important;
    padding: 0 5px;
    height: 40px;
    border-radius: 5px 0 0 5px;
}

.table-footer .limiter span {
    height: 40px;
    padding: 0 7px;
    background-color: #5f2eee;
    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;
    border-radius: 0 5px 5px 0;
}

.table-footer .paginate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.table-footer .paginate button {
    height: 40px;
    padding: 0 7px;
    background-color: #5f2eee;
    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;
    border-radius: 5px 0 0 5px;
}

.table-footer .paginate button:last-child {
    border-radius: 0 5px 5px 0;
}

.table-footer .paginate span {
    background-color: #252525;
    color: #fff;
    border: none !important;
    padding: 0 10px;
    height: 40px;
    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;
}

.sorumlular-box {
    width: 100%;
    padding: 15px;
    background-color: #292929;
    margin-bottom: 20px;
    color: #fff;
}

.sorumlular-box .title {
    font-size: 20px;
    font-weight: 700;
}

.sorumlular-box > p {
    color: rgba(255, 255, 255, 0.719);
}

.sorumlular-box .sorumlu-item {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.sorumlular-box .sorumlu-item b {
    font-size: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.sorumlular-box .sorumlu-item p {
    color: rgba(255, 255, 255, 0.719);
}

.sorumlular-box .sorumlu-item .badge {
    height: 20px;
    border-radius: 20px;
    background-color: #fff;
    color: #008afb;
    padding: 0 10px;
    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;
    margin: 0 10px;
}

.sorumlular-box .sorumlu-item a {
    width: 150px;
    height: 33px;
    border-radius: 5px;
    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: #fff;
    font-size: 14px;
}

.sorumlular-box .sorumlu-item a.settings {
    background-color: #5f2eee;
}

.sorumlular-box .sorumlu-item a.delete {
    background-color: #d41c1c;
}

.domain-item-hesap {
    width: 100%;
    padding: 15px;
    background-color: #292929;
    margin-bottom: 20px;
    color: #fff;
}

.domain-item-hesap .domain-name {
    width: 100%;
    padding: 14px 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.domain-item-hesap .domain-name b {
    font-size: 22px;
}

.domain-item-hesap ul {
    padding: 20px;
}

.domain-item-hesap ul li {
    margin-top: 15px;
}

.mini-button {
    width: 168px;
    height: 35px;
    border-radius: 5px;
    background-color: #008afb;
    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;
    font-size: 14px;
    -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    margin-right: 10px;
}

.mini-button.purple {
    background-color: #5f2eee;
}

.mini-button.dark {
    background-color: #141414;
}

.no-ns {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: rgba(41, 41, 41, 0.11);
}

.ns-table {
    width: 100%;
}

.ns-table thead {
    border-bottom: 2px solid #eee;
}

.ns-table thead th {
    padding: 10px 0;
    font-weight: 700;
    color: #252525;
}

.ns-table tbody tr td {
    padding: 5px 0;
}

.ns-table tbody tr td a {
    height: 24px;
    padding: 0 7px;
    border-radius: 5px;
    background-color: #008afb;
    color: #fff;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
    margin-right: 5px;
}

.ns-table tbody tr td a:last-child {
    background-color: #d41c1c;
}

.epp-kodu {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #eee;
    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;
    font-size: 20px;
    color: #5f2eee;
    font-weight: 600;
}

.epp-kodu b {
    font-weight: 900;
}

.sepet-tab {
    display: none;
}

.sepet-tab.show-tab {
    display: block;
}

.circle-number {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    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;
    margin-right: 7px;
}

.notif-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.notif-table {
    /*max-width: 1100px;
  width: 1100px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 6px 6px 0 0;*/
    max-width: 1100px;
    width: 100%;
    min-width: 1000px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 6px 6px 0 0;
}

.notif-table thead {
    width: 100%;
    background-color: #292929;
}

.notif-table thead th {
    padding: 12px 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.notif-table thead th:first-child {
    border-radius: 5px 0 0 0;
}

.notif-table thead th:last-child {
    border-radius: 0 5px 0 0;
}

.notif-table tbody tr {
    border-bottom: 1px solid rgba(153, 153, 153, 0.281);
}

.notif-table tbody tr.aktif {
    background-color: #008afb;
}

.notif-table tbody tr.aktif td {
    color: #fff;
    border-bottom: 1px solid rgba(238, 238, 238, 0.281);
}

.notif-table tbody tr.aktif-mor {
    background-color: #5f2eee;
}

.notif-table tbody tr.aktif-mor td {
    color: #fff;
    border-bottom: 1px solid rgba(238, 238, 238, 0.281);
}

.notif-table tbody tr td {
    padding: 12px 10px;
    color: #252525;
    font-weight: 600;
}

.notif-table tbody tr td.bold {
    font-weight: 900;
}

.btn-wrap {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0 0 5px 5px;
}

.btn-wrap .see-all-notif {
    width: 100%;
    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;
    border-radius: 0 0 5px 5px;
    padding: 5px 0;
    background-color: rgba(41, 41, 41, 0.2);
    color: #252525;
    font-weight: 900;
}

.text-shadow {
    text-shadow: 0px 0px 15px black;
}

section.features {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

section.features.features-light {
    background-color: #fff;
}

section.features.features-light .features-item-game.reverse span::before {
    content: url(../img/chain-2.png);
    position: absolute;
    bottom: -62%;
    right: 45%;
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

section.features.features-light .features-item-game span {
    background-color: rgba(37, 40, 90, 0.1);
    color: #292929;
    position: relative;
}



section.features.features-light .features-item-game .text b {
    color: #292929;
}

.features-item-game {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 55px;
}

.features-item-game.reverse span {
    margin-right: 0;
    margin-left: 0;
}

.features-item-game.reverse .text {
    margin-right: 15px;
    text-align: end;
}

.features-item-game:last-child {
    margin-bottom: 0px;
}

.features-item-game:last-child span::before {
    display: none;
}

.features-item-game.purple span {
    background-color: #5f2eee;
}

.features-item-game span {
    width: 119px;
    height: 119px;
    border-radius: 10px;
    background-color: #008afb;
    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;
    font-size: 70px;
    color: #fff;
    margin-right: 15px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}



.features-item-game .text {
    max-width: 370px;
}

.features-item-game .text b {
    font-size: 21px;
    color: #000;
    font-weight: 900;
    margin-bottom: 5px;
    display: block;
}

.features-item-game .text p {
    font-size: 15px;
    color: #848484;
}

.dedicated-titles {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

.dedicated-titles span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.dedicated-titles span:last-child {
    min-width: 190px;
}

.dedicated-wrapper .dedicated-item:nth-child(even) {
    background-color: #fff;
}

.dedicated-wrapper .dedicated-item:nth-child(even) .cell span {
    color: #292929;
}

.dedicated-wrapper .dedicated-item:nth-child(even) .price {
    color: #292929 !important;
}

.dedicated-item {
    width: 100%;
    min-height: 63px;
    max-height: 63px;
    border-radius: 63px;
    background-color: #008afb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.dedicated-item.white {
    background-color: #fff;
}

.dedicated-item.white .cell span {
    color: #292929;
}

.dedicated-item.white .price {
    color: #292929 !important;
}

.dedicated-item .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.dedicated-item .cell:last-child {
    min-width: 190px;
}

.dedicated-item .cell span {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.dedicated-item .cell-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.dedicated-item .cell-row a {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #292929;
    color: #fff;
    font-size: 16px;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1;
}

.dedicated-item .cell-row a .fa-shopping-basket {
    margin-top: 5px;
    line-height: 0;
    margin-bottom: -5px;
}

.dedicated-item .cell-row .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    color: #fff;
    margin-left: 10px;
    line-height: 1;
}

.dedicated-item .cell-row .price b {
    font-size: 26px;
}

.dedicated-item .cell-row .price small {
    font-size: 14px;
}

.white-border::before {
    background-color: #fff !important;
}

.genel-oyunlar {
    width: 100%;
    padding: 40px 0;
    background-color: #191919;
}

.genel-oyunlar .genel-item {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}

.genel-oyunlar .genel-item.red .bottom a {
    background-color: #c32f09;
}

.genel-oyunlar .genel-item.brown .bottom a {
    background-color: #4b2f11;
}

.genel-oyunlar .genel-item.blue .bottom a {
    background-color: #445466;
}

.genel-oyunlar .genel-item.green .bottom a {
    background-color: #183313;
}

.genel-oyunlar .genel-item.dark .bottom a {
    background-color: #2b2b2b;
}

.genel-oyunlar .genel-item .image {
    width: 100%;
    height: 234px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.genel-oyunlar .genel-item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.genel-oyunlar .genel-item .title {
    width: 100%;
    display: block;
    text-align: center;
    color: #292929;
    font-size: 20px;
    font-weight: 900;
}

.genel-oyunlar .genel-item .bottom {
    margin-top: 10px;
}

.genel-oyunlar .genel-item .bottom p {
    text-align: end;
    font-weight: 600;
    font-size: 14px;
}

.genel-oyunlar .genel-item .bottom a {
    width: 100%;
    height: 47px;
    border-radius: 5px;
    background-color: #5f2eee;
    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;
}

.yazilim-wrapper {
    padding: 40px 0;
    background-color: rgba(255, 255, 255, 0.6);
}

.yazilim-ara {
    width: 100%;
    height: 80px;
    border-radius: 10px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.yazilim-ara button {
    font-size: 24px;
    margin-right: 5px;
    color: #25285a;
}

.yazilim-ara input {
    font-size: 24px;
    color: #25285a;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 100%;
    width: 100px;
}

.yazilim-ara input::-webkit-input-placeholder {
    color: #25285a;
    font-weight: 900;
}

.yazilim-ara input:-ms-input-placeholder {
    color: #25285a;
    font-weight: 900;
}

.yazilim-ara input::-ms-input-placeholder {
    color: #25285a;
    font-weight: 900;
}

.yazilim-ara input::placeholder {
    color: #25285a;
    font-weight: 900;
}

.yazilim-kategori {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 30px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.yazilim-kategori a {
    display: block;
    font-size: 18px;
    color: #292929;
    font-weight: 600;
    margin-top: 5px;
}

.yazilim-kategori .title {
    font-size: 24px;
    color: #25285a;
    font-weight: 900;
}

.yazilim-links {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
}

.yazilim-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #25285a;
    font-weight: 600;
    padding: 10px 0;
}

.yazilim-links a span {
    font-size: 42px;
}

.yazilim-item {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.yazilim-item .image {
    width: 100%;
    height: 234px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.yazilim-item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.yazilim-item .title {
    width: 100%;
    display: block;
    text-align: center;
    color: #292929;
    font-size: 20px;
    font-weight: 900;
}

.yazilim-item .bottom {
    margin-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.yazilim-item .bottom .detail {
    width: 120px;
    height: 47px;
    border-radius: 5px;
    background-color: #008afb;
    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;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
}

.yazilim-item .bottom .sepetekle {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 47px;
    border-radius: 5px;
    background-color: #5f2eee;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    padding: 0 0 0 10px;
    font-weight: 600;
}

.yazilim-item .bottom .sepetekle span {
    width: 100px;
    height: 47px;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50px 0 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 10px;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 100%);
}

.yazilim-features {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 30px;
}

.yazilim-features.purple ul li span {
    color: #25285a;
}

.yazilim-features ul li {
    margin-bottom: 5px;
    color: #292929;
    font-size: 18px;
    font-weight: 700;
}

.yazilim-features ul li span {
    color: #008afb;
}

.yazilim-features .socials {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    padding: 10px 0;
}

.yazilim-features .socials a {
    font-size: 30px;
    color: #25285a;
}

.yazilim-actions {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    margin-bottom: 30px;
}

.yazilim-actions .price {
    width: 100%;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    background-color: #008afb;
}

.yazilim-actions .price b {
    font-size: 38px;
}

.yazilim-actions .price p {
    font-size: 24px;
}

.yazilim-actions a {
    padding: 10px 20px;
    color: #292929;
    font-size: 20px;
    display: block;
    font-weight: 700;
    border-bottom: 1px solid #eee;
}

.yazilim-actions a.buy {
    background-color: #5f2eee;
    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;
}

.yazilim-detay-box {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.yazilim-detay-box .image {
    width: 100%;
    max-height: 390px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.yazilim-detay-box .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.yazilim-detay-box h4 {
    font-weight: 900;
    color: #292929;
    margin-bottom: 5px;
}

.yazilim-detay-box p {
    font-size: 16px;
    color: #292929;
    margin-bottom: 15px;
}

.yazilim-detay-box .faq-item {
    width: 100%;
    background-color: rgba(239, 239, 239, 0.5);
    border-radius: 10px;
    margin-bottom: 10px;
}

.yazilim-detay-box .faq-item .faq-head {
    font-size: 18px;
    background-color: #efefef;
    height: 47px;
    width: 100%;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    color: #25285a;
    font-weight: 900;
    cursor: pointer;
}

.yazilim-detay-box .faq-item .faq-body {
    background-color: rgba(239, 239, 239, 0.5);
    padding: 10px;
    color: #292929;
    font-size: 16px;
    border-radius: 0 0 10px 10px;
    display: none;
}

.lisans-paketler.orange .title b {
    color: #fa6e1c;
}

.lisans-paketler.orange .lisans-item:nth-child(even) {
    background-color: #fa6e1c;
}

.lisans-paketler.orange .lisans-item:nth-child(even) span {
    color: #fff;
}

.lisans-paketler.blue .title b {
    color: #51bbe6;
}

.lisans-paketler.blue .lisans-head span {
    color: #fff;
}

.lisans-paketler.blue .lisans-item:nth-child(even) {
    background-color: #51bbe6;
}

.lisans-paketler.blue .lisans-item:nth-child(even) span {
    color: #fff;
}

.lisans-paketler.purple .title b {
    color: #25285a;
}

.lisans-paketler.purple .lisans-head span {
    color: #292929;
}

.lisans-paketler.purple .lisans-item:nth-child(even) {
    background-color: #25285a;
}

.lisans-paketler.purple .lisans-item:nth-child(even) span {
    color: #fff;
}

.lisans-paketler.purple .lisans-item:nth-child(even) span img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.lisans-paketler.yellow .title span {
    color: #fff;
}

.lisans-paketler.yellow .title b {
    color: #fff;
}

.lisans-paketler.yellow .lisans-head span {
    color: #fff;
}

.lisans-paketler.yellow .lisans-item:nth-child(even) {
    background-color: #f4b120;
}

.lisans-paketler.yellow .lisans-item:nth-child(even) span {
    color: #fff;
}

.lisans-paketler.red .title span {
    color: #fff;
}

.lisans-paketler.red .title b {
    color: #fff;
}

.lisans-paketler.red .lisans-head span {
    color: #fff;
}

.lisans-paketler.red .lisans-item:nth-child(even) {
    background-color: #c03111;
}

.lisans-paketler.red .lisans-item:nth-child(even) span {
    color: #fff;
}

.lisans-paketler .title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 40px;
}

.lisans-paketler .title span {
    color: #292929;
}

.lisans-paketler .title b {
    font-size: 32px;
    font-weight: 900;
}

.lisans-paketler .lisans-head {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 10px;
    padding: 0 20px;
}

.lisans-paketler .lisans-head span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 20px;
    color: #292929;
    font-weight: 700;
    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;
    text-align: center;
}

.lisans-paketler .lisans-head span:last-child {
    min-width: 250px;
    max-width: 250px;
}

.lisans-paketler .lisans-item {
    width: 100%;
    height: 62px;
    border-radius: 62px;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.lisans-paketler .lisans-item span {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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;
    text-align: center;
    font-size: 18px;
    color: #292929;
    font-weight: 700;
}

.lisans-paketler .lisans-item span a {
    width: 145px;
    height: 45px;
    border-radius: 45px;
    background-color: #292929;
    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: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
}

.lisans-paketler .lisans-item span:last-child {
    min-width: 250px;
    max-width: 250px;
}

.lisans-paketler .lisans-item span .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    line-height: 1;
}

.lisans-paketler .lisans-item span .price b {
    font-size: 26px;
}

.lisans-paketler .lisans-item span .price small {
    font-size: 14px;
}

.lisans-features {
    width: 100%;
    margin-top: 40px;
}

.lisans-feature {
    width: 100%;
    height: 176px;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
}

.lisans-feature b {
    font-size: 54px;
    line-height: 1;
}

.lisans-feature span {
    font-size: 40px;
    line-height: 1;
}

.lisans-feature.blue {
    background-color: rgba(0, 138, 251, 0.9);
}

.lisans-feature.yellow {
    background-color: rgba(244, 177, 32, 0.9);
}

.lisans-feature.red {
    background-color: rgba(192, 49, 17, 0.9);
}

.ticaret-table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.eticaret-table-wrap {
    max-width: 1125px;
    width: 100%;
    background-color: #eeeeee;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.eticaret-table-wrap .table-left {
    padding-top: 160px;
    min-width: 288px;
    max-width: 288px;
}

.eticaret-table-wrap .table-left span {
    display: block;
    padding: 5px 10px;
    border-bottom: 1px solid #29292949;
    color: #292929;
    font-weight: 700;
}

.eticaret-table-wrap .table-left span:last-child {
    border-bottom: 0;
}

.eticaret-table-wrap .table-right {
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 15px;
}

.eticaret-table-wrap .table-right .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
    min-width: calc(100% - 288px);
}

.eticaret-table-wrap .table-right .col-4 {
    min-width: 275px !important;
    max-width: 275px !important;
}

.eticaret-table-wrap .table-right .item {
    padding: 10px 0;
}

.eticaret-table-wrap .table-right .item .item-head {
    padding: 5px 10px;
    height: 150px;
}

.eticaret-table-wrap .table-right .item > span {
    display: block;
    padding: 5px 0px;
    border-bottom: 1px solid #29292949;
    color: #292929;
    font-weight: 700;
    text-align: center;
}

.eticaret-table-wrap .table-right .item > span:last-child {
    border-bottom: 0;
}

.eticaret-table-wrap .table-right .item > span:nth-last-child(2) {
    border-bottom: 0;
}

.eticaret-table-wrap .table-right .item a {
    width: 250px;
    height: 60px;
    border-radius: 10px;
    background-color: #3d3d3d;
    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: #fff;
    margin: 0 auto;
}

.eticaret-table-wrap .table-right .item .title {
    font-size: 32px;
    color: #ca121b;
    font-weight: 900;
    margin-bottom: 10px;
}

.eticaret-table-wrap .table-right .item .pricing-box {
    background-color: #3d3d3d;
    width: 100%;
    height: 75px;
    overflow: hidden;
    border-radius: 7px !important;
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.eticaret-table-wrap .table-right .item .pricing-box .cell {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 75px;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 14px;
}

.eticaret-table-wrap .table-right .item .pricing-box .cell b {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
}

.eticaret-table-wrap .table-right .item .pricing-box .cell span {
    text-decoration: line-through;
}

.eticaret-table-wrap .table-right .item .pricing-box .cell:first-child {
    margin-right: 30px;
}

.eticaret-table-wrap .table-right .item .pricing-box .cell:last-child {
    -webkit-box-flex: 1.4;
    -ms-flex: 1.4;
    flex: 1.4;
    position: relative;
    background-color: #ca121b;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.eticaret-table-wrap .table-right .item .pricing-box .cell:last-child::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 75px solid transparent;
    border-bottom: 0px solid transparent;
    border-right: 50px solid #ca121b;
    position: absolute;
    top: 0;
    left: -50px;
}

.slide-yazilim-item .image {
    width: 300px;
    height: 200px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

.slide-yazilim-item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slide-yazilim-item a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 300px;
    font-size: 15px;
    color: #292929;
    font-weight: 700;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.yazilim-slider {
    margin-bottom: 40px;
    margin-top: 20px;
}

.yazilim-slider .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.yazilim-slider .swiper-button-prev {
    width: auto;
    height: auto;
    margin-top: -52.5px;
    left: -80px;
}

.yazilim-slider .swiper-button-prev:after {
    display: none;
}

.yazilim-slider .swiper-button-next {
    width: auto;
    height: auto;
    margin-top: -52.5px;
    right: -80px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.yazilim-slider .swiper-button-next:after {
    display: none;
}

.info-text {
    padding: 10px;
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.info-text.blue {
    background-color: rgba(3, 133, 242, 0.2);
}

.info-text.red {
    background-color: rgba(212, 28, 28, 0.2);
}

.payment-item {
    height: 47px;
    background-color: #f5f4f8;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.payment-item > span {
    display: block;
    min-width: 200px;
    font-weight: 600;
    font-size: 17px;
}

.payment-item .check-container-2 {
    /* Create a custom checkbox */
    /* On mouse-over, add a grey background color */
    /* When the checkbox is checked, add a blue background */
}

.payment-item .check-container-2 .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    border-radius: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #5f2eee !important;
    margin-top: 3px;
}

.payment-item .check-container-2:hover input ~ .checkmark {
    background-color: #ccc;
}

.payment-item .check-container-2 input:checked ~ .checkmark {
    background-color: #5f2eee !important;
}

.p-info {
    height: 47px;
    color: #5f2eee;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    background-color: #e1e0ec;
}

.modal-bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.modal-bg.show {
    opacity: 1;
    pointer-events: all;
}

.modal-box {
    max-width: 820px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 75px 0px #5c2de4;
    box-shadow: 0px 0px 75px 0px #5c2de4;
    position: fixed;
    top: 100px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(20px);
    transform: translateX(-50%) translateY(20px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: .3s all;
    transition: .3s all;
}

.modal-box.show {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
    pointer-events: all;
}

.text-small li {
    font-size: 14px !important;
}

.font-small {
    margin-bottom: 5px;
    font-size: 14px;
}

.popup-btn {
    border: 1px solid #ccc;
    padding: 3px;
    border-radius: 3px;
}

.popup-box {
    position: absolute;
    right: 5px;
    margin-top: 5px;
    width: 186px;
    height: auto;
    padding: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    background-color: #fff;
    z-index: 999;
    display: none;
}

.popup-box a {
    display: block;
    margin-bottom: 3px;
}

.selected-action {
    margin-top: 10px;
    position: relative;
}

.selected-action .selected-popup {
    width: 255px;
    padding: 10px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    background-color: #fff;
    z-index: 999;
    position: absolute;
    display: none;
}

.selected-action .selected-popup a {
    display: block;
    margin-bottom: 6px;
}

.selected-action button {
    width: 217px;
    height: 41px;
    background-color: #008afb;
    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: #fff;
    border-radius: 5px;
    font-weight: 600;
}

.credit-alert {
    width: 100%;
    padding: 20px;
    background-color: #d41c1c;
    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;
    margin-bottom: 20px;
}

.credit-alert p {
    text-align: center;
    font-size: 19px;
}

.tutarlar p {
    font-size: 17px;
    color: #1d1d1d;
    margin-bottom: 10px;
    font-weight: 600;
}

.tutarlar p b {
    font-weight: 700;
}

.tutar-info {
    color: rgba(255, 255, 255, 100);
    background-color: #d41c1c;
    font-size: 16px;
    margin-bottom: auto;
}

.destek-search {
    width: 100%;
    padding: 10px 20px;
    background-color: #2e2e2e;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.destek-search-input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.destek-search-input input {
    width: 404px;
    height: 33px;
    background-color: #fff;
    border: none;
}

.destek-search-input button {
    width: 80px;
    height: 33px;
    background-color: #535353;
    color: #fff;
}

.destek-search p {
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.521);
}

.destek-categories {
    width: 100%;
    padding: 15px;
    background-color: #5f2eee;
}

.destek-categories .category-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #7a82a3;
    margin-bottom: 20px;
}

.destek-categories .category-item:hover {
    background-color: #3d10c0;
}

.destek-categories .category-item b {
    font-size: 27px;
    font-weight: 700;
}

.destek-categories .category-item p {
    font-size: 13px;
    margin-top: 10px;
}

.destek-title {
    padding: 15px 20px;
    background-color: #5f2eee;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.destek-title .fa-question-circle {
    font-size: 28px;
}

.destek-text {
    padding: 20px;
}

.destek-text p {
    font-size: 17px;
    color: #252525;
    font-weight: 600;
}

.turn-questions {
    width: 175px;
    height: 41px;
    color: #fff;
    margin-top: 15px;
    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;
    border-radius: 5px;
    background-color: #292929;
}

.destek-duyuru {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.destek-duyuru > span {
    width: 71px;
    height: 71px;
    border-radius: 5px;
    background-color: #008afb;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px;
    word-break: break-all;
    font-weight: 600;
    color: #fff;
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
}

.destek-duyuru .text a {
    color: #008afb;
    font-size: 18px;
    font-weight: 700;
}

.destek-duyuru .text p {
    font-size: 16px;
    color: #292929;
    font-weight: 600;
}

.server-status .head {
    padding: 6px 15px;
    background-color: #5f2eee;
    color: #fff;
    font-size: 14px;
}

.server-status .priority {
    background-color: #292929;
    color: #fff;
    font-size: 13px;
    padding: 6px 15px;
}

.server-status .status-row {
    font-size: 17px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-bottom: 1px solid #ccc;
    padding: 10px 15px;
}

.server-status .status-row .row-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #292929;
    font-weight: 600;
}

.server-status .status-row .row-line span {
    min-width: 150px;
}

.yeni-talep {
    position: absolute;
    right: 0;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
}

.yeni-eklenti {
    width: 100%;
    height: 45px;
    background-color: #f5f4f8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #292929;
    padding: 0 20px;
    font-weight: 600;
    font-size: 18px;
}

.yeni-ticket-item a {
    font-size: 17px;
    color: #008afb;
    font-weight: 700;
}

.yeni-ticket-item p {
    color: #2f2f2f;
    font-size: 17px;
    font-weight: 600;
}

.ticket-detay-side {
    padding: 5px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ticket-detay-side span.blue {
    color: #008afb;
    font-weight: 700;
}

.eklenti-mail {
    padding: 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.eklenti-mail input {
    width: 100%;
    height: 38px;
    background-color: #292929;
    border-radius: 5px;
    color: #fff;
    padding-left: 10px;
}

.eklenti-mail input::-webkit-input-placeholder {
    color: #fff;
}

.eklenti-mail input:-ms-input-placeholder {
    color: #fff;
}

.eklenti-mail input::-ms-input-placeholder {
    color: #fff;
}

.eklenti-mail input::placeholder {
    color: #fff;
}

.eklenti-mail button {
    background-color: #5f2eee;
    color: #fff;
    border-radius: 5px;
    color: #fff;
    height: 38px;
    padding: 0 15px;
    margin-top: 5px;
}

.destek-ticket-comment {
    margin-bottom: 10px;
}

.destek-ticket-comment.admin .heading {
    background-color: #5f2eee;
}

.destek-ticket-comment .heading {
    width: 100%;
    height: 42px;
    padding: 0 20px;
    background-color: #008afb;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.destek-ticket-comment .heading p {
    margin-left: 10px;
    font-size: 19px;
}

.destek-ticket-comment .heading p b {
    font-size: 16px;
}

.destek-ticket-comment .heading span {
    margin-left: auto;
}

.destek-ticket-comment .content {
    padding: 10px;
    background-color: #f5f4f8;
    font-weight: 600;
}

.destek-item-general {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #ccc;
}

.destek-item-general .icon {
    font-size: 60px;
    color: #5f2eee;
    margin-right: 10px;
}

.destek-item-general .text a {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #252525;
}

.destek-item-general .text p {
    color: #252525;
}

.grey-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.satis-ort-stats {
    width: 100%;
    color: #fff;
    padding: 30px 50px;
    background-color: #292929;
}

.satis-ort-stats .icon {
    font-size: 60px;
    margin-right: 20px;
}

.satis-ort-stats .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.satis-ort-stats .text b {
    line-height: 1;
    font-weight: 900;
    font-size: 38px;
}

.satis-ort-stats .text span {
    font-size: 18px;
}

.affiliate-link {
    width: 100%;
    padding: 10px 0;
    background-color: #008afb;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.affiliate-link p {
    font-size: 28px;
    font-weight: 700;
}

.affiliate-link span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 8px 0;
    width: 100%;
    font-size: 18px;
    background-color: #0877d1;
}

.komisyonlar {
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 0 0 5px 5px;
    background-color: rgba(255, 255, 255, 0.8);
}

.komisyonlar p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.komisyonlar a {
    width: 200px;
    height: 50px;
    background-color: #008afb;
    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;
    font-size: 18px;
    margin-top: 20px;
}

.komisyonlar span {
    font-weight: 600;
    text-align: center;
    font-size: 16px;
    color: #26262675;
}


.paket-carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.paket-carousel .vds-paket {
    margin: 0 16px;
}

.vds-arrow-left {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    left: -80px;
}

.vds-arrow-right {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-60%) rotate(180deg);
    transform: translateY(-60%) rotate(180deg);
    right: -80px;
}

/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/
/****************RESPONSIVE****************/

@media only screen and (max-width: 1024px) {
    .paket-carousel {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .paket-carousel .vds-paket {
        width: 100% !important;
        max-width: 100% !important;
        margin: 8px 16px;
    }

    .paket-carousel .vds-paket .host-spec {
        padding: 10px !important;
    }
}


@media only screen and (max-width: 1160px) {
    .c-domains-slider .swiper-button-next {
        display: none !important;
    }

    .c-domains-slider .swiper-button-prev {
        display: none !important;
    }

    .c-domains-slider .swiper-button-prev:after, .c-domains-slider .swiper-button-next:after {
        display: none;
    }

    .c-domains-slider .swiper-wrapper {
        margin: 0px;
        max-width: 90vw !important;
    }

    .vds-arrow-left {
        display: none !important;
    }

    .vds-arrow-right {
        display: none !important;
    }
}

@media only screen and (max-width: 992px) {
    .mobile-padd {
        padding: 10px !important;
    }

    .destek-search {
        width: 100%;
        padding: 10px 20px;
        background-color: #2e2e2e;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .destek-search-input {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .destek-search-input input {
        width: 200px;
        height: 33px;
        background-color: #fff;
        border: none;
    }

    .destek-search-input button {
        width: 80px;
        height: 33px;
        background-color: #535353;
        color: #fff;
    }

    .destek-search p {
        margin-top: 10px;
        text-align: center;
        margin-left: 0px;
        color: rgba(255, 255, 255, 0.521);
    }

    .destek-ticket-comment .heading {
        padding: 10px 10px;
        height: auto;
    }

    .destek-ticket-comment .heading p {
        margin-left: 10px;
        font-size: 15px;
    }

    .destek-ticket-comment .heading p b {
        font-size: 16px;
    }

    .destek-ticket-comment .heading span {
        font-size: 12px;
        margin-left: auto;
        text-align: end;
    }

    .mobile-col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .yeni-talep {
        position: static;
        right: 0;
        background-color: #fff;
        padding: 5px 10px;
        border-radius: 10px;
        font-weight: 700;
        font-size: 15px;
        margin-bottom: 10px;
    }

    .payment-item {
        height: 47px;
        background-color: #f5f4f8;
        padding: 0 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .payment-item > span {
        display: block;
        min-width: 80px;
        font-weight: 600;
        font-size: 17px;
    }

    .payment-item .check-container-2 {
        /* Create a custom checkbox */
        font-size: 13px;
        /* On mouse-over, add a grey background color */
        /* When the checkbox is checked, add a blue background */
    }

    .payment-item .check-container-2 .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        border-radius: 20px;
        width: 20px;
        background-color: #fff;
        border: 1px solid #5f2eee !important;
        margin-top: 3px;
    }

    .payment-item .check-container-2:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .payment-item .check-container-2 input:checked ~ .checkmark {
        background-color: #5f2eee !important;
    }

    .p-info {
        height: 47px;
        font-size: 12px;
        color: #5f2eee;
        padding: 0 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-weight: 600;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background-color: #e1e0ec;
    }

    .modal-box {
        max-width: 95%;
        width: 100%;
        max-height: 95vh;
        overflow: auto;
        top: 5px;
    }

    .domain-pricing {
        width: 100%;
        position: relative;
        padding: 80px 0 20px;
        background-image: url(../img/domain-pricing-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        overflow-x: auto;
    }

    .domain-pricing .pricing-table {
        width: 100%;
        border-radius: 15px;
        background-image: -webkit-gradient(linear, left top, right top, from(#1d335a), to(#0d1c38));
        background-image: linear-gradient(to right, #1d335a, #0d1c38);
        padding-bottom: 10px;
        margin-top: 20px;
        min-width: 1180px;
        margin-left: 20px;
    }

    .domain-pricing .pricing-table.host-table .head span {
        padding-left: 30px;
        text-align: start;
        font-size: 26px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .domain-pricing .pricing-table.host-table .head span small {
        font-size: 14px;
        color: #93a6c9;
    }

    .domain-pricing .pricing-table.host-table .t-row span {
        text-align: start;
        padding-left: 30px;
    }

    .domain-pricing .pricing-table .head {
        padding: 15px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .domain-pricing .pricing-table .head span {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        color: #fff;
        text-align: center;
        font-size: 40px;
        font-weight: 900;
    }

    .domain-pricing .pricing-table .t-row {
        width: 100%;
        height: 35px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .domain-pricing .pricing-table .t-row .flex-row {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .domain-pricing .pricing-table .t-row .flex-row a {
        width: 170px;
        height: 40px;
        border-radius: 10px;
        background-color: #008afb;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: -30px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .domain-pricing .pricing-table .t-row .flex-row a.purple {
        background-color: #5f2eee;
    }

    .domain-pricing .pricing-table .t-row span {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        color: #fff;
        text-align: center;
        font-size: 18px;
    }

    .domain-pricing .pricing-table .t-row:nth-child(even) {
        background-color: rgba(12, 22, 39, 0.6);
    }

    .domain-pricing .info-text {
        color: #fff;
        font-size: 14px;
        margin-top: 30px;
        text-align: center;
        margin-bottom: 20px;
    }

    .evrak-slider .swiper-button-prev {
        display: none !important;
    }

    .evrak-slider .swiper-button-next {
        display: none !important;
    }

    .host-paketler-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .purple-text {
        color: #25285a !important;
    }

    .host-paket {
        padding: 20px;
        background-color: #f3f3f3;
        border-radius: 10px;
        border: 6px solid #008afb;
        max-width: 100%;
        width: 100%;
        margin-bottom: 10px;
    }

    .host-paket:nth-child(2) {
        margin-left: 0;
        z-index: 2;
    }

    .host-paket:nth-child(3) {
        margin-left: 0;
        z-index: 3;
    }

    .host-paket:nth-child(4) {
        margin-left: 0;
        z-index: 2;
    }

    .host-paket.purple {
        border: 6px solid #5f2eee;
    }

    .host-paket.purple .pricing-box .cell:last-child {
        background-color: #5f2eee;
    }

    .host-paket.purple .pricing-box .cell:last-child::before {
        border-right: 50px solid #5f2eee;
    }

    .host-paket.purple .sepete-ekle {
        background-color: #5f2eee;
    }

    .host-paket.darkpurple {
        border: 6px solid #25285a;
    }

    .host-paket.darkpurple .pricing-box .cell:last-child {
        background-color: #25285a;
    }

    .host-paket.darkpurple .pricing-box .cell:last-child::before {
        border-right: 50px solid #25285a;
    }

    .host-paket.darkpurple .sepete-ekle {
        background-color: #25285a;
    }

    .host-paket.disabled {
        -webkit-filter: grayscale(100);
        filter: grayscale(100);
    }

    .host-paket .title {
        font-size: 23px;
        color: #2d2d2d;
    }

    .host-paket > p {
        color: #858585;
        font-size: 16px;
    }

    .host-paket ul li {
        color: #2d2d2d;
        font-size: 16px;
        font-weight: 900;
        margin-bottom: 5px;
    }

    .host-paket ul li.green {
        color: #29a71a;
    }

    .host-paket ul li.grey {
        color: #008afb;
    }

    .host-paket ul li.blue {
        color: #008afb;
    }

    .host-paket ul li.purple {
        color: #5f2eee;
    }

    .host-paket ul li.darkpurple {
        color: #25285a;
    }

    .host-paket .sepete-ekle {
        width: 100%;
        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: #fff;
        border-radius: 10px;
        height: 60px;
        background-color: #008afb;
        margin-top: 10px;
    }

    .host-paket .pricing-box {
        background-color: #3d3d3d;
        width: 100%;
        height: 75px;
        overflow: hidden;
        border-radius: 7px !important;
        margin: 10px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .host-paket .pricing-box .cell {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 75px;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .host-paket .pricing-box .cell b {
        font-size: 30px;
        font-weight: 900;
        line-height: 1;
    }

    .host-paket .pricing-box .cell span {
        text-decoration: line-through;
    }

    .host-paket .pricing-box .cell:first-child {
        margin-right: 30px;
    }

    .host-paket .pricing-box .cell:last-child {
        -webkit-box-flex: 1.4;
        -ms-flex: 1.4;
        flex: 1.4;
        position: relative;
        background-color: #008afb;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .host-paket .pricing-box .cell:last-child::before {
        content: "";
        width: 0;
        height: 0;
        border-top: 75px solid transparent;
        border-bottom: 0px solid transparent;
        border-right: 50px solid #008afb;
        position: absolute;
        top: 0;
        left: -50px;
    }

    .main-page-banner .container {
        padding: 30px 10px;
    }

    .main-page-banner .container .sepet-nav {
        width: calc(100% - 30px);
        margin: 0 auto;
        background-color: #fff;
        height: 94px;
        border-radius: 10px 10px 0 0;
        -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
        box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
        padding: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .main-page-banner .container .sepet-nav .item {
        padding: 0 20px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        font-size: 18px;
        font-weight: 900;
        color: #25285a;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    }

    .main-page-banner .container .sepet-nav .item:last-child {
        border-right: 0;
    }

    .main-page-banner .container .sepet-nav .item.active {
        color: #5f2eee;
    }

    .main-page-banner .container .sepet-nav .item:hover {
        color: #5f2eee;
    }

    .main-page-banner .container .sepet-nav .item span {
        font-size: 27px;
    }

    .main-page-banner .container .sepet-content {
        height: auto;
        padding: 30px;
    }

    .main-page-banner .container .sepet-content .content-box {
        width: 100%;
        max-height: none;
        height: auto;
        padding: 15px;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item {
        width: 100%;
        min-height: 160px;
        height: auto;
        background-color: #36373b;
        background-image: -webkit-gradient(linear, left top, right top, from(#5f2eee), color-stop(#5e2eee9f), color-stop(#5e2eee00), to(#5e2eee00));
        background-image: linear-gradient(to right, #5f2eee, #5e2eee9f, #5e2eee00, #5e2eee00);
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row {
        height: 100%;
        padding: 20px !important;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row p {
        font-size: 32px;
        color: #fff;
        width: 100%;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row .pl-3 {
        padding-left: 0 !important;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row span {
        padding-left: 20px;
        font-size: 16px;
        margin-bottom: 10px;
        color: #fff;
        display: block;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row a.sepete-ekle {
        width: 140px;
        height: 47px;
        border-radius: 5px;
        background-color: #5f2eee;
        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;
        margin-right: -20px;
        -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
        box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row .col-md-2:last-child {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row .price {
        width: auto;
        margin-top: 0px;
        color: #fff;
        margin-right: 20px;
        font-size: 21px;
        line-height: 1.1;
    }

    .main-page-banner .container .sepet-content .content-box .paket-item .row .price b {
        font-size: 28px;
        font-weight: 900;
    }

    .main-page-banner .container .sepet-content .content-box .user-login-area {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .main-page-banner .container .sepet-content .content-box .user-login-area .title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .main-page-banner .container .sepet-content .content-box .user-login-area button {
        width: 100%;
    }

    .main-page-banner .container .sepet-content .content-box .user-login-area .login-input {
        width: 100%;
        height: 51px;
        margin-bottom: 10px;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain {
        width: 100%;
        height: auto;
        background-color: #36373b;
        background-image: -webkit-gradient(linear, left top, right top, from(#5f2eee), color-stop(#5e2eee9f), color-stop(#5e2eee00), to(#5e2eee00));
        background-image: linear-gradient(to right, #5f2eee, #5e2eee9f, #5e2eee00, #5e2eee00);
        border-radius: 5px;
        margin-bottom: 20px;
        padding: 20px;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain > p {
        font-size: 18px;
        color: #fff;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain .head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain .head .name {
        color: #fff;
        font-size: 26px;
        font-weight: 900;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain .head .expire {
        margin: 5px 0;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 0px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain-row a {
        width: 100%;
        margin-top: 10px;
        margin-right: 0px;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain .select {
        width: 100%;
        margin-right: 0px;
        height: 54px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: #fff;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain .select span {
        position: absolute;
        width: 60px;
        height: 54px;
        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;
        right: 0;
        background-color: #ebebec;
        font-size: 24px;
    }

    .main-page-banner .container .sepet-content .content-box .renew-domain .select select {
        width: 100%;
        height: 54px;
        padding-left: 10px;
        font-size: 16px;
    }

    .main-page-banner .container .sepet-content .cond-check {
        width: 100%;
        height: 57px;
        border-radius: 5px;
        background-color: #36373b;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .main-page-banner .container .sepet-content .cond-check .check-container {
        height: auto;
        margin-bottom: 0 !important;
    }

    .main-page-banner .container .sepet-content .check-domain {
        width: 100%;
        height: auto !important;
        background-color: #36373b;
        border-radius: 5px;
        margin-bottom: 20px;
        padding: 20px;
    }

    .main-page-banner .container .sepet-content .check-domain-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: 20px;
    }

    .main-page-banner .container .sepet-content .check-domain-row a {
        margin-top: 10px;
        width: 100% !important;
        height: 70px;
        border-radius: 5px;
        background-color: #5f2eee;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 0px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
        box-shadow: 0px 4px 6.51px 0.49px rgba(44, 44, 44, 0.24);
    }

    .main-page-banner .container .sepet-content .check-domain-input {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 0px !important;
    }

    .main-page-banner .container .sepet-content .check-domain-input input {
        max-width: 150px;
    }

    .main-page-banner .container .sepet-content .check-domain-input .select {
        margin-left: auto;
    }

    .main-page-banner .container .register-types {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        padding: 20px;
        height: 100%;
    }

    .main-page-banner .container .register-types p {
        font-size: 18px;
        font-weight: 900;
        color: #25285a;
        margin-bottom: 20px;
    }

    .main-page-banner .container .register-types a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: 22px;
        font-weight: 900;
        color: #008afb;
    }

    .main-page-banner .container .register-types a .fa-user {
        margin-bottom: 5px;
    }

    .main-page-banner .container .form-content-box {
        width: 100%;
        border-radius: 10px;
        min-height: 418px;
        height: auto;
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
        box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.28);
        background-color: #fff;
        background-image: url(../img/sepet-bg.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 20px;
        position: relative;
        z-index: 99;
    }

    .main-page-banner .container .form-content-box .form-title {
        font-size: 24px;
        color: #fff;
        font-weight: 900;
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-page-banner .container .form-content-box .form-title .type-switch {
        margin-left: 30px;
        width: 180px;
        height: 32px;
        border-radius: 32px;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-page-banner .container .form-content-box .form-title .type-switch button {
        font-size: 15px;
        color: #000;
        font-weight: 600;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        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;
        height: 32px;
        border-radius: 32px;
    }

    .main-page-banner .container .form-content-box .form-title .type-switch button:hover {
        background-color: #008afb;
        color: #fff;
    }

    .main-page-banner .container .form-content-box .form-title .type-switch button.active {
        background-color: #008afb;
        color: #fff;
    }

    .main-page-banner .container .form-content-box .row .col-md-6 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .main-page-banner .container .form-content-box .row .col-md-6 > span {
        color: #fff;
        font-size: 18px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 110px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .main-page-banner .container .form-content-box .row .col-md-6 input {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        max-width: 100%;
        height: 44px;
        border-radius: 5px;
        text-indent: 10px;
        margin-left: 15px;
    }

    .main-page-banner .container .form-content-box .row .col-md-6 .select {
        position: relative;
        width: 100%;
        height: 44px;
        max-width: 215px;
        margin-left: 15px;
    }

    .main-page-banner .container .form-content-box .row .col-md-6 .select span {
        position: absolute;
        top: 30%;
        right: 10px !important;
        color: #252525;
    }

    .main-page-banner .container .form-content-box .row .col-md-6 .select select {
        width: 100%;
        height: 44px;
        max-width: 215px;
        border: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        border-radius: 5px;
        padding-left: 20px;
    }

    .page-in-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin-top: 0px;
        height: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .page-in-links a {
        text-align: center;
        width: 33%;
        padding: 0px;
        margin: 10px 0;
        border-right: 0px solid #fff;
    }

    .page-in-links a.active {
        font-weight: 900;
    }

    .page-in-links a:last-child {
        border-right: 0;
    }

    .banka-item {
        width: 100%;
        min-height: 250px;
        border-radius: 7px;
        background-color: #25285a;
        padding: 30px 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        margin-bottom: 15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .banka-item .image {
        width: 100%;
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .security-code {
        width: 100%;
        height: auto;
        border-radius: 5px;
        background-color: #25285a;
        color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 10px 20px;
        margin-bottom: 15px;
    }

    .security-code input {
        height: 40px;
    }

    .security-code small {
        margin-top: 10px;
        margin-left: 0px;
        font-size: 12px;
    }

    .host-paket {
        padding: 20px;
        background-color: #f3f3f3;
        border-radius: 10px;
        border: 6px solid #008afb;
        max-width: 100% !important;
        width: 100%;
    }

    .host-paket.game-paket {
        margin-bottom: 45px;
    }

    .host-paket.game-paket .game-title img {
        left: 0;
    }

    .dedicated-titles {
        display: none;
    }

    .dedicated-wrapper {
        width: 100%;
    }

    .dedicated-item {
        width: 100%;
        min-height: 63px;
        max-height: none;
        border-radius: 63px;
        background-color: #008afb;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .dedicated-item .cell {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        padding: 10px 0;
    }

    .dedicated-item .cell:last-child {
        min-width: 100%;
    }

    .dedicated-item .cell span {
        font-weight: 700;
        font-size: 16px;
        color: #fff;
    }

    .dedicated-item .cell-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .dedicated-item .cell-row a {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: #292929;
        color: #fff;
        font-size: 16px;
        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;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        line-height: 1;
    }

    .dedicated-item .cell-row a .fa-shopping-basket {
        margin-top: 5px;
        line-height: 0;
        margin-bottom: -5px;
    }

    .dedicated-item .cell-row .price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        color: #fff;
        margin-left: 10px;
        line-height: 1;
    }

    .dedicated-item .cell-row .price b {
        font-size: 26px;
    }

    .dedicated-item .cell-row .price small {
        font-size: 14px;
    }

    .lisans-paketler .title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font-size: 26px;
        margin-bottom: 40px;
    }

    .lisans-paketler .title span {
        color: #292929;
    }

    .lisans-paketler .title b {
        font-size: 32px;
        font-weight: 900;
    }

    .lisans-paketler .lisans-head {
        display: none;
    }

    .lisans-paketler .lisans-item {
        width: 100%;
        height: auto;
        border-radius: 62px;
        background-color: #fff;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10px 20px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .lisans-paketler .lisans-item span {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        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;
        text-align: center;
        font-size: 18px;
        color: #292929;
        font-weight: 700;
        padding: 10px 0;
    }

    .lisans-paketler .lisans-item span a {
        width: 145px;
        height: 45px;
        border-radius: 45px;
        background-color: #292929;
        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: #fff;
        font-size: 18px;
        font-weight: 700;
        margin-right: 10px;
    }

    .lisans-paketler .lisans-item span:last-child {
        min-width: 250px;
        max-width: 250px;
    }

    .lisans-paketler .lisans-item span .price {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        line-height: 1;
    }

    .lisans-paketler .lisans-item span .price b {
        font-size: 26px;
    }

    .lisans-paketler .lisans-item span .price small {
        font-size: 14px;
    }
}

@media only screen and (max-width: 768px) {

    .main-wrap {
        height: auto;
        padding: 10px 0;
    }

    .main-wrap.no-radius {
        height: auto;
        justify-content: center;
        background: #25285a;
        font-weight: 600;
        color: #fff;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
        position: relative;
        z-index: 9;
    }


    .login-page-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 20px;
    }

    .login-page-wrap .login-form-box {
        width: 100%;
    }

    .login-page-wrap .login-form-box .title {
        font-size: 30px;
        color: #008afb;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .login-page-wrap .login-form-box button {
        width: 100%;
    }

    .login-page-wrap .login-form-box .login-input {
        width: 100%;
    }

    .login-page-wrap .login-banner {
        width: 100%;
        margin-top: 10px;
        margin-left: 0px;
        padding: 30px;
        z-index: 99;
    }

    .alt-page-banner {
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: auto;
    }

    .alt-page-banner .container {
        height: 100%;
    }

    .alt-page-banner .container .col-wrap {
        padding: 50px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .alt-page-banner .container .col-wrap .alt-page-title {
        text-align: center;
        font-size: 26px;
        color: #fff;
    }

    .alt-page-banner .container .col-wrap .alt-page-title b {
        font-weight: 700;
        font-size: 32px;
    }

    .alt-page-banner .container .info-text {
        color: #fff;
        margin-top: 20px;
    }

    .domain-types {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 100%;
        width: 100%;
        margin-top: 40px;
    }

    .domain-types .type-buttons {
        max-width: 100%;
        width: 100%;
        height: 45px;
        border-radius: 10px 10px 0 0;
        background-color: rgba(0, 0, 0, 0.8);
        padding: 0 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .domain-types .type-buttons button, .domain-types .type-buttons a {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        height: 45px;
        border-radius: 10px 10px 0 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #fff;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 13px;
    }

    .domain-types .type-buttons button span, .domain-types .type-buttons a span {
        margin-right: 2px;
    }

    .domain-types .type-buttons button.active, .domain-types .type-buttons a.active {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .domain-types .type-buttons button:hover, .domain-types .type-buttons a:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .domain-types .type-box {
        width: 100%;
        height: auto;
        border-radius: 10px;
        background-color: #fff;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .domain-types .type-box input {
        min-width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .domain-types .type-box .v-line {
        width: 1px;
        height: 100%;
        background-color: #25285a;
    }

    .domain-types .type-box button {
        background-color: #25285a;
        height: 100%;
        border-radius: 10px;
        color: #fff;
        padding: 0 20px;
        height: 40px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .domain-result {
        -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
        background-color: #f3f3f3;
        border-radius: 10px;
    }

    .domain-result .head {
        font-size: 15px;
    }

    .domain-result .transfer-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 20px;
    }

    .domain-result .transfer-form b {
        font-size: 24px;
        display: block;
        font-weight: 900;
        color: #5f2eee;
        position: relative;
        width: 100%;
        max-width: 630px;
        text-align: center;
    }

    .domain-result .transfer-form b span {
        position: absolute;
        right: 0;
    }

    .domain-result .transfer-form b span a {
        font-size: 9px;
    }

    .domain-result .transfer-form input {
        max-width: 630px;
        width: 100%;
        height: 56px;
        border-radius: 2px;
        background-color: rgba(212, 213, 220, 0.5);
        text-align: center;
        color: #252525;
        margin-bottom: 20px;
    }

    .domain-result .transfer-form input::-webkit-input-placeholder {
        color: #252525;
    }

    .domain-result .transfer-form input:-ms-input-placeholder {
        color: #252525;
    }

    .domain-result .transfer-form input::-ms-input-placeholder {
        color: #252525;
    }

    .domain-result .transfer-form input::placeholder {
        color: #252525;
    }

    .domain-result .transfer-form .action {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 630px;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .domain-result .transfer-form .action a {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%;
        height: 55px;
        min-height: 55px;
        border-radius: 10px;
        background-color: #5f2eee;
        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;
        font-size: 17px;
        font-weight: 600;
        margin-top: 10px;
        margin-left: 0px;
    }

    .domain-result .transfer-form .action .select {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: 100%;
    }

    .domain-result .transfer-form .action .select select {
        width: 100%;
        height: 55px;
        border-radius: 10px;
        background-color: rgba(95, 46, 238, 0.1);
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #292929;
        font-weight: 600;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 17px;
        text-align: center !important;
        padding-left: 30px;
    }

    .domain-result .result-row {
        width: 100%;
        height: auto;
        padding: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .domain-result .result-row .left {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 10px;
        width: 100%;
    }

    .domain-result .result-row .left p {
        color: #2d2d2d;
        margin-left: 15px;
        margin-top: 10px;
        font-weight: 500;
        display: block;
        font-size: 16px;
    }

    .domain-result .result-row .left p b {
        font-size: 18px;
    }

    .domain-result .result-row .right {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }

    .domain-result .result-row .right a {
        width: 100%;
        height: 55px;
        border-radius: 10px;
        background-color: #5f2eee;
        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;
        font-size: 17px;
        font-weight: 600;
        margin-left: 0px;
        margin-top: 10px;
    }

    .domain-result .result-row .right .select {
        width: 100%;
    }

    .domain-result .result-row .right .select select {
        width: 100%;
        height: 55px;
        border-radius: 10px;
        background-color: rgba(95, 46, 238, 0.1);
        border: none;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #292929;
        font-weight: 600;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 17px;
        text-align: center !important;
        padding-left: 10px;
    }

    .domain-result .result-row:nth-child(odd) {
        background-color: #eaeaea;
    }

    .domain-result .result-row:last-child {
        border-radius: 0 0 10px 10px;
    }

    .host-paket-box {
        max-width: 100%;
        width: 100%;
        border-radius: 10px;
        padding: 20px 30px;
        background-color: rgba(255, 255, 255, 0.9);
        color: #2d2d2d;
        font-weight: 600;
    }

    .host-paket-box .text .title {
        font-size: 40px;
        color: #2d2d2d;
        margin-bottom: 10px;
        width: 100%;
    }

    .host-paket-box .text .title span {
        color: #a8a8a8;
    }

    .host-paket-box .text .col-6 {
        font-size: 15px;
    }

    .host-paket-box .pricing {
        margin-left: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .host-paket-box .pricing span {
        padding-left: 20px;
    }

    .host-paket-box .pricing a {
        margin-left: -20px;
    }

    .newsletter-kayit {
        padding: 15px;
        background-color: #eaeaea;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .newsletter-kayit .text {
        margin-top: 20px;
    }

    .sorumluluk-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .sorumluluk-box .select {
        margin: 10px 0;
        width: 280px;
    }

    .table-head {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .table-head .search {
        width: 100%;
        height: 37px;
        margin-top: 10px;
    }

    .table-footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .table-footer .limiter {
        margin-bottom: 10px;
    }

    .host-spec-wrap {
        margin-right: 0px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .host-spec-wrap .host-spec-mini {
        width: 50%;
        margin: 0 0 10px 0 !important;
    }
}


.brands-query-area {
    position: relative;
    margin-top: -25px;
}

.brands-query-area:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/pattern.png) no-repeat;
    z-index: 2;
}

.brands-query-area.marble-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/marble-bg.png) !important;
    z-index: 2;
}

.brands-query-area.purple-marble-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/purple-marble.png) !important;
    z-index: 2;
}

.brands-query-area.blue-marble-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/blue-marble.png) !important;
    z-index: 2;
}

.brands-query-area.white-marble-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/white-marble.png) !important;
    z-index: 2;
}

.brands-query-area.metin2-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/metin2banner.png) !important;
    z-index: 2;
}

.brands-query-area.gta-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/gta-banner.png) !important;
    z-index: 2;
}

.brands-query-area.knight-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/knight-banner.png) !important;
    z-index: 2;
}

.brands-query-area.unturned-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/unturned-banner.png) !important;
    z-index: 2;
}

.brands-query-area.rust-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/rust-banner.png) !important;
    z-index: 2;
}

.brands-query-area.minecraft-bg:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/minecraft-banner.png) !important;
    z-index: 2;
}

.brands-query-area.dark-pattern:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/dark-pattern.png) !important;
    z-index: 2;
}

.brands-query-area.bg-1:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/bg-1.png) !important;
    z-index: 2;
}

.brands-query-area.bg-2:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-size: cover !important;
    background: url(../img/bg-2.png) !important;
    z-index: 2;
}

.brands-area h3 {
    font-size: 25px;
    font-weight: 900;
    line-height: 1.2;
    color: #25285a;
    margin-bottom: 0;
    position: relative;
    padding-left: 14px;
    flex: 0 0 320px;
    max-width: 320px;
}

.brands-area h3:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 56px;
    width: 5px;
    background-color: #25285a;
    border-radius: 3px;
}

.brands-area {
    padding: 80px 0 60px;
    position: relative;
    z-index: 9;
}

@media (max-width: 991px) {
    .brands-area h3 {
        flex: 0 0 230px;
        max-width: 230px;
    }

    .brands-slider {
        flex: 0 0 calc(100% - 230px);
        max-width: calc(100% - 230px);
    }

    .brands-slider .swiper-container {
        padding: 0;
    }

    .cloud-host .img {
        margin-top: 20px;
    }

    .properties-up ul li {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 10px;
    }

    .properties-up ul {
        flex-wrap: wrap;
        justify-content: inherit;
    }

    .properties-up ul li.title {
        max-width: 25%;
    }

    .comment-slider .swiper-container {
        padding: 70px 0;
    }

    .comment-slider .item .name h3:before {
        bottom: 0;
        left: 20px;
    }

    .comment-slider .item .name h3 {
        padding-left: 113px;
    }
}

@media (max-width: 767px) {
    .main-slider .swiper-button-prev, .main-slider .swiper-button-next {
        display: none;
    }

    .main-slider .detail h3 {
        font-size: 27px;
        max-width: 100%;
        text-align: center;
    }

    .main-slider .detail h3 br {
        display: none;
    }

    .main-slider .item {
        padding: 30px 0;
    }

    .main-slider .detail h3 {
        margin-bottom: 10px;
    }

    .main-slider .detail p {
        text-align: center;
    }

    .main-wrap {
        height: auto;
        padding: 10px 0;
    }

    .main-wrap.no-radius {
        height: auto;
        justify-content: center;
        background: #25285a;
        font-weight: 600;
        color: #fff;
        border-bottom-left-radius: 0%;
        border-bottom-right-radius: 0%;
        position: relative;
        z-index: 9;
    }

    .brands-area h3 {
        display: inline-flex;
        justify-content: center;
        position: relative;
        margin-bottom: 20px;
    }

    .brands-area {
        padding: 50px 0 30px;
        flex-wrap: wrap;
    }

}

.mt-5, .my-5 {
    margin-top: 3rem!important;
}

.pakpake {
    padding-left: 15px;
    padding-right: 15px;
}

.tepetit {
    line-height: 4rem;
}

.cloud-host {
    padding: 50px 0 20px;
    background: #fff;
}