
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
    position: relative;
}

    .flickity-enabled:focus {
        outline: none;
    }

.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .flickity-enabled.is-draggable .flickity-viewport {
        cursor: move;
        cursor: -webkit-grab;
        cursor: grab;
    }

        .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
            cursor: -webkit-grabbing;
            cursor: grabbing;
        }

/* ---- flickity-button ---- */
.flickity-button {
    position: absolute;
    background: rgba(255, 255, 255, 0.75);
    border: none;
    color: #333;
}

    .flickity-button:hover {
        background: white;
        cursor: pointer;
    }

    .flickity-button:focus {
        outline: none;
        box-shadow: 0 0 0 5px #19F;
    }

    .flickity-button:active {
        opacity: 0.6;
    }

    .flickity-button:disabled {
        opacity: 0.3;
        cursor: auto;
        /* prevent disabled button from capturing pointer up event. #716 */
        pointer-events: none;
    }

.flickity-button-icon {
    fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    /* vertically center */
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .flickity-prev-next-button.previous {
        left: 10px;
    }

    .flickity-prev-next-button.next {
        right: 10px;
    }

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
    left: auto;
    right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
    right: auto;
    left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
    position: absolute;
    width: 100%;
    bottom: -25px;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    line-height: 1;
}

.flickity-rtl .flickity-page-dots {
    direction: rtl;
}

.flickity-page-dots .dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    background: #333;
    border-radius: 50%;
    opacity: 0.25;
    cursor: pointer;
}

    .flickity-page-dots .dot.is-selected {
        opacity: 1;
    }

@keyframes opacityAN {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, -25px);
        transform: translate(0px, -25px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes opacityAN {
    0% {
        opacity: 0;
        -webkit-transform: translate(0px, 250px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
    }
}

@-webkit-keyframes shadowAN {
    0% {
        box-shadow: 2px 2px 27px 0px rgba(0, 89, 172, 0.47);
    }

    50% {
        box-shadow: 2px 2px 27px 0px rgba(0, 0, 0, 0.47);
    }

    100% {
        box-shadow: 2px 2px 27px 0px rgba(0, 89, 172, 0.47);
    }
}

@keyframes shadowAN {
    0% {
        box-shadow: 2px 2px 27px 0px rgba(0, 89, 172, 0.47);
    }

    50% {
        box-shadow: 2px 2px 27px 0px rgba(0, 0, 0, 0.47);
    }

    100% {
        box-shadow: 2px 2px 27px 0px rgba(0, 89, 172, 0.47);
    }
}

.tsys-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background: white url("../img/login_arkaplan.jpg") no-repeat center center/cover;
    color: #777;
    overflow: hidden;
}

    .tsys-wrapper .mobile-logo {
        display: -webkit-box;
        display: flex;
        /*width: 175px;height: 95px;margin-bottom: 50px;*/
        background: url("../img/login_arkaplan.jpg") no-repeat center center/cover;
    }

@media (min-width: 1000px) {
    .tsys-wrapper .mobile-logo {
        display: none;
    }
}

.tsys-wrapper .content {
    display: -webkit-box;
    display: flex;
    width: 350px;
    height: 450px;
    background: white url("../img/icerik_arkaplan.jpg") no-repeat center center/cover;
    border-radius: 20px;
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

@media (min-width: 1000px) {
    .tsys-wrapper .content {
        border-radius: 0;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
        box-shadow: 2px 2px 27px 0px rgba(0, 0, 0, 0.47);
        -webkit-animation: opacityAN 1s 1 linear, rightAN .5s 1 2s forwards;
        animation: opacityAN 1s 1 linear, rightAN .5s 1 2s forwards;
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    @-webkit-keyframes rightAN {
        from {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }

        to {
            -webkit-transform: translateX(150px);
            transform: translateX(150px);
        }
    }

    @keyframes rightAN {
        from {
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }

        to {
            -webkit-transform: translateX(150px);
            transform: translateX(150px);
        }
    }
}

.tsys-wrapper .content:hover .content-wrap {
    display: -webkit-box;
    display: flex;
}

.tsys-wrapper .content-wrap {
    display: none;
    width: 700px;
    height: 100%;
    position: absolute;
    right: 0;
}

.tsys-wrapper .content .filter {
    display: none;
}

@media (min-width: 1000px) {
    .tsys-wrapper .content .filter {
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        background: #000b88;
        opacity: 0.4;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

.tsys-wrapper .content .uyari {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 350px;
    height: 450px;
    position: absolute;
    right: 0;
    color: white;
    padding-left: 25px;
    padding-right: 25px;
}

    .tsys-wrapper .content .uyari h4 {
        text-align: center;
        margin-bottom: 25px;
    }

    .tsys-wrapper .content .uyari small {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 10px;
    }

.tsys-wrapper .content .col {
    width: 100%;
    height: 100%;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    color: white;
}

@-webkit-keyframes girisAN {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

@keyframes girisAN {
    from {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    to {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg);
    }
}

@media (min-width: 1000px) {
    .tsys-wrapper .content .col {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-animation: girisAN 1s 1 3s forwards;
        animation: girisAN 1s 1 3s forwards;
    }
}

.tsys-wrapper .content .col .card {
    position: absolute;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    justify-content: space-around;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-left:-15px;
}

    .tsys-wrapper .content .col .card .login-logo {
        width: 150px;
    }

    .tsys-wrapper .content .col .card .title {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: end;
        justify-content: flex-end;
        -webkit-box-align: center;
        align-items: center;
        padding-bottom: 23px;
        height: 50%;
    }

        .tsys-wrapper .content .col .card .title h2 {
            text-align: center;
        }

        .tsys-wrapper .content .col .card .title h4 {
            margin-top: 25px;
            font-weight: 100;
        }

.tsys-wrapper .content .col .front {
    border-radius: 20px;
    background: linear-gradient(45deg, #34d6f3 0%, #094ea3 100%);
}

@media (min-width: 1000px) {
    .tsys-wrapper .content .col .front {
        border-radius: 0;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}

.tsys-wrapper .content .col .front hr {
    border-top: 1px solid white;
    width: 99%;
    margin-bottom: -25px;
}

.tsys-wrapper .content .col .back {
    -webkit-box-pack: start;
    justify-content: flex-start;
    border-radius: 20px;
    background: white;
    color: #555;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    /*margin-top:2px;*/
}

@media (min-width: 1000px) {
    .tsys-wrapper .content .col .back {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
        border-radius: 0;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }
}

.tsys-wrapper .content .col .back-container {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    width: 75%;
    height: 50%;
    border: 1px solid #17a2b8;
    border-radius: 10px;
    /*margin-top: 15px;*/
}

.field-validation-error span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 0px 0px 0px 0px;
}

.tsys-wrapper .content .col .back-container span {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 15px;
    text-align: center;
    padding: 10px 35px 10px 35px;
}

    .tsys-wrapper .content .col .back-container .e-devlet {
        width: 190px;
        -webkit-transition: .1s;
        transition: .1s;
        cursor: pointer;
    }

        .tsys-wrapper .content .col .back-container .e-devlet:hover {
            -webkit-filter: drop-shadow(2px 4px 6px black);
            filter: drop-shadow(2px 4px 6px black);
            -webkit-transition: .1s;
            transition: .1s;
        }

.tsys-wrapper .content .col .back-container .mobile-menu-medyalar {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    padding-right: 7%;
    padding-left: 7%;
    align-self: flex-end;
    width: 100%;
    height: 50px;
    color: #ffc107; /*#0f75bc;*/
    /*margin-top: 105px;*/
}

    .tsys-wrapper .content .col .back-container .mobile-menu-medyalar .icon {
        width: 20px;
        height: 20px;
        -webkit-transition: .3s;
        transition: .3s;
        color: #ffc107; /*#acacac85;*/
    }

            .tsys-wrapper .content .col .back-container .mobile-menu-medyalar .icon:hover {
                -webkit-transition: .3s;
                transition: .3s;
                -webkit-transform: rotateZ(360deg);
                transform: rotateZ(360deg);
                color: #ffc107; /*#0f75bc;*/
                opacity: 1;
            }

.tsys-wrapper .content .col .back .backLogo {
    width: 140px;
    height: 100px;
}

.tsys-wrapper .content .col .back-title {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: white;
    margin-top: -15px;
    width: 65%;
    text-align: center;
}
