/*! lightslider - v1.1.5 - 2015-10-31
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */
/** /!!! core css Should not edit !!!/**/ 

.lSSlideOuter {
    overflow: hidden;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}
.lightSlider:before, .lightSlider:after {
    content: " ";
    display: table;
}
.lightSlider {
    overflow: hidden;
    margin: 0;
}
.lSSlideWrapper {
    max-width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}
.lSSlideWrapper > .lightSlider:after {
    clear: both;
}
.lSSlideWrapper .lSSlide {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    -webkit-transition: all 1s;
    -webkit-transition-property: -webkit-transform,height;
    -moz-transition-property: -moz-transform,height;
    transition-property: transform,height;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade {
    position: relative;
}
.lSSlideWrapper .lSFade > * {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 9;
    margin-right: 0;
    width: 100%;
}
.lSSlideWrapper.usingCss .lSFade > * {
    opacity: 0;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lSSlideWrapper .lSFade > *.active {
    z-index: 10;
}
.lSSlideWrapper.usingCss .lSFade > *.active {
    opacity: 1;
}
/** /!!! End of core css Should not edit !!!/**/

/* Pager */
.lSSlideOuter .lSPager.lSpg {
    margin: 10px 0 0;
    padding: 0;
    text-align: center;
}
.lSSlideOuter .lSPager.lSpg > li {
    cursor: pointer;
    display: inline-block;
    padding: 0 5px;
}
.lSSlideOuter .lSPager.lSpg > li a {
    background-color: #222222;
    border-radius: 30px;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    text-indent: -999em;
    width: 8px;
    position: relative;
    z-index: 99;
    -webkit-transition: all 0.5s linear 0s;
    transition: all 0.5s linear 0s;
}
.lSSlideOuter .lSPager.lSpg > li:hover a, .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: #428bca;
}
.lSSlideOuter .media {
    opacity: 0.8;
}
.lSSlideOuter .media.active {
    opacity: 1;
}
/* End of pager */

/** Gallery */
.lSSlideOuter .lSPager.lSGallery {
    list-style: none outside none;
    padding-left: 0;
    overflow: hidden;
    transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.lSSlideOuter .lSPager.lSGallery li {
    overflow: hidden;
    -webkit-transition: border-radius 0.12s linear 0s 0.35s linear 0s;
    transition: border-radius 0.12s linear 0s 0.35s linear 0s;
}
.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border-radius: 5px;
}
.lSSlideOuter .lSPager.lSGallery img {
    display: block;
    height: auto;
    max-width: 100%;
}
.lSSlideOuter .lSPager.lSGallery:before, .lSSlideOuter .lSPager.lSGallery:after {
    content: " ";
    display: table;
}
.lSSlideOuter .lSPager.lSGallery:after {
    clear: both;
}
/* End of Gallery*/

/* slider actions */
.lSAction > a {
    width: 83px;
    display: block;
    top: 0%;
    height: 32px;
    cursor: pointer;
    position: absolute;
    opacity: 0.5;
    -webkit-transition: opacity 0.35s linear 0s;
    transition: opacity 0.35s linear 0s;
}
.lSAction > a:hover {
    opacity: 1;
}
.lSAction > .lSPrev {
    background-position: 0 0;
    left: 1px;
    height: 100%;
    background-image: url(../images/sol_golge.png);
}
.lSAction > .lSNext {
    background-position: 0 0;
    right: 1px;
    height: 100%;
    background-image: url(../images/sag_golge.png);
}
.lSAction > a.disabled {
    pointer-events: none;
}
.cS-hidden {
    height: 1px;
    opacity: 0;
    filter: alpha(opacity=0);
    overflow: hidden;
}


/* vertical */
.lSSlideOuter.vertical {
    position: relative;
}
.lSSlideOuter.vertical.noPager {
    padding-right: 0px !important;
}
.lSSlideOuter.vertical .lSGallery {
    position: absolute !important;
    right: 0;
    top: 0;
}
.lSSlideOuter.vertical .lightSlider > * {
    width: 100% !important;
    max-width: none !important;
}

/* vertical controlls */
.lSSlideOuter.vertical .lSAction > a {
    left: 50%;
    margin-left: -14px;
    margin-top: 0;
}
.lSSlideOuter.vertical .lSAction > .lSNext {
    background-position: 31px -31px;
    bottom: 10px;
    top: auto;
}
.lSSlideOuter.vertical .lSAction > .lSPrev {
    background-position: 0 -31px;
    bottom: auto;
    top: 10px;
}
/* vertical */


/* Rtl */
.lSSlideOuter.lSrtl {
    direction: rtl;
}
.lSSlideOuter .lightSlider, .lSSlideOuter .lSPager {
    padding-left: 0;
    list-style: none outside none;
}
.lSSlideOuter.lSrtl .lightSlider, .lSSlideOuter.lSrtl .lSPager {
    padding-right: 0;
}
.lSSlideOuter .lightSlider > *,  .lSSlideOuter .lSGallery li {
    float: left;
}
.lSSlideOuter.lSrtl .lightSlider > *,  .lSSlideOuter.lSrtl .lSGallery li {
    float: right !important;
}
/* Rtl */

@-webkit-keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@keyframes rightEnd {
    0% {
        left: 0;
    }

    50% {
        left: -15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@keyframes topEnd {
    0% {
        top: 0;
    }

    50% {
        top: -15px;
    }

    100% {
        top: 0;
    }
}
@-webkit-keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@keyframes leftEnd {
    0% {
        left: 0;
    }

    50% {
        left: 15px;
    }

    100% {
        left: 0;
    }
}
@-webkit-keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
@keyframes bottomEnd {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -15px;
    }

    100% {
        bottom: 0;
    }
}
.lSSlideOuter .rightEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
.lSSlideOuter .leftEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .rightEnd {
    -webkit-animation: topEnd 0.3s;
    animation: topEnd 0.3s;
    position: relative;
}
.lSSlideOuter.vertical .leftEnd {
    -webkit-animation: bottomEnd 0.3s;
    animation: bottomEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .rightEnd {
    -webkit-animation: leftEnd 0.3s;
    animation: leftEnd 0.3s;
    position: relative;
}
.lSSlideOuter.lSrtl .leftEnd {
    -webkit-animation: rightEnd 0.3s;
    animation: rightEnd 0.3s;
    position: relative;
}
/*/  GRab cursor */
.lightSlider.lsGrab > * {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.lightSlider.lsGrabbing > * {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: -o-grabbing;
  cursor: -ms-grabbing;
  cursor: grabbing;
}

/*
arac detay
*/

.uiTabStyleOne a {
    font-weight: bold;
    color: #1064bc;
    display: block;
    border: 1px solid #c0c0c0;
    padding: 7px 15px 7px 15px;
    border-bottom: 0;
    background: #fff;
    background: -moz-linear-gradient(top,#fff 0,#f0f0f0 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fff),color-stop(100%,#f0f0f0));
    background: -webkit-linear-gradient(top,#fff 0,#f0f0f0 100%);
    background: -o-linear-gradient(top,#fff 0,#f0f0f0 100%);
    background: -ms-linear-gradient(top,#fff 0,#f0f0f0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#f0f0f0',GradientType=0);
    background: linear-gradient(top,#fff 0,#f0f0f0 100%);
    zoom: 1;
    -webkit-box-shadow: inset 0 1px 1px #fff;
    -moz-box-shadow: inset 0 1px 1px #fff;
    box-shadow: inset 0 1px 1px #fff;
    -moz-border-radius-topleft: 8px;
    -moz-border-radius-topright: 8px;
    -moz-border-radius-bottomright: 0;
    -moz-border-radius-bottomleft: 0;
    -webkit-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
    height: 15px;
}.uiBox {
     float: left;
     width: 100%;
 }
.uiBoxTitle h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    background: #FFA500;
    color: #FFF;
    margin-top: 20px;
    padding: 15px;
    padding-top: 15px;
    padding-bottom: 15px;
    border-radius: 5px 5px 0 0;
}

.uiDetailTitle a {
    float: none;
    height: 16px;
    display: block;
    background: url('../images/close-icon.png') 100% no-repeat;
    cursor: pointer;
    color: #FFF;
}
.uiBoxContainer {
    padding: 15px;
    color: #000;
    background-color: #fff;
    float:left;
    width:100%;
}
.classifiedOtherDetails .classifiedDescription h3 {
    color: #049aff;
    font-size: 12px;
    font-weight: bold;
}
.classifiedOtherDetails .classifiedDescription ul {
    border: 1px solid #ffeaa5;
    background: #fffced;
    padding: 10px 5px 0 15px;
    margin: 5px 0 25px 0;
    zoom: 1;
}
.classifiedOtherDetails .classifiedDescription li {
    float: left;
    display: block;
    padding: 5px 0 5px 20px;
    font-weight: bold;
    color: #a7a9ac;
    width: 235px;
    font-size: 12px;
}

.classifiedOtherDetails .classifiedDescription li.selected {
    background: url('../images/img.png') -1px -134px no-repeat;
    color: #000;
}
ol, ul {
    list-style: none;
}
.classifiedOtherDetails .classifiedDescription ul:before, .classifiedOtherDetails .classifiedDescription ul:after {
    display: table;
    content: "";
    zoom: 1;
}
.classifiedOtherDetails .classifiedDescription ul:after {
    clear: both;
}
#classifiedDescription {
    word-wrap: break-word;
    line-height: 1.3em;
    font-size: 14px;
}
.uiTabStyleOne {
    float: left;
    width: 100%;
    position: relative;
}
.uiTabStyleOne li {
    float: left;
    margin-left: 10px;
    height: 29px;
}
.talepOlustur{
    background-color: #ffae02;
    padding: 10px;
    border-radius: 10px;
    color: #000;
}

.userContactInfo {
    margin-top: 10px;
    background: #fff;
    margin-bottom: 5px;
    padding: 0 12px;
    font-size: 13px;
    background-color: #f5f5f5;
}
ol, ul {
    list-style: none;
}
.userContactInfo li {
    padding: 10px 7px;
    border-bottom: 1px solid #c9c9c9;
}
.userContactInfo strong {
    display: inline-block;
    font-weight: bold;
    float:left;
}
.userContactInfo span.show-part {
    display: inline-block;
}
.userContactInfo span.pretty-phone-part {
    display: none;
}
.classifiedUserBox {
    width: 292px;
    border: 1px solid #dbdbdb;
    padding: 3px;
    color: #333;
    margin-bottom: 13px;
    position: relative;
}
.userContactInfo span {
    width: 123px;
    text-align: right;
    font-size: 14px;
    font-weight: bold;
}
.sayfayap {
    width: 100%;
    background-color: #FFF;
    margin-top: 15px;
    box-shadow: 0.5px 1px 1px #b3b3b3;
}

.item {

    width: 90%;
    box-shadow: 2px 0px 15px 0px rgba(93, 93, 93, 0.44);
}

.car-slider--item-info {
    padding: 5%;
    border: 1px solid #E2E5E2;
    border-top: 0;
    height: 100px;
}
.headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.headline>h3 {
    margin: 0;
    font-size: 16px;
    color: black;
    position: relative;
    top: 6px;
}
.price {
    -ms-flex-item-align: center;
    align-self: center;
    color: #ED1C24;
    font-size: 20px;
    font-weight: bold;
}
.sub-info {
    color: #4D4E4D;
    font-weight: 300;
    font-size: 13px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.lightbox-container{
    background-color: white;
    padding: 10px;
}






@-webkit-keyframes cptCircle {
    0% {-webkit-transform: rotate(0) scale(.5) skew(1deg);transform: rotate(0) scale(.5) skew(1deg);opacity: .01}
    30% {-webkit-transform: rotate(0) scale(.7) skew(1deg);transform: rotate(0) scale(.7) skew(1deg);opacity: .5}
    100% {-webkit-transform: rotate(0)
    scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .01}
}

@keyframes cptCircle {
    0% {-webkit-transform: rotate(0) scale(.5) skew(1deg);transform: rotate(0) scale(.5) skew(1deg);opacity: .01
    }
    30% {-webkit-transform: rotate(0) scale(.7) skew(1deg);transform: rotate(0) scale(.7) skew(1deg);opacity: .5}
    100% {-webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .01}
}

@-webkit-keyframes cptCircleFill {
    0% {-webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg);opacity: 0}
    50% {webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .2}
    100% {-webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg); opacity: .2}
}

@keyframes cptCircleFill {
    0% {-webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg);opacity: 0}
    50% {-webkit-transform: rotate(0) scale(1) skew(1deg);transform: rotate(0) scale(1) skew(1deg);opacity: .2}
    100% { -webkit-transform: rotate(0) scale(.6) skew(1deg);transform: rotate(0) scale(.6) skew(1deg);opacity: .2}
}

#capitol-callback {
    font-family: Arial;
    position: fixed;
    width: 72px;
    height: 72px;
    bottom: 20px;
    top: auto;
    right: 60px;
    left: auto;
    z-index: 999;
}

@media (min-width:1200px) {
    #capitol-callback {
        right: 80px;
        bottom: 30px;
    }
}

.cpt-circle,
.cpt-circle-fill {
    position: absolute;
    border-radius: 100%;
    -webkit-transition: all .5s;
    transition: all .5s;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0;
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.cpt-circle {
    width: 250%;
    height: 250%;
    background-color: transparent;
    border: 2px solid #189d0e;
    -webkit-animation: cptCircle 2.2s infinite ease-in-out;
    animation: cptCircle 2.2s infinite ease-in-out;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    left: -71%;
    top: -75%;
}

.cpt-circle-fill {
    width: 155%;
    height: 155%;
    background-color: #189d0e;
    border: 2px solid transparent;
    -webkit-animation: cptCircleFill 2.3s infinite ease-in-out;
    animation: cptCircleFill 2.3s infinite ease-in-out;
    box-shadow: 0 0 2px 0 #189d0e!important;
    left: -23.5%;
    top: -27.5%;
}

.main-button {
    position: relative;
    right: 1px;
    top: 1px;
    float: right;
    width: 64px;
    height: 64px;
    background: center center no-repeat #189d0e;
    box-shadow: 0 3px 5px 1px rgba(0, 0, 0, .2);
    background-size: 30px;
    border-radius: 100%;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 58px;
}

.main-button i {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .6s cubic-bezier(.55, 0, .1, 1);
    transition: all .6s cubic-bezier(.55, 0, .1, 1);
    -webkit-transform: perspective(400px) rotateY(-180deg) scale(.4) translate3d(-50%, -50%, 0);
    transform: perspective(400px) rotateY(-180deg) scale(.4) translate3d(-50%, -50%, 0);
    z-index: 1;
    width: 45%;
    height: 45%;
    font-size: 16px;
}

.main-button img {
    vertical-align: middle;
}