:root {
    --border: #bfbfbf;
    --c1: #d8cab0;
}

* {
    margin: 0;
    /* padding: 0; */
    /* list-style-type: none; */
    box-sizing: border-box;
}

/*
::-webkit-scrollbar {
	width: 2px;
}::-webkit-scrollbar-track {
	background: #333;
}::-webkit-scrollbar-thumb {
	background: #ddd;
}::-webkit-scrollbar-thumb:hover {
	background: #333;
}::selection {
    background: #e79e4a;
    text-shadow: none;
    color: #202020;
}
*/
body,
html {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-size: 14px;
    text-decoration: none;
    font-weight: normal;
    color: #000;
    width: 100%;
    background-color: #FFF;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    cursor: pointer;
}

#app {
    display: none;
}

.border {
    border: 1px solid #FF0032;
}

.relative {
    position: relative;
}

.pointer {
    cursor: pointer;
}

.fcc {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fcl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.fcr {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.fbl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.fbr {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.fbc {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.fct {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.ftr {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.frb {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.ftc {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.image_contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.image_cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sw {
    max-width: 86%;
    margin: auto;
}

#loading {
    position: fixed;
    inset: 0;
    background-color: #f5f5f5;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

#loading svg {
    width: 400px;
}

.lin {
    position: relative;
    padding-left: 10px;
}

.lin:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--c1);
}

#wait {
    position: fixed;
    inset: 0;
    z-index: 99999;
    cursor: wait;
    display: none;
}

.p_title {
    position: relative;
    border-bottom: 1px solid #e6e6e6;
    padding: 7px 0;
    font-size: 13px;
    font-weight: bold;
    color: #000;
}

.p_title span {
    font-size: 10px;
    color: #a1a1a1;
    margin-left: 8px;
}



/* INPUT */
.inp {
    position: relative;
    display: flex;
    flex-flow: column-reverse;
    width: 100%;
    margin-bottom: 20px;
}

.inp:focus-within:after {
    content: "";
    position: absolute;
    bottom: 0px;
    height: 2px;
    left: 0%;
    width: 100%;
    background-color: var(--c1);
    animation: inp_aktif 300ms linear;
}

@keyframes inp_aktif {
    from {
        width: 0%;
        left: 50%
    }

    to {
        width: 100%;
        left: 0%;
    }
}

.inp label,
.inp input,
.inp select,
.inp textarea {
    transition: all 0.2s;
    touch-action: manipulation;
    resize: none;
}

.inp label {
    letter-spacing: 0.05em;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    font-family: inherit;
}

.inp input,
.inp select,
.inp textarea {
    position: relative;
    width: 100%;
    padding: 10px 0;
    font-family: inherit;
    font-size: 14px;
    border: none;
    background: none;
    outline: none;
    border-bottom: 1px solid #ced4da;
}

.inp input:focus,
.inp select,
.inp textarea {
    outline: 0;
    border-bottom: 1px solid #666;
}

.inp input:placeholder-shown+label,
.inp input:placeholder-shown+select,
.inp input:placeholder-shown+textarea {
    cursor: text;
    max-width: 66.66%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    transform-origin: left bottom;
    transform: translate(0, 1.9rem) scale(1);
    opacity: 1;
}

.inp input::-webkit-input-placeholder,
.inp select::-webkit-input-placeholder,
.inp textarea::-webkit-input-placeholder {
    opacity: 0;
    transition: inherit;
}

.inp input:focus::-webkit-input-placeholder,
.inp select:focus::-webkit-input-placeholder,
.inp textarea:focus::-webkit-input-placeholder {
    opacity: 1;
}

.inp input:not(:placeholder-shown)+label,
.inp input:focus+label,
.inp select:not(:placeholder-shown)+label,
.inp select:focus+label,
.inp textarea:not(:placeholder-shown)+label,
.inp textarea:focus+label {
    transform: translate(0, 6px) scale(1);
    cursor: pointer;
    color: var(--c1);
}

.inp input:not(:placeholder-shown)+.none,
.inp input:focus+.none,
.inp select:not(:placeholder-shown)+.none,
.inp select:focus+.none,
.inp textarea:not(:placeholder-shown)+.none,
.inp textarea:focus+.none {
    opacity: 1 !important;
}

.inp .none {
    opacity: 0 !important;
}



.tmp_item {
    position: relative;
    width: 340px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: #000;
}

.tmp_item .tmp_core {
    position: relative;
    margin: 20px;
}

.tmp_item .tmp_image {
    position: relative;
    aspect-ratio: 1.8;
}

.tmp_item h2 {
    position: relative;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 4px;
}

.tmp_item .lokasyon {
    position: relative;
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 16px;
}

.tmp_item .lokasyon img {
    margin-right: 6px;
}

.tmp_item .alt strong {
    padding-right: 6px;
}

.tmp_item .alt {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--border);
    height: 50px;
    padding: 0 20px;
}

.tmp_detay {
    font-weight: bold;
}

.tmp_detay i {
    color: var(--c1);
    font-size: 22px;
}



@media only screen and (max-width: 1200px) {}



@media only screen and (max-width: 900px) {
    .m_fcc {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .m_disable {
        display: none !important;
    }
}