﻿.urunler_top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    background-blend-mode: overlay;
    background-color: #161616;
    border-bottom: 2px solid #fff;
}

.top_title {
    font-family: Agenda-Regular !important;
    font-size: 38px;
    line-height: 1em;
    margin: 0;
    margin-bottom: .9em;
    font-weight: lighter;
    color: white;
}

.down_title {
    color: #fff;
    margin: 0 0 1.5em;
    margin-left: 50px;
    margin-bottom: 1.8em;
    font-size: 17px;
    line-height: 1.5;
}
/* Yeni Rooms */
#rooms-area {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    -ms-align-items: stretch;
    align-items: stretch;
    -webkit-align-content: space-between;
    -moz-align-content: space-between;
    -ms-align-content: space-between;
    align-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    #rooms-area .single_room {
        width: 33.3%;
        position: relative;
        padding: 0 6px;
        text-decoration: none;
        color: #4a4a4a;
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-justify-content: flex-start;
        -moz-justify-content: flex-start;
        -ms-justify-content: flex-start;
        justify-content: flex-start;
        -ms-flex-pack: flex-start;
        -webkit-align-items: stretch;
        -moz-align-items: stretch;
        -ms-align-items: stretch;
        align-items: stretch;
        -webkit-align-content: stretch;
        -moz-align-content: stretch;
        -ms-align-content: stretch;
        align-content: stretch;
        -webkit-flex-wrap: wrap;
        -moz-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 50px;
        top: 40px;
    }

        #rooms-area .single_room:nth-child(2),
        #rooms-area .single_room:nth-child(3n+5) {
            top: 20px;
        }

        #rooms-area .single_room:hover {
            text-decoration: none;
        }

        #rooms-area .single_room .thumb_wrapper {
            height: 310px;
            overflow: hidden;
        }

            #rooms-area .single_room .thumb_wrapper .thumb-container {
                width: 100%;
                height: auto;
                padding-bottom: 70%;
                position: relative;
                -webkit-transition: transform .6s ease-out,.3s;
                -moz-transition: transform .6s ease-out,.3s;
                -ms-transition: transform .6s ease-out,.3s;
                -o-transition: transform .6s ease-out,.3s;
                transition: transform .6s ease-out,.3s;
            }

                #rooms-area .single_room .thumb_wrapper .thumb-container:hover {
                    -webkit-transform: scale(1.05);
                    -moz-transform: scale(1.05);
                    -ms-transform: scale(1.05);
                    -o-transform: scale(1.05);
                    transform: scale(1.05);
                }

                #rooms-area .single_room .thumb_wrapper .thumb-container img {
                    position: absolute;
                    top: -50%;
                    left: -50%;
                    right: -50%;
                    bottom: -50%;
                    margin: auto;
                    width: 100%;
                    height: auto;
                }

        #rooms-area .single_room .content-text {
            padding: 10px 20px;
            -webkit-box-flex: 1 1 auto;
            -moz-box-flex: 1 1 auto;
            -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
            flex: 1 1 auto;
        }

            #rooms-area .single_room .content-text .title {
                font-size: 24px;
                line-height: 40px;
                -webkit-transition: all,.3s;
                -moz-transition: all,.3s;
                -ms-transition: all,.3s;
                -o-transition: all,.3s;
                transition: all,.3s;
                color: #666769;
                text-align: center;
            }

            #rooms-area .single_room .content-text .subtitle p {
                font-size: 16px;
                line-height: normal;
                color: #666769;
                text-align: center;
            }

/* Yeni Rooms */
.thumb_box {
    height: 50vh;
    min-height: 450px;
    cursor: pointer;
    float: left;
    width: 50%;
    position: relative;
    overflow: hidden;
    margin-top: 2px;
}

    .thumb_box:nth-child(odd) > div {
        margin-right: 2px;
    }

    .thumb_box > div {
        margin-right: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

        .thumb_box > div:hover > a {
            background-color: rgba(0,0,0,0.7);
        }

        .thumb_box > div > a {
            background-color: rgba(0,0,0,0.4);
            -webkit-transition: background-color 150ms;
            transition: background-color 150ms;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
        }

            .thumb_box > div > a > div {
                text-align: center;
                position: absolute;
                top: 50%;
                right: 0;
                left: 0;
                -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
                padding: 0 10%;
            }

                .thumb_box > div > a > div > h3 {
    font-family: Agenda-Regular !important;
                    font-size: 1.75em;
                    line-height: .95em;
                    margin-bottom: .1em;
                    margin: 0;
                    font-weight: lighter;
                    color: white;
                }

        .thumb_box > div:hover > a > div > div {
            max-height: 100px;
        }

        .thumb_box > div > a > div > div {
            -webkit-transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
            transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
            max-height: 0;
            overflow: hidden;
        }

            .thumb_box > div > a > div > div > h4 {
                font-size: 18px;
                line-height: 1.5em;
                font-weight: lighter;
                color: white;
            }

            .thumb_box > div > a > div > div > p.more > span {
                height: 20px;
                width: 20px;
                overflow: hidden;
                text-indent: 101%;
                white-space: nowrap;
                display: block;
                margin: 0 auto;
                background-image: url('../main/images/icon-plus.png');
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center;
            }

.ProductLeft {
    margin-top: 10px;
    background: #fff;
    padding: 0 0 0 100px;
}

.ProductRight {
    border-left: 2px solid #e0e0e0;
    padding: 0 20px;
}

    .ProductRight hr {
        margin: 30px 0 20px;
        border-top: 2px solid #e0e0e0;
    }

.product_box2 {
    float: left;
    width: 23.9%;
    text-align: center;
    margin: 5px;
}

.product_box {
    float: left;
    width: 32%;
    text-align: center;
    margin: 5px;
}

    .product_box .pTp {
        height: auto;
    }

        .product_box .pTp img {
            transform: translateY(0%);
        }

.Layout {
    float: right;
    text-align: right;
}

    .Layout .btn-group {
        padding: 5px;
        float: right;
    }

        .Layout .btn-group a {
            margin-right: 5px;
            padding: 5px;
            float: left;
        }

            .Layout .btn-group a span.th-theree {
                margin-right: 5px;
                width: 25px;
                height: 25px;
                font-size: 20px;
                display: block;
                background-image: url('../../img/there_layout.png');
            }

            .Layout .btn-group a span.th-four {
                width: 25px;
                height: 25px;
                font-size: 20px;
                display: block;
                background-image: url('../../img/four_layout.png');
            }

.ListScnz {
    float: right;
}

    .ListScnz h1, .Layout h1 {
        font-size: 20px;
        text-align: right;
        display: inline-block;
        margin-right: 10px;
        font-weight: bold;
    }

    .ListScnz .srla {
        width: 75%;
        cursor: pointer;
        padding: 0;
        font-size: 13px;
        font-weight: 400;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background: url(../../img/rgt.png) no-repeat right #fff;
        padding-left: 10px;
    }

        .ListScnz .srla:focus {
            background: url(../../img/rgtt.png) no-repeat right #fff;
        }

        .ListScnz .srla::before {
            position: absolute;
            font: normal normal normal 14px/1 FontAwesome;
            content: "\f107";
            top: 0;
            right: 0;
            z-index: 1;
        }

.ProductLeft > div {
    margin-bottom: -1px;
}

    .ProductLeft > div:first-child {
        margin-bottom: 0;
    }

.katH2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

    .katH2 > a {
        transition: all 0.4s ease-in-out;
        -webkit-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -ms-transition: all 0.4s ease-in-out;
        display: block;
        padding: 10px;
    }

        .katH2 > a > i {
            float: right;
            margin: -5px 10px;
            font-size: 30px;
            vertical-align: super;
            transition: all .5s ease;
        }

            .katH2 > a > i.rttp {
                transform: rotate(-90deg);
                transition: all .5s ease;
            }

        .katH2 > a:hover {
            color: #900;
        }

.tgKat {
    display: none;
    position: absolute;
    width: 100%;
    z-index: 1;
    background-color: white;
    margin: 12px;
    font-size: 13px;
}

.tgMrk {
    margin: 5px;
    font-size: 12px;
}

.tgRnk {
    margin: 5px;
    font-size: 12px;
}

.tgFyt {
    margin: 5px;
    font-size: 12px;
}

.tgMrk > ul > li > a, .tgRnk > ul > li > a {
    border-left: 2px solid #fff;
    padding: 3px;
    display: block;
    transition: border-color .4s ease-in;
    display: inline-block;
    width: 100%;
}

.tgKat > ul > li > a {
    font-family: 'Montserrat',sans-serif;
    border-left: 2px solid #fff;
    padding: 3px;
    display: block;
    transition: border-color .4s ease-in;
    display: inline-block;
    width: 100%;
    position: relative;
}

.tgKat > ul > li:nth-child(2) {
    display: none;
}

.tgMrk > ul > li > a:hover:before, .tgKat > ul > li a:hover:before {
    content: "\f054";
    font: normal normal normal 14px/1 FontAwesome;
    padding-right: 10px;
}

.tgKat > ul > li > a > i {
    float: right;
    font-size: 14px;
    transition: transform .2s ease-in;
    color: #5c5c5c;
    margin-right: 10px;
}

.tgKat > ul > .open > a > i {
    transform: rotate(45deg);
    transition: transform .2s ease-in;
    color: #900;
}

.tgKat > ul > li > ul {
    position: relative;
    box-shadow: none;
    border: 0;
    width: 100%;
    padding: 5px 15px;
}

    .tgKat > ul > li > ul > li > a {
        font-family: 'Montserrat',sans-serif;
        padding: 3px 5px;
        border-left: 2px solid #900;
        font-size: 12px;
    }

    .tgKat > ul > li > ul > li > ul {
        position: relative;
        box-shadow: none;
        border: 0;
        padding: 0;
        margin: 0;
        width: 100%;
        margin: 0 5px 5px 2px;
    }

        .tgKat > ul > li > ul > li > ul > li > a {
            padding: 3px 5px;
            border-left: 2px solid #C7D0DE;
            font-size: 12px;
        }

.dropdown-menu > li {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: pointer;
}

.dropdown-menu .sub-menu {
    position: relative;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    margin: 0 5px 5px 2px;
}

.dropdown-menu > li > a > i {
    float: right;
    font-size: 14px;
    transition: transform .2s ease-in;
    color: #5c5c5c;
    margin-right: 10px;
}

.dropdown-menu > .open > a > i {
    transform: rotate(45deg);
    transition: transform .2s ease-in;
}

.PriceFrm {
}

    .PriceFrm > label, .PriceFrm > span {
        display: inline-block;
        color: #7c7c7c;
        font-weight: normal;
    }

    .PriceFrm > .pull-left, .PriceFrm > .pull-right {
        width: 50%;
    }

    .PriceFrm > div > input {
        display: inline-block;
        border: 0;
        width: 30px;
        font-weight: bold;
        color: #7c7c7c;
        font-weight: normal;
        background: #fff;
    }

.btnFltrle {
    display: block;
    margin: 5px 0;
    color: #7c7c7c;
    font-weight: 500;
    padding: 5px 0;
    text-align: right;
}

.katH2 > a > i.fa-trash-o {
    font-size: 17px;
    margin: 0px 10px;
}

.fltr > div > a {
    border-left: 2px solid #fff;
    padding: 3px;
    display: block;
    transition: border-color .4s ease-in;
    display: inline-block;
    width: 100%;
    font-size: 12px;
}

    .fltr > div > a > i {
        float: right;
        font-size: 14px;
        transition: transform .2s ease-in;
        color: #5c5c5c;
        margin-right: 10px;
    }

.pagination > li > span > span > a {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #900;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    font-weight: bold;
}

.pagination > li > a, .pagination > li > span {
    color: #900;
}

    .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
        z-index: 2;
        color: #FFF;
        background-color: #900;
        border-color: #ddd;
    }

.pagination > li > span {
    position: relative;
    float: left;
    padding: 0;
    margin-left: 0px;
    color: #fff;
    text-decoration: none;
    background-color: #fff;
    border: 0;
}

.SayfalamaNo span .active {
    background: #900;
    color: #fff;
}

.sayfalama {
    text-align: right;
}

.pagination {
    float: none;
    display: inline-block;
    width: auto;
}

strong {
    font-weight: bold;
    height: 35px;
}

.ProductRight > .post {
    display: block;
    position: relative;
    overflow: hidden;
    float: left;
    background: #f7f7f7;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

    .ProductRight > .post:hover {
        -webkit-box-shadow: 0 8px 30px 0 rgba(0,0,0,0.30);
        box-shadow: 0 8px 30px 0 rgba(0,0,0,0.30);
        transform: translate3d(0,-3px,0);
    }

    .ProductRight > .post h4 {
        height: 40px;
        font-size: 14px;
        font-weight: bold;
        margin: 0;
    }

.f_alani {
    font-size: 20px;
    color: #000;
    height: 100px;
}

    .f_alani small {
        display: block;
        color: #7c7c7c;
        font-size: 12px;
        height: 35px;
    }

    .f_alani h6 {
        font-weight: bold;
        height: 20px;
    }

.mensei {
    text-align: left;
    font: normal normal 16px/16px 'Titillium Web',sans-serif;
    height: 30px;
}

@media(max-width:767px) {
    .thumb_box {
        width: 100%;
    }

    .product_box2, .ListScnz {
        width: 100%;
    }

    .ProductLeft {
        padding: 0 0 0 10px;
    }

    .Layout {
        display: none;
    }
    #rooms-area .single_room {
        width: 100%;
    }
}

@media(min-width:768px) and (max-width:1024px) {
    .product_box {
        width: 31%;
    }

    .ProductLeft {
        padding: 0 0 0 10px;
    }

    .product_box2 {
        width: 23%;
    }
}

@media(min-width:768px) {
}

@media(min-width:992px) {
}

@media(min-width:1200px) {
}

@media(min-width:1201px) and (max-width:1326px) {
}

@media (min-width:1382px) {
}
