ul {
    padding-left: 0;
}

/*slider */
@media (min-width: 992px) {

    .slider-home,
    .slider-home .slide {
        height: 60vh;
    }
}

.slide {
    position: relative;
}

.slide .slide__img {
    width: 100%;
    height: auto;
    overflow: hidden;
}

@media (min-width: 992px) {
    .slide .slide__img {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
}

.slide .slide__img img {
    width: 100%;
    height: auto;
    opacity: 1 !important;
    animation-duration: 3s;
    transition: all 1s ease;
}

.slider [data-animation-in] {
    opacity: 0;
    animation-duration: 1.5s;
    transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: 25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    display: block;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
    transition: all .3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.simple-dots .slick-dots li {
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button {
    border-radius: 50%;
    background-color: white;
    opacity: 0.25;
    width: 20px;
    height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
    opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li {
    height: 3px;
    width: 100px;
}

.stick-dots .slick-dots li button {
    position: relative;
    background-color: white;
    opacity: 0.25;
    width: 100px;
    height: 2px;
    padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
    opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
    color: white;
    opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
    opacity: 1;
}

@keyframes zoomInImage {
    from {
        transform: scale3d(1, 1, 1);
    }

    to {
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

.zoomInImage {
    animation-name: zoomInImage;
}

@keyframes zoomOutImage {
    from {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.zoomOutImage {
    animation-name: zoomOutImage;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    width: 2rem;
    height: 2rem;
    border: 3px solid #fff;
    z-index: 2;
    transform: translateY(-50%) rotate(45deg);
    cursor: pointer;
    z-index: 999999;
    opacity: 1;
}

.nav-arrow.prev {
    border-top: none;
    left: 2rem;
    border-right: none;
    z-index: 3;
}

.nav-arrow.next {
    border-left: none;
    right: 2rem;
    border-bottom: none;
}

/*SLİCK END*/
/*salon*/
.photo {
    position: relative;
    overflow: hidden;
    box-shadow: 10px 15px 25px 0 rgb(0 0 0 / 10%);
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.photo:hover {
    box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .1);
}

.photo::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skewX(-25deg);
    width: 50%;
    z-index: 2;
}

.photo:hover::before,
.photo:focus::before {
    -webkit-animation: shine 0.85s;
    animation: shine 0.85s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: all .5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.photo:hover img {
    
}

.photo:hover img {
    margin-top: 0;
}

@media only screen and (min-width: 768px) {
    .salon-gorsel {
        min-height: 295px;
    }
}

/*salon end*/


.bubbles {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bubble {
    position: absolute;
    left: var(--bubble-left-offset);
    bottom: -10%;
    display: block;
    width: var(--bubble-radius);
    height: var(--bubble-radius);
    animation: float-up var(--bubble-float-duration) var(--bubble-float-delay) ease-in infinite;
    opacity: .9;
}

.bubble::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(136, 246, 251, 0.3);
    border-radius: inherit;
    animation: var(--bubble-sway-type) var(--bubble-sway-duration) var(--bubble-sway-delay) ease-in-out alternate infinite;
}

.bubble:nth-child(0) {
    --bubble-left-offset: 10vw;
    --bubble-radius: 5vw;
    --bubble-float-duration: 20s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 1s;
    --bubble-sway-delay: 0;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(1) {
    --bubble-left-offset: 87vw;
    --bubble-radius: 6vw;
    --bubble-float-duration: 39s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 1s;
    --bubble-sway-delay: 4s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(2) {
    --bubble-left-offset: 30vw;
    --bubble-radius: 7vw;
    --bubble-float-duration: 75s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 1s;
    --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(3) {
    --bubble-left-offset: 2vw;
    --bubble-radius: 6vw;
    --bubble-float-duration: 106s;
    --bubble-sway-duration: 5s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 0s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(4) {
    --bubble-left-offset: 64vw;
    --bubble-radius: 5vw;
    --bubble-float-duration: 60s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 1s;
    --bubble-sway-delay: 3s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(5) {
    --bubble-left-offset: 50vw;
    --bubble-radius: 7vw;
    --bubble-float-duration: 36s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 3s;
    --bubble-sway-delay: 0s;
    --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(6) {
    --bubble-left-offset: 70vw;
    --bubble-radius: 8vw;
    --bubble-float-duration: 41s;
    --bubble-sway-duration: 5s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 0s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(7) {
    --bubble-left-offset: 80vw;
    --bubble-radius: 4vw;
    --bubble-float-duration: 44s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 2s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(8) {
    --bubble-left-offset: 2vw;
    --bubble-radius: 5vw;
    --bubble-float-duration: 41s;
    --bubble-sway-duration: 5s;
    --bubble-float-delay: 0s;
    --bubble-sway-delay: 2s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(9) {
    --bubble-left-offset: 10vw;
    --bubble-radius: 6.5vw;
    --bubble-float-duration: 48s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 2s;
    --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(10) {
    --bubble-left-offset: 93vw;
    --bubble-radius: 5.3vw;
    --bubble-float-duration: 24s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 10s;
    --bubble-sway-delay: 1s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(11) {
    --bubble-left-offset: 10vw;
    --bubble-radius: 4.8vw;
    --bubble-float-duration: 20s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 1s;
    --bubble-sway-delay: 9;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(12) {
    --bubble-left-offset: 87vw;
    --bubble-radius: 4.6vw;
    --bubble-float-duration: 30s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 1s;
    --bubble-sway-delay: 2s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(13) {
    --bubble-left-offset: 30vw;
    --bubble-radius: 5vw;
    --bubble-float-duration: 80s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 6s;
    --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(14) {
    --bubble-left-offset: 2vw;
    --bubble-radius: 6vw;
    --bubble-float-duration: 66s;
    --bubble-sway-duration: 5s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 4s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(15) {
    --bubble-left-offset: 64vw;
    --bubble-radius: 7.4vw;
    --bubble-float-duration: 71s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 1s;
    --bubble-sway-delay: 3s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(16) {
    --bubble-left-offset: 50vw;
    --bubble-radius: 4.5vw;
    --bubble-float-duration: 50s;
    --bubble-sway-duration: 6s;
    --bubble-float-delay: 3s;
    --bubble-sway-delay: 4s;
    --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(17) {
    --bubble-left-offset: 70vw;
    --bubble-radius: 4.8vw;
    --bubble-float-duration: 28s;
    --bubble-sway-duration: 5s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 5s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(18) {
    --bubble-left-offset: 80vw;
    --bubble-radius: 7.9vw;
    --bubble-float-duration: 90s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 6s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(19) {
    --bubble-left-offset: 17vw;
    --bubble-radius: 8vw;
    --bubble-float-duration: 36s;
    --bubble-sway-duration: 5s;
    --bubble-float-delay: 0s;
    --bubble-sway-delay: 7s;
    --bubble-sway-type: sway-left-to-right;
}

.bubble:nth-child(20) {
    --bubble-left-offset: 10vw;
    --bubble-radius: 5.9vw;
    --bubble-float-duration: 48s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 2s;
    --bubble-sway-delay: 8s;
    --bubble-sway-type: sway-right-to-left;
}

.bubble:nth-child(21) {
    --bubble-left-offset: 93vw;
    --bubble-radius: 6.3vw;
    --bubble-float-duration: 24s;
    --bubble-sway-duration: 4s;
    --bubble-float-delay: 9s;
    --bubble-sway-delay: 4s;
    --bubble-sway-type: sway-left-to-right;
}


@keyframes float-up {
    to {
        transform: translateY(-175vh) rotate(360deg);
    }
}

@keyframes sway-left-to-right {
    from {
        transform: translateX(-100%) rotate(-360deg);
    }

    to {
        transform: translateX(100%) rotate(-360deg);
    }
}

@keyframes sway-right-to-left {
    from {
        transform: translateX(100%) rotate(-50deg);
    }

    to {
        transform: translateX(-100%) rotate(-50deg);
    }
}

.beauty-product {
    margin: 6rem 0;
    position: relative;
}

.beauty-product .flower {
    position: absolute;
    bottom: -6rem;
    left: -1rem;
    width: 260px;

    transform: translatex(0px);
    animation: float 10s ease-in-out infinite;
}

.beauty-product .yazi {
    margin-left: 5rem;
}

.beauty-product .yazi h2 {
    margin-bottom: 1rem;
}

.beauty-product .yazi button {
    border: 1px solid #000
}

.beauty-product button:hover {
    background-color: #fce4e0 !important;
    border: 1px solid #fce4e0 !important;
}

.beauty-all-product {
    background-color: #f3f3ed !important;
}

@keyframes float {
    0% {
        transform: translatex(0px);
    }

    50% {
        transform: translatex(-20px);
    }

    100% {
        transform: translatex(0px);
    }
}

.kadin-koltuklar {
    background-color: #fff;
}

.kadin-koltuklar .button, .btn-border {
    border: 1px solid #6c757d;
}

.kadin-koltuklar .button:hover, .btn-border:hover {
    background-color: #f3f3ed !important;
}

.bg-light-green {
    background-color: #adcab8;
}

.pr-md-0,
.pr-lg-0,
.pr-0 {
    padding-right: 0;
}

.pr-lg-0 {
    padding-right: 0;
}

.cat-img {
    overflow: hidden;
}

.cat-img img,
.img-sosyal img {
    transition: all ease .5s;
}

.cat-img:hover img {
    transform: scale(1.05);
}

.pl-0 {
    padding-left: 0;
}

.ml-0 {
    margin-left: 0;
}

.mr-0 {
    margin-right: 0;
}

.bg-gray {
    background-color: hsl(180, 4%, 85%);
}

.pm-bg {
    padding: 8rem 0 5rem 0;
}

.iconic h3 {
    min-height: 6rem;
}

.bg-dark-green,
.img-sosyal {
    background-color: #193532;
}

.img-sosyal:hover img {
    opacity: .6;
}

@media only screen and (max-width: 992px) {
    .iconic h3 {
        font-size: 1rem;
    }

}

@media only screen and (max-width: 767px) {
    .pb-sm-5 {
        padding-bottom: 3rem;
    }

    .p-sm-5 {
        padding: 3rem;
    }

    .pb-sm-1 {
        padding-bottom: 1.5rem;
    }

    .mb-sm-1 {
        margin-bottom: 1.5rem !important;
    }

    .iconic h3 {
        min-height: 3rem;
    }

    .pb-sm-1z {
        padding-bottom: 1rem;
    }
    .slide-inner video{
        height:200px;
    }
}

.tooltips .icon {
    position: relative;
}

.tooltips .icon .tooltip {
    position: absolute;
    top: 0;
    font-size: 14px;
    background-color: #ffffff;
    color: #ffffff;
    padding: 5px 8px;
    border-radius: 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltips .icon .tooltip::before {
    position: absolute;
    content: "";
    height: 8px;
    width: 8px;
    background-color: #ffffff;
    bottom: -3px;
    left: 50%;
    transform: translate(-50%) rotate(45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tooltips .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tooltips-1 .icon:hover .tooltip {
    top: -60px;
}

.tooltips .icon:hover,
.tooltips .icon:hover .tooltip,
.tooltips .icon:hover .tooltip::before {
    color: #000;
    cursor: pointer;
}

.myz-form input {
    padding: 10px;
    border-bottom: 1px solid;
}


.cark {
    padding: 6rem 0;
}

#header-wrap {
    z-index: 999;
}

.filters {
    margin: 0 0 1em;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 99;
	border-bottom:1px solid transparent;
}

.filters__item {
    display: inline-block;
    margin-left: 1rem;
    transition: all 0.3s ease;
	position:relative;
	cursor:pointer;
}

.filters__item:hover .filters__btn {
    color: #000
}

.filters__btn {
    color: #000;
    display: inline-block;
    padding: .8rem 1rem;
}

.filters .filters__item:after{
	content: '';
    position: absolute;
    left: 0;
    display: inline-block;
    height: 1em;
    width: 100%;
    border-bottom: 1px solid;
    margin-top: 1.2rem;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
}
.filters .filters__item:hover:after, .filters .filters__item.active:after{
	opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}


.gallery__item {
    background: black;
    display: inline-block;
    height: 100px;
    width: 100px;
}

.js-filterable {
    display:block;
	opacity: 1;
	transition: display 0s, opacity 0.2s linear; 
}


.is-hidden {
    display:none;
	opacity: 0;
	transition: display 0s, opacity 0.2s linear;
}

.beauty-categories h5 {
    text-align: center;
    margin-top: .5rem;
    font-size: 1.25rem;
    font-weight: 400;
}

#showProduct {
    border: 1px solid #000;
}

.salon-ek img.scroll {
    position: absolute;
    bottom: 7%;
    left: 50%;
    width: 60px;
}

.salon-ek {
    overflow: hidden;
}

.salon-ek img.banner {
    transition: all ease 50s;
}

.salon-ek img.banner:hover {
    transform: scale(1.2);
}

.salon-ek .banner-text {
    position: absolute;
    top: 20%;
    max-width: 500px;
    left: 7%;
}

.salon-ek h4 {
    color: #fff;
    font-size: 2.6rem;
    text-shadow: 0 0 5px rgb(245 251 255 / 0%), 0 0 10px rgb(245 251 255 / 0%), 0 0 15px rgb(245 251 255 / 50%), 0 0 25px rgb(245 251 255 / 50%);
}

.salon-content h5 {
    font-size: 1.6rem;
    text-align: justify;
}

.salon-content h6 {
    font-size: 1.2rem;
}

.hakkimizda .yazi p.baslik {
    font-size: 1.8rem;
}

.salon-tasarim-gallery img {
    width: 100%;
    margin-bottom: 1.4rem;
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ffffff !important;
}

.see-input {
    border: 1px solid #000;
    margin-bottom: 1rem;
    padding: .5rem;
    width: 270px;
}

.kvkk a {
    text-decoration: underline !important;
}


.float-wp {
    position: fixed;
    width: 53px;
    height: 51px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.float-wp img {
    width: 30px;
}

.my-float {
    margin-top: 16px;
}


.dil-li .menu-link {
    text-transform: uppercase !important;
}


.referans p,
.referans ul li {
    font-size: 12px;
}


.my-form .file-upload input {
    visibility: hidden;
    width: 0;
    height: 0;
}

.my-form .file-input {
    width: 100%;
    line-height: 1.6;
    padding: 15px 10px;
    border: none;
    color: var(--white);
    background: white;
    transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25), transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.popup-container a {
    text-decoration: underline !important;
}

.modal-dialog {
    overflow-y: initial !important
}

.modal-body {
    height: 72vh;
    overflow-y: auto;
}

.color-hover {
    margin-bottom: 2rem;
}

.colors .gallery span {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 11px;
    margin-left: 1rem;
}

#teklifAl .modal-body {
    height: auto;
}


.see-btn {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

button[id='finish'] {
    height: 40px;
    width: 110px;
    border-radius: 4px;
    color: black;
    background: #adcab8;
    border: 3px solid #adcab8;
    cursor: pointer;
}

.choose {
    cursor: pointer;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose img {
    width: 100%;
    border: 3px solid #fff;
    padding: 5px;
    margin-bottom: 20px;
    transition: all ease .3s;
}

.choose input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
}

.choose span {
    font-size: 1.2rem;
    padding: 1rem 0;
    border: 1px solid #000;
    width: 100%;
    text-align: center;
    transition: all ease .5s;
}

.choose:hover img,
.choose:hover span {
    background-color: #adcab8;
    color: #fff;
}

.choose span:hover {
    border: 1px solid #fff;
}

#result {
    width: 100%;
    margin: auto;
    /* font-size: 25px; */
    text-align: center
}

p.questions {
    text-align: center;
    font-size: 2.4rem;
}

.result-btn {
    color: #000;
    text-decoration: none;
    transition: all ease .5s;
}

.result-btn:hover {
    color: #000
}

.incele {
    border: 1px solid #000;
    padding: .5rem 1rem;
    transition: all ease .3s;
}

.incele:hover {
    border: 1px solid #adcab8;
    background-color: #adcab8;
    color: #fff;
}

#finish {
    font-size: 2.2rem !important;
}

.results img {
    width: 80%;
}

.info-modal ul li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.info-modal ul li:before {
    background-color: #adcab8;
    content: "";
    height: 10px;
    left: 0;
    position: absolute;
    top: 7px;
    width: 11px;
}
.info-modal{
    height: auto !important;
}

.map-modal{
    height: 60vh;
}
 #copyrights .kvkk{
		text-align:right;
	}
	
.object img{
	object-fit:cover;
	height:170px;
}
.col-vitrin img{
	height:300px;
	object-fit:cover;
}

.modal-header button{
	background:transparent;
	border:none;
	font-size:28px;
}
/*responsive*/




@media only screen and (max-width: 767px) {
	.salon-ek h4{
		font-size:1rem; 
	}
	.salon-ek .banner-text a{
		display:none;
	}
	.salon-ek img.scroll{
		width:20px;
	}
	.salon-content h5{
		font-size:1.2rem;
		text-align:left;
	}
	.mtr-5{
		margin-top:1rem;
	}
	.salon-ek .banner-text{
		max-width:280px;
	}
}

@media only screen and (max-width: 500px) { 
  .site-navbar .ml-5{
	  margin-left:2rem !important;
  }
  .site-navbar .site-menu-toggle .icon-menu{
	  margin-bottom:0;
	  font-size:23px;
  }
  .site-navbar-wrap .mr-3{
	  margin-right:.2rem !important;
  }
  .site-navbar-top .top-social a, .site-navbar-top .top-link a{
	  padding:0 !important;
	  font-size:12px;
  }
	.site-menu-toggle{
		display:flex;
		align-items:center;
	}
	#copyrights .kvkk{
		text-align:center;
	}
	#copyrights small{
		font-size:10px;
	}
	#copyrights .rc{
		text-align:center;
	}
	#copyrights .order-sm-12{
		order:12;
		margin-bottom:1rem;
	}
	.bread .justify-content-end{
		justify-content:left !important;
	}
	.bread small{
		font-size:9px;
	}
	.object img{
		height:100px;
	}
	.nav-arrow{
		width:1rem;
		height:1rem;
	}
	.salon-gorsel .rmb-1 {
		margin-bottom:1.6rem;
	}
	
}


#myModal .modal-body{
	height:auto !important;
	padding:0
}

#myModal .modal-content, #myModal .modal-header{
	border:none;
	background:transparent;
	padding:0
}
#myModal button{
	color:#fff
}


.nice-select{
	width:100%;
	margin-bottom:2rem;
	border-color: #999;
}
.nice-select.open .list{
	width:100%;
	max-height:280px;
	overflow-y:scroll;
}


.text-right{
	text-align:right;
}
.btn-border.mr-4{
	margin-right:1.5rem !important;
}


















@media screen and (max-width: 992px) {
    #iletisimFormu {
        padding: 0px 30px;
    }
}