﻿html,
body {
    width: 100%;
    height: 0;
    padding: 0px !important;
    background-color: white;
}

.backgroundImage {
    -webkit-filter: blur(10px);
    -moz-filter: blur(10px);
    -o-filter: blur(10px);
    -ms-filter: blur(10px);
    filter: blur(10px);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    opacity: 0.6;
}

.blur {
    /*    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(7px);*/
}

.bodyContainer {
    width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

.bodyShift {
    /*margin-top: 50px;*/
    padding-bottom: 40px;
}

.text-with-dots {
    display: block;
    max-width: 98%;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}

.blinking {
    animation: blinkingText 1.2s infinite;
}

.panel-title {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 15px;
}


.header-container {
    justify-content: space-between;
    background-color: #1a3150;
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    height: 35px;
}


.header-button-item {
    transform: skew(18deg);
    display: flex;
    align-items: center;
}

@keyframes blinkingText {
    0% {
        color: #ffcc00;
    }

    49% {
        color: #ffcc00;
    }

    60% {
        color: transparent;
    }

    99% {
        color: transparent;
    }

    100% {
        color: #ffcc00;
    }
}

.shakeObject {
    animation: shake 5s;
    animation-iteration-count: infinite;
}

@keyframes shake {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

    60% {
        transform: translate(-3px, 1px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

/* Basic button styling */
.pulsingButton {
    box-shadow: 0 0 0 0 rgba(65, 232, 61, 0.7);
    border-radius: 10px;
    -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    font-family: sans-serif;
    transition: all 300ms ease-in-out;
}

.heartbeat {
    animation: heartbeat 1s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale( .75 );
    }

    20% {
        transform: scale( 1 );
    }

    40% {
        transform: scale( .75 );
    }

    60% {
        transform: scale( 1 );
    }

    80% {
        transform: scale( .75 );
    }

    100% {
        transform: scale( .75 );
    }
}


/* Comment-out to have the button continue to pulse on mouseover */
a.pulsingButton:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -ms-animation: none;
    animation: none;
    color: #ffffff;
}


/* Animation */
@-webkit-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}


/*responsive başlangıç*/
@media (min-width:768px) {
    .bodyContainer {
        width: 768px;
    }

    .userListOption {
        display: none !important;
    }

    .FlowPLayListSlide {
        overflow-y: scroll;
    }
}


@media (min-width:892px) {
    .bodyContainer {
        width: 892px;
    }
}

@media (min-width:992px) {
    .bodyContainer {
        width: 992px;
    }
}

@media (min-width:1200px) {
    .bodyContainer {
        width: 1200px;
    }
}
/*responsive bitiş*/


/*top bar css*/
.ustMenuBarContainer {
    background-color: #1a3150;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 5px;
}

.ustMenuBaslik {
    text-align: center;
    height: 100px;
    background-color: #474747;
}

.ustMenuBar {
    padding: 0px;
    height: 50px;
    position: fixed;
    width: 100%;
    z-index: 100;
    top: 0px;
    box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.5);
}

.ustMenuBarMenu > li {
    list-style-type: none;
    float: right;
}


.ustMenuBarMenu {
    padding: 0px;
    margin: 0px;
    float: right;
}
/*menu css*/

/*lazy load css*/
img.lazy {
    opacity: 0.1;
    will-change: opacity;
    transition: all 0.3s;
    background-color: silver;
}

img.loaded {
    opacity: 1;
}

/* Footer */
footer {
    padding: 10px 0;
    text-align: center;
    color: white;
    background-color: #000000;
    color: grey;
}


.spin {
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
