/***
Timeline UI Base
***/
.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

    /* The line */
    .timeline:before {
        /*content: '';*/
        position: absolute;
        top: 0;
        bottom: 0;
        width: 10px;
        background: #ccc;
        left: 20%;
        margin-left: -10px;
    }

    .timeline > li {
        position: relative;
        cursor: pointer;
    }

        /*Remove timeline line for last entry*/
        .timeline > li.timeline-noline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 10px;
            background: #fff;
            left: 20%;
            margin-left: -10px;
        }

        /* The date/time */
        .timeline > li .timeline-time {
            display: block;
            width: 15%;
            text-align: right;
            position: absolute;
        }

            .timeline > li .timeline-time span {
                display: block;
                text-align: right;
            }

                .timeline > li .timeline-time span.date {
                    font-size: 12px;
                    color: #aaa;
                    display: block;
                    font-weight: 300;
                }

                .timeline > li .timeline-time span.time {
                    font-weight: 300;
                    font-size: 38px;
                    line-height: 38px;
                }

        /* Right content */
        .timeline > li .timeline-body {
            margin: 0 0 5px 16px;
            color: #fff;
            padding: 10px;
            font-weight: 300;
            position: relative;
            border-radius: 5px;
        }

            .timeline > li .timeline-body h2 {
                margin-top: 0px;
                padding: 0 0 2px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                font-size: 13px;
            }

        .timeline > li .timeline-content {
            font-size: 14px;
        }

.ie8 .timeline > li .timeline-body h2 {
    border-bottom: 1px solid #eee;
}

.timeline > li .timeline-body img.timeline-img {
    width: 60px;
    height: 50px;
    margin: 5px 20px 0 16px;
}

.timeline > li .timeline-body img.pull-right {
    margin-left: 10px;
}

.timeline > li .timeline-body a.nav-link {
    display: inline-block;
    margin-top: 0px;
    color: #fff;
    font-size: 14px;
    padding: 0px;
    text-align: left;
    text-decoration: none;
}

    .timeline > li .timeline-body a.nav-link:hover {
        opacity: 0.5;
        filter: alpha(opacity=50);
    }

.timeline > li .timeline-body .btn {
    margin-top: 10px;
}

/* The triangle */
.timeline > li .timeline-body:after {
    right: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-right-color: #3594cb;
    border-width: 10px;
    top: 19px;
}

.timeline > li .timeline-content:after,
.timeline > li .timeline-content:before {
    display: table;
    line-height: 0;
    content: "";
}

.timeline > li .timeline-content:after {
    clear: both;
}

.timeline > li .timeline-footer:after,
.timeline > li .timeline-footer:before {
    content: "";
    display: table;
    line-height: 0;
}

.timeline > li .timeline-footer:after {
    clear: both;
}

/* The icons */
.timeline > li .timeline-icon {
    width: 40px;
    height: 40px;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    font-size: 1.4em;
    line-height: 40px;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    color: #fff;
    background: #aaa;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #ccc;
    text-align: center;
    left: 20%;
    top: 0;
    margin: 5px 0 0 -25px;
    padding-bottom: 3px;
    padding-right: 1px;
    padding-left: 2px;
    -webkit-border-radius: 30px !important;
    -moz-border-radius: 30px !important;
    border-radius: 30px !important;
}

    .timeline > li .timeline-icon > i {
        font-size: 18px;
    }

/* Red */
.timeline li.timeline-red .timeline-body:after {
    border-right-color: #ef4836;
}

.timeline li.timeline-red .timeline-body {
    background: #ef4836;
}

.timeline li.timeline-red .timeline-time span.time {
    color: #ef4836;
}

/* Yellow */
.timeline li.timeline-yellow .timeline-body:after {
    border-right-color: #E2D82E;
}

.timeline li.timeline-yellow .timeline-body {
    background: #E2D82E;
}

.timeline li.timeline-yellow .timeline-time span.time {
    color: #E2D82E;
}

/* Green */
.timeline li.timeline-green .timeline-body:after {
    border-right-color: #26c281;
}

.timeline li.timeline-green .timeline-body {
    background: #26c281;
}

.timeline li.timeline-green .timeline-time span.time {
    color: #26c281;
}

/* Blue */
.timeline li.timeline-blue .timeline-body:after {
    border-right-color: #4b77be;
}

.timeline li.timeline-blue .timeline-body {
    background: #4b77be;
}

.timeline li.timeline-blue .timeline-time span.time {
    color: #4b77be;
}

/* Orange */
.timeline li.timeline-orange .timeline-body:after {
    border-right-color: #f2784b;
}

.timeline li.timeline-orange .timeline-body {
    background: #f2784b;
}

.timeline li.timeline-orange .timeline-time span.time {
    color: #f2784b;
}

/* Grey */
.timeline li.timeline-grey .timeline-body:after {
    border-right-color: #807D7D;
}

.timeline li.timeline-grey .timeline-body {
    background: #807D7D;
}

.timeline li.timeline-grey .timeline-time span.time {
    color: #807D7D;
}

/* Pink */
.timeline li.timeline-pink .timeline-body:after {
    border-right-color: #e26a6a;
}

.timeline li.timeline-pink .timeline-body {
    background: #e26a6a;
}

.timeline li.timeline-pink .timeline-time span.time {
    color: #e26a6a;
}

/* Purple */
.timeline li.timeline-purple .timeline-body:after {
    border-right-color: #8775a7;
}

.timeline li.timeline-purple .timeline-body {
    background: #8775a7;
}

.timeline li.timeline-purple .timeline-time span.time {
    color: #8775a7;
}

@media (max-width: 767px) {
    timeline > li .timeline-time span.time {
        font-size: 18px;
    }

    .timeline:before {
        display: none;
    }

    .timeline > li .timeline-time {
        width: 100%;
        position: relative;
        padding: 0 0 20px 0;
    }

        .timeline > li .timeline-time span {
            text-align: left;
        }

    .timeline > li .timeline-body {
        margin: 0 0 30px 0;
        padding: 1em;
    }

        .timeline > li .timeline-body:after {
            right: auto;
            left: 20px;
            top: -20px;
        }

    .timeline > li .timeline-icon {
        position: relative;
        float: right;
        left: auto;
        margin: -55px 5px 0 0px;
    }

    /*colors*/
    .timeline li.timeline-red .timeline-body:after {
        border-right-color: transparent;
        border-bottom-color: #e02222;
    }

    .timeline li.timeline-blue .timeline-body:after {
        border-right-color: transparent;
        border-bottom-color: #4b8df8;
    }

    .timeline li.timeline-green .timeline-body:after {
        border-right-color: transparent;
        border-bottom-color: #35aa47;
    }

    .timeline li.timeline-yellow .timeline-body:after {
        border-right-color: transparent;
        border-bottom-color: #ffb848;
    }

    .timeline li.timeline-purple .timeline-body:after {
        border-right-color: transparent;
        border-bottom-color: #852b99;
    }

    .timeline li.timeline-grey .timeline-body:after {
        border-right-color: transparent;
        border-bottom-color: #555555;
    }
}


.etkinliklabel {
    min-width: 200px;
}




/*TTO Userdan Gelen*/
.yeni_etkinlik {
    height: 70px;
    color: #FFF;
    text-align: center;
    background-color: #57b5e3;
}

.tur_duyurular li {
}

.tur_resimliliste .list-unstyled li {
    padding: 3px 0px;
}

.etkinlik_gun {
    font-size: 20px;
}

.etkinlik_ay {
    font-size: 14px;
}

.etkinlik_isim {
    font-size: 12px;
}


.etkinlik_baslik {
    padding: 5px 15px 1px 0px;
    margin-left: 15px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eaeaea;
    font-weight: 600;
    color: #57b5e3;
    font-size: 12px;

}

.i_social, .i_social:hover {
    color: #FFF;
}

.i_fb {
    background-color: #4A6D9D;
}

.i_tw {
    background-color: #3BC1ED;
}

.i_gp {
    background-color: #CB3F22;
}

.alt_kisim {
    margin-top: 6px;
}

.buton_detay {
    margin-right: 5px;
}

.tur_resimliliste .note {
    margin: 0 0 10px 0;
}

.tur_resimliliste .thumbnail {
    margin-left: 5px;
   
}

.tur_acik .note {
    background: #F8F8F8;
    padding: 10px 0px!important;
}

.tur_etkinlik .note {
    background: #F8F8F8;
}

.portlet-title img {
    width: 30px;
}

.dropdown-toggle img {
    width: 30px;
}
