html, body {
  cursor: default;
}

a,
button,
[role="button"],
input[type="submit"],
input[type="button"],
label[for] {
  cursor: pointer;
}

input,
textarea,
[contenteditable="true"] {
  cursor: text;
}



.ajax-loading svg {
  width: 50px;
  height: 50px;
  color: var(--contrast, #555);
  opacity: 0.8;
}


@keyframes gentleTilt {
  0% {
    transform: rotate(-6deg);
  }
  50% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(-6deg);
  }
}

@keyframes subtleDiagonal {
  0% {
    /* Çok hafif sol üstte başla */
    transform: translate(-2px, -2px) rotate(-2deg);
  }
  50% {
    /* Çok hafif sağ alta süzül (Sadece 6 piksellik bir hat) */
    transform: translate(2px, 2px) rotate(2deg);
  }
  100% {
    /* Başlangıca dön */
    transform: translate(-2px, -2px) rotate(-2deg);
  }
}

.telegram-yacht {
transform-box: fill-box;
  transform-origin: center;
  
  /* Süreyi 6 saniyeye çıkardım; ne kadar yavaş olursa o kadar zarif durur */
  animation: subtleDiagonal 6s ease-in-out infinite;
  
  width: 45px; /* İkonun küçük olması her zaman daha profesyonel durur */
  height: auto;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.1));
}

/***************************************************
 * Generated by SVG Artista on 10/10/2025, 9:58:01 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(9, 167, 224);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(9, 167, 224);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
          animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
          animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(38, 95, 212);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(38, 95, 212);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
          animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}


/* === AJAX OVERLAY === */
.gb-overlay.ajax-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2147483647; /* her şeyin üstünde */
}

/* İçerik kutusu */
.gb-overlay.ajax-overlay .gb-overlay__content {
position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    max-width: 760px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: fadeInUp .3s ease forwards;
}

/* Kapatma butonu */
.gb-overlay.ajax-overlay .ajax-overlay-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.gb-overlay.ajax-overlay .ajax-overlay-close:hover {
  color: #000;
}

/* AJAX içeriği */
.gb-overlay.ajax-overlay .ajax-body {
  margin-top: 1rem;
  line-height: 1.6;
	position:relative;
	overflow:hidden;
}

/* Basit fade animasyonu */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --- Sadece bizim custom overlay yapımıza etki eder --- */
.custom-overlay-content {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.5rem;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 640px;
  margin: auto;
  transition: transform 0.3s ease;
}

/* Mobilde tam ekran */
@media (max-width: 768px) {
  .custom-overlay-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border-radius: 0;
    margin: 0;
  }
}

/* Kapat butonu */
.custom-overlay-close {
  position: sticky;
  top: 0;
  right: 0;
  display: inline-block;
  margin-left: auto;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #444;
  font-weight: bold;
  cursor: pointer;
  float: right;
  line-height: 1;
  z-index: 100;
  transition: color .2s ease;
}
.custom-overlay-close:hover {
  color: #e00;
}

/* Dinamik içerik */
.custom-overlay-body {
  margin-top: 1.5rem;
}

/* Yükleniyor animasyonu */
.custom-spinner {
  width: 36px;
  height: 36px;
  margin: 1rem auto;
  border: 3px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: customSpin .8s linear infinite;
}
@keyframes customSpin {
  to { transform: rotate(360deg); }
}




/* Sayfada kapalıyken normal görünüm (örnek stil) */

.gb-overlay {
  /*  z-index: 1; */
}

  /* Açıkken overlay gibi ortala (örnek) */
  #myOverlay.overlay-active {
    position: fixed !important;
    inset: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;
    width: auto !important;
    z-index: 2147483646 !important;
    transform: none !important;
    box-shadow: 0 12px 32px rgba(0,0,0,.32);
    padding: 0px;
  }

 #myOverlay.:not(.overlay-active) {
  display: block !important;
  position: relative !important;
  visibility: visible !important;
  opacity: 1 !important;
}


  /* Backdrop varsayılanı; açıkken kütüphane animasyonla opaklığı yönetir */
  .overlay-active .gb-overlay__backdrop {
    /* position: absolute; */
    /* inset: 0; */
    background: rgba(0,0,0,.5);
  }

/* === Overlay İçeriğini Scroll Edilebilir Yap === */

/* 1️⃣ Flex merkezlemeyi koru ama içeriği büyüyebilir yap */
.overlay-active .gb-overlay__content {
  display: flex;
  justify-content: center;
  align-items: flex-start !important; /* ortalama yerine yukarıdan başla */
  padding: 0rem;
  box-sizing: border-box;
  width: 100%;
  height: 100vh; /* tam yüksekliği kapla */
  margin: 0px;
  flex-wrap: wrap;
  align-content: center;
}

/* 2️⃣ Overlay içeriğini saran form kutusuna kaydırma ekle */
.overlay-active .gb-overlay__content > div {
         /* ekran yüksekliğinin %85’i kadar alan */
         overflow-y: auto;            /* dikey scroll */
         overflow-x: hidden;
         background: #fff;
         -webkit-overflow-scrolling: touch;
         box-shadow: 0 5px 25px rgba(0,0,0,0.25);
         /* height: 100%; */
         width: 100%;
         /* overflow-x: hidden; */
         /* overflow-y: scroll; */
}

/* 3️⃣ Scrollbar görünümü (isteğe bağlı) */
.overlay-active .gb-overlay__content > div::-webkit-scrollbar {
  width: 6px;
}
.overlay-active .gb-overlay__content > div::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);
  border-radius: 3px;
}
.overlay-active .gb-overlay__content > div::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0,0,0,0.5);
}

.gb-element-c6835b35-4 {
    column-gap: 1em;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    row-gap: 1em;
    column-gap: 2em;
}

.gb-element-ffe365de-1 {
    grid-column: 1 / -1;
}



@media (max-width: 1024px) and (min-width: 769px) {
  body:not(.inside-right-sidebar) .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column:not(:first-child) {
    margin-left: var(--wp--style--block-gap, 0em);
    max-width: 100%;
  }
}

@media only screen and (min-width: 1025px) {
  /* buraya desktopÃ¢â‚¬â„¢a ÃƒÂ¶zel stiller */
	
.fancybox__content {



}
.fancybox__slide .fancybox__content {
max-width:768px;
	    padding: 3rem;

    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    border-radius: 4px;
}
	.codedropz-upload-wrapper {
    /* height: 100%; */
    /* overflow-x: scroll; */
    /* z-index: 1; */
    /* position: relative; */
    /* background-color: #f3f5f6; */
}
	

}

@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 13px;
    font-weight: normal;
    display: block;
    text-align: end;
}

input[type="reset"]:hover, input[type="submit"]:hover{
	color: var(--base-3);
    background-color: var(--accent);

}
.wpcf7 > form input[type="submit"][disabled], .wpcf7 > form input[type="submit"][disabled]:hover, .wpcf7 > form input[type="submit"][disabled]:focus {
background-color: #b8884847;
    color: #8e6a3a5c;
}


.ucretsiz .gb-text::after {
    content: " (\00DC cretsiz)";
    color: #00a416;
    font-size: 12px;
    /* display: block; */
    padding-left: 3px;
}
#top-list {
  display: none;
}

.overlay-active #top-list {
   display: block;
}

.codedropz-upload-container {
    /* display: flex; */
    /* padding: 20px 0px; */
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
    top: 0px;
    /* transform: translateY(0%); */
    bottom: 0%;
}

.f-carousel__nav {
    /* position: static; */
    /* display: flex; */
    /* width: 100%; */
    /* height: 40px; */
    /* flex-direction: column-reverse; */
    /* flex-wrap: wrap; */
}
#myCarousel-duyuru,
#myCarousel-blog {
    /*display: flex;*/
    /*flex-direction: row;*/
    /*flex-wrap: wrap;*/
    /* margin-bottom: 0; */
}








#myCarousel-duyuru .f-carousel img{max-width: none;}





#myCarousel-after .f-carousel__track {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
}

div#myCarousel-after {
    display: flex;
    flex-wrap: wrap;
}



#myCarousel-after .f-carousel__slide {
    width: 50%;
}

#myCarousel-map .f-carousel__slide,
#myCarousel-member .f-carousel__slide,
#myCarousel-after .f-carousel__slide {
 

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: var(--f-progress, 1);
    transform: scale(var(--f-scale, 1));
	padding-left: 0px;
}
    #myCarousel-member .f-carousel__slide {
        --f-carousel-spacing: 5px;
        --f-carousel-slide-width: calc((100% - 0px) / 6);
    }



.dig-form input[type="text"], .dig-form input[type="email"], .dig-form input[type="url"], .dig-form input[type="password"], .dig-form input[type="search"], .dig-form input[type="tel"], .dig-form input[type="number"], .dig-form textarea, select {
    color: #4e5e6a;
    background-color: #f9f9f9;
    border-color: #dadce0;
}


.dig-form #back-to-you {
    /* background-color: #f9f9f9; */
}

.dig-form .gb-container-f03a3141 {
    background-color: #f9f9f9;
}



.dig-form .fancybox__slide.has-inline.is-selected.is-done {
    /* transform: none !important; */
}


.bg-scrolling-element-when-modal-active {
    touch-action: none;
    -ms-scroll-chaining: none;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: auto;
    overflow: hidden;
}

.dnd-upload-status .dnd-upload-image {
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    text-align: center;
    border-radius: 0;
    position: relative;
}


.dnd-upload-status .dnd-upload-details .dnd-progress-bar span {
    background: #4CAF50;
    color: #000 !important;
    line-height: inherit !important;
	  padding-top: 5px;
}


.dig-form .fancybox__backdrop::before {
    /* opacity: 0.7; */
    content: '';
    /* background-color: rgb(0 0 0 / 98%); */
    content: "";
    /* background-image: url(https://www.ferruhbingul.com/new/images/2016/11/burun_estetigi-4.jpg); */
    /* background-repeat: no-repeat; */
    /* background-position: right center; */
    /* background-size: cover; */
    /* background-attachment: fixed; */
    z-index: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* transition: inherit; */
    pointer-events: none;
    /* opacity: .2; */
}

.dig-form .fancybox__backdrop {
    /* background-image: url(https://www.haarberater.com/images/hair_ransplant_before_after_3500_grafts_2500_grafts_from_donor_scalp_1000_grafts_from_beard.jpg); */
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    background-attachment: fixed;
    background: rgb(0 43 78 / 81%);
}





.dnd-upload-status .dnd-upload-details .name span {
 
    position: relative;
    padding-right: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    width: 160px;
}

.f-carousel__dots li button {color: cornflowerblue;height: 40px;width: 35px;}

.f-carousel__dots {
 /* color: blueviolet; */
 /* position: sticky; */
 /* order: 2; */
}



.hairmap-head-marker {
    position: absolute;

}

#myCarousel-after .f-carousel__slide{
  /*width: calc((100% - 0px) / 3); */
    /* display: flex; */
    /* align-items: center; */
	    padding-left: 20px;
    padding-bottom: 20px;
  }




#myCarouse2 .f-carousel__slide {
    width: calc(100% / 2);
    display: flex;
    align-items: center;
  }

	#myCarousel4 .f-carousel__slide {
  --f-carousel-spacing: 5px;
  --f-carousel-slide-width: calc((100% - 0px) / 3);
}

#myCarousel4 .f-carousel__slide {
    width: var(--f-carousel-slide-width);
    display: flex;
    align-items: center;
    height: 100%;
  }

#myCarousel-map .f-carousel__slide {
    width: calc((100% - 0px) / 2);
    display: flex;
    align-items: center;
    height: 100%;
  }


.fancybox__container {
    /* overflow: auto; */
    /* overflow: auto; */
    /* pan-y; */
    /* height: 100vh; */
}

.fancybox__carousel.is-ltr.is-horizontal {
    -webkit-overflow-scrolling: touch;
    /* overflow: auto; */
}

.fancybox__track {
    -webkit-overflow-scrolling: touch;
    /* overflow: auto; */
}



.ayrac {
    width: 100%;
}
.dig-form .fancybox-bg {
    background: #000a26;
}
.dig-form .fancybox-toolbar{
	display: flex;
    text-align: center;
    position: relative !important;
}

.dig-form.fancybox-is-open #top-list{
    display: flex;
}

.fanctool {
    display: flex;
}

.dig-form .fancybox-slide, .dig-form.fancybox-is-open .fancybox-stage {
    overflow: scroll;
}


.dig-form .fancybox-toolbar.compensate-for-scrollbar {
    display: flex;
}

.dig-form .fancybox-button {
 
    height: 50px !important;
}
.dig-form .fancybox-content {
 padding: 0px !important;
    margin-top: 50px !important;
}

.dig-form .fancybox__slide.has-inline.is-selected.is-done {
    padding: 0px;
    /* margin: 0; */
}

.modal-fancybox-close .fancybox-button, .modal-fancybox-close .fancybox-button:link, .modal-fancybox-close .fancybox-button:visited {
    color: #000;
}

.modal-fancybox-close .fancybox-button {
    background: rgb(255 255 255 / 60%);
}


.blocks{
display:block !important;
}

.fancybox-is-open .modal__header  {

}
.fancybox-toolbar {
    display: flex;
    text-align: center;
}

.fancybox-container {

z-index: 100005;
}


.hairmap-head-marker {
    position: absolute;

}




.what-o {
    opacity: 0.5;
}
input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {

    border-radius: 3px;
  
}

.dnd-upload-status .dnd-upload-details .dnd-progress-bar {
    height: 3px !important;
    overflow: visible !important;
}






.dnd-upload-status .dnd-upload-image span.file {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' enable-background='new 0 0 50 50'%3E%3Cpath d='M13.8 39.6c-1.5 0-3.1-.6-4.2-1.8-2.3-2.3-2.3-6.1 0-8.5l17-17c3.1-3.1 8.2-3.1 11.3 0 3.1 3.1 3.1 8.2 0 11.3L25.1 36.4 23.7 35l12.7-12.7c2.3-2.3 2.3-6.1 0-8.5-2.3-2.3-6.1-2.3-8.5 0l-17 17c-.8.8-1.2 1.8-1.2 2.8 0 1.1.4 2.1 1.2 2.8 1.6 1.6 4.1 1.6 5.7 0l12.7-12.7c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L18 29.3l-1.4-1.4 8.5-8.5c1.6-1.6 4.1-1.6 5.7 0 1.6 1.6 1.6 4.1 0 5.7L18 37.8c-1.1 1.2-2.7 1.8-4.2 1.8z'/%3E%3C/svg%3E")!important;height: 25px !important;width: 25px !important;}

.dnd-upload-status .dnd-upload-image {
 
    border-radius: 10% !important;

}




.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, .4, 1);
}

.cp-segmented-bar .cp-firs-clock-icon {
    width: 2em !important;
    height: 2em !important;
	    margin-right: 0px!important;
}

a#back-to {
    display: flex;
    width: 220px;
    /* height: 50px; */
    /* position: relative; */
    /* margin: 0; */
    /* margin-left: 0px; */
    /* padding-right: 0px; */
    right: 0px;
    color: #1b4dd4;
    font-weight: 500;
    display: none;
    font-size: 13px;
}

.micromodal-slide.is-open a#back-to {
	display: block;
	}

.dig-form .fancybox-button {
    background: #e7f2ff;
    color: #1b4dd4;
 }
@media screen and (-webkit-min-device-pixel-ratio:0) {
select,textarea,input {/* font-size:initial!important; */}

select:focus,textarea:focus,input:focus {/* font-size:initial!important; */}
}

input,textarea {/* font-size:initial!important; */}

span.sunbit-form {
    /* display: flex !important; */
    padding-top: 15px;
    display: flex;
    padding-bottom: 15px;
    /* text-align: right; */
    float: right;
    /* position: relative; */
    justify-content: flex-end;
}

.sunbit-form input {
order:2
}

.wpcf7-spinner {
order:1
}

@keyframes shake {
10%,90% {
transform:translate3d(-1px,0,0)
}

20%,80% {
transform:translate3d(2px,0,0)
}

30%,50%,70% {
transform:translate3d(-4px,0,0)
}

40%,60% {
transform:translate3d(4px,0,0)
}
}

.to-form label {display:flex!important;-ms-flex-pack:center!important;/* justify-content:center!important; */-ms-flex-align:center!important;/* align-items:center!important; */}

.ampstart-input .wpcf7-list-item {display: inline-block;margin: 0 0 0 0px;font-weight: 500;font-size: 13px;/* margin-left: -15px; */}

.ampstart-input .wpcf7-list-item label {line-height:1.2em;}

.wpcf7-spinner {
    background-color: #01a452;
    opacity: 0.75;
    width: 13px;
    height: 13px;
    margin: 10px 5px !important;
    margin: auto;
    padding: 10px;
}

.wpcf7-spinner::before {
    background-color: #000000 !important;
    top: 2px !important;
    left: 10px !important;
    width: 6px !important;
    height: 6px !important;
    transform-origin: 0px 7px !important;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
select,textarea,input {/* font-size: initial!important; */}
}

select,textarea,input {/* font-size:13px!important; */}

select:focus,textarea:focus,input:focus {
outline-offset:0
}






@media only screen and (max-width: 769px) {
#konsultasyon .wp-block-columns {display: flex;margin-bottom:28px;flex-wrap: wrap;gap: 20px;flex-direction: column;}

#konsultasyon .wp-block-column:nth-child(2n) {
margin-left:0
}
	
	.overlay-active .gb-overlay__backdrop {
    /* position: absolute; */
    /* inset: 0; */
    background: #fff;
}
	
#bize-ulasin .c-first{
    /* padding-left: 20px; */
    /* padding-right: 20px; */
}
	
.codedropz-upload-handler{
    /* justify-content: space-between; */
    /* display: flex; */
    /* align-items: center; */
    /* flex-wrap: wrap; */
}	
.codedropz-upload-container {
    padding: 0px 0px 0px 5px !important;
    order: 2;
    text-align: right;
    display: flex;
}
	
span.dnd-upload-counter	{
    /* order: 2; */
}
	
	
div.wpcf7-response-output {
    margin: 1em 0 1em!important;
}	
span.button-kampsam {padding-top: 0px !important;display: block;}	
.button-kampsam .ampstart-input .wpcf7-list-item {font-size:12px;}	
	#konsultasyon .codedropz-btn-wrap {
    border: 1px dashed #a4c7e3 !important;
    border-style: dashed !important;
    padding: 5px 10px 5px 10px;
    border-radius: 4px;
}
	
#konsultasyon .codedropz-upload-handler {
    /* height: 50px; */
    /* padding: 10px 0px !important; */
    /* display: flex; */
    /* text-align: center; */
    display: flex;
    margin-bottom: 30px;
    /* align-items: center; */
    justify-content: space-between;
    border: none;
}	
	
.ayrac {
    /* flex-direction: row-reverse; */
}
	
	.dig-form .to-form{
    padding: 40px;
}
	
.fancybox__content {/* height: auto; */touch-action: pan-y;cursor: default;height: 100%;overflow: scroll;border-radius: 0;}
	.dig-form .fancybox-bg {
    background: #fff !important;
		    opacity: 1 !important;
		transition-timing-function: cubic-bezier(0.57, 0.55, 0.65, 0.65) !important;

}


	
.dig-form .fancybox__content {

    padding: 0rem;
    
}	


  
	
	#myCarousel-after .f-carousel__slide {
    width: calc(100% / 1);
    display: flex;
    align-items: center;
}

	

#myCarousel-member .f-carousel__slide {
  --f-carousel-spacing: 5px;
  --f-carousel-slide-width: calc((100% - 0px) / 3);
}

#myCarousel-member .f-carousel__slide {
    width: var(--f-carousel-slide-width);
    display: flex;
    align-items: center;
    padding-left: var(--f-carousel-spacing);
    height: 100%;
  }
	

#myCarousel-map .f-carousel__slide {
    width: calc((100% - 0px) / 2);
    display: flex;
    align-items: center;
    height: 100%;
  }	
#myCarousel-duyuru .f-carousel__track.gb-query-loop-wrapper,
#myCarousel-blog .f-carousel__track.gb-query-loop-wrapper {
    display: flex;
    flex-wrap: nowrap;
    justify-content: unset;
}







#myCarousel-duyuru  .gb-grid-column,
#myCarousel-blog  .gb-loop-item {
    /* position: relative; */
    /* flex: 0 0 auto; */
    /* width: var(--f-carousel-slide-width); */
    /* max-width: 100%; */
    /* height: var(--f-carousel-slide-height); */
    /* margin: 0 var(--f-carousel-spacing) 0 0; */
    /* padding: var(--f-carousel-slide-padding); */
    /* outline: 0; */
    /* transform-origin: center center; */
}
#myCarousel-blog .gb-loop-item,
#myCarousel-duyuru  .gb-grid-column,
#myCarousel-blog .gb-grid-column {
 /* display: flex; */
 /* flex-direction: column; */
 /* align-items: center; */
 /* justify-content: center; */
 opacity: var(--f-progress, 1);
 transform: scale(var(--f-scale, 5));
 /* padding-left: 0px; */
}
#myCarousel-duyuru  .gb-grid-column,
#myCarousel-blog  .gb-loop-item {
    /* width: calc((100% - 50px) / 2); */
    /* display: block; */
    /* flex-direction: row; */
    /* padding-left: 0px; */
    /* padding-bottom: 30px; */
    /* padding-top: 30px; */
    /* justify-content: space-between; */
    /* flex-wrap: nowrap; */
    /* position: relative; */
    /* width: 100%; */
    /* min-width: 100%; */
    margin-bottom: 30px;
}

	
	#myCarousel-after .f-carousel__slide{
 width: calc((100% - 0px) / 1);
  display: flex;
  align-items: center;
    padding-left: 0px;
  }
	#myCarousel-after .f-carousel__track {
    flex-wrap: nowrap;
}
.f-carousel__viewport.is-draggable {
    /* order: 2; */
}	
#myCarousel-duyuru .gb-grid-column.gb-query-loop-item.is-selected,	
#myCarousel-blog .gb-grid-column.gb-query-loop-item.is-selected {
   /* visibility: visible; */
}
#myCarousel-duyuru .gb-grid-column.gb-query-loop-item,
#myCarousel-blog .gb-grid-column.gb-query-loop-item {
   /* display: none; */
   /* visibility: hidden; */
}
	
	
	
	
}

textarea::-webkit-scrollbar {
width:12px;
background-color:#f5f5f5
}

textarea::-webkit-scrollbar-thumb {
border-radius:10px;
-webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.1);
background-color:#4285f4
}

.inline-block {display:inline-block;}

.ampstart-input {
position:relative
}

@media only screen and (min-width: 1059px) {
.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn::before {
left: 0px !important;
}
}



@media only screen and (min-width: 769px) {
.codedropz-upload-inner h6 {
display:block!important
}
	
	body:not(.inside-right-sidebar) .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
    /* margin-left: var(--wp--style--block-gap,2em); */
    /* max-width: 40%; */
    /* height: auto !important; */
    /* border: 1px solid #dbdbdb; */
    /* padding: 20px; */
    /* border-radius: 4px; */
}
}




.ampstart-input > label.open-label {
transition:all .2s ease-in-out;
cursor:pointer
}

.ampstart-input > label {text-overflow:ellipsis;overflow:hidden;-ms-transform:none;/* transform-origin:0 0; *//* transition:transform .4s cubic-bezier(0.25,0.8,0.25,1),color .4s cubic-bezier(0.25,0.8,0.25,1),width .4s cubic-bezier(0.25,0.8,0.25,1); */}

#konsultasyon span.wpcf7-not-valid-tip {
line-height:normal;
color:#ff5252!important;
font-size:12px!important;
padding-left:15px;
padding-top:2px;
text-align:right
}

.disclaimer {
font-size:13px;
line-height:1.2em;
padding:0 0 15px;
font-weight:500
}

#konsultasyon .codedropz-btn-wrap {    background-color: #b0e4ff;
    border-radius: 4px;}

#konsultasyon .codedropz-upload-inner h6,.codedropz-upload-inner span {
display:none;
border:none
}

#konsultasyon .codedropz-upload-handler {/* border:none; *//* background-color:#ffffff87; *//* padding:0; *//* margin-bottom: 0px; */}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {padding: 5px;/* line-height: 15px; *//* display:block; */font-size: 12px;/* background-color:#fff; */display: flex;line-height: 1em;font-weight: 500!important;justify-content: center;align-items: center;color: #0c2d87;}


.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn::before {
  content: "";
  /* background-size: 30px 30px; */
  /* background-repeat: no-repeat; */
  /* height: 30px; */
  /* width: 30px; */
  /* background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 50 50' enable-background='new 0 0 50 50'%3E%3Cpath d='M13.8 39.6c-1.5 0-3.1-.6-4.2-1.8-2.3-2.3-2.3-6.1 0-8.5l17-17c3.1-3.1 8.2-3.1 11.3 0 3.1 3.1 3.1 8.2 0 11.3L25.1 36.4 23.7 35l12.7-12.7c2.3-2.3 2.3-6.1 0-8.5-2.3-2.3-6.1-2.3-8.5 0l-17 17c-.8.8-1.2 1.8-1.2 2.8 0 1.1.4 2.1 1.2 2.8 1.6 1.6 4.1 1.6 5.7 0l12.7-12.7c.8-.8.8-2 0-2.8-.8-.8-2-.8-2.8 0L18 29.3l-1.4-1.4 8.5-8.5c1.6-1.6 4.1-1.6 5.7 0 1.6 1.6 1.6 4.1 0 5.7L18 37.8c-1.1 1.2-2.7 1.8-4.2 1.8z'/%3E%3C/svg%3E"); */
  /* position: relative; */
  left: 30px;
  /* top: 0; */
  /* display: inline-flex; */
  /* align-items: center; */
  /* padding-left: 25px; */
}

@media only screen and (min-width: 768px) {
	    .dig-ajax {
        max-width: 1024px;
        margin: auto;
    }
	
	
#konsultasyon .codedropz-upload-handler {/* border-radius:5px; */background-color:none;/* border: 1px solid #dbdbdb; *//* padding: 10px 20px 10px; */}
	

.codedropz-upload-handler {/* border:none; *//* border:1px solid #00ade53b; *//* border-radius:5px; */padding: 5px;}

.codedropz-upload-inner span {bottom:auto;padding:0 0 5px;display:block;line-height: 1.2;font-size: 13px;}

#konsultasyon .codedropz-btn-wrap {/* border:none; *//* border-style:none; */}

.codedropz-upload-inner .codedropz-btn-wrap a.cd-upload-btn {padding: 10px;}
}

.is_checkbox {
display:-webkit-flex;
display:-ms-flexbox;
display:flex;
-webkit-justify-content:space-between;
-ms-flex-pack:justify;
justify-content:space-between
}

div.wpcf7-mail-sent-ok {
color:#398f14
}

.wpcf7-response-output.wpcf7-display-none.wpcf7-validation-errors {
color:#000
}

div.wpcf7-response-output {margin: 1em 0 1em!important;padding: 10px !important;font-size: 12px;border-radius:5px!important;line-height:1.2em;letter-spacing: 0.04em;}

.codedropz-upload-inner h6 {
margin:5px 0;
font-size:13px
}

.ampstart-input-chk,.ampstart-input-radio {
width:auto!important;
margin-right:10px!important
}

.mr1 {
margin-right:1rem
}

.pform textarea {height: 86px;overflow-y:auto;line-height:1.1;}


	
	
	
.pform textarea {
height:70px
}

.disclaimer {
padding:15px 0
}
	.dig-form .fancybox__backdrop {
    
}
}

@-webkit-keyframes -amp-start {
from {
visibility:hidden
}

to {
visibility:visible
}
}

@-moz-keyframes -amp-start {
from {
visibility:hidden
}

to {
visibility:visible
}
}

@-ms-keyframes -amp-start {
from {
visibility:hidden
}

to {
visibility:visible
}
}

@-o-keyframes -amp-start {
from {
visibility:hidden
}

to {
visibility:visible
}
}

@keyframes -amp-start {
from {
visibility:hidden
}

to {
visibility:visible
}
}

span[visible-when-invalid] {
padding-left:.3em;
color:#666;
vertical-align:middle;
font-size:.875em
}

fieldset {
width:100%
}

.ampstart-input > label,.ampstart-input > label {background-color: #ffffff;font-size: 14px;left:15px;line-height: 5px;overflow:hidden;padding: 5px 5px;color:#005cb9;/* -webkit-transition:transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1); *//* transition:transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1); */}

.bg-scrolling-element-when-modal-active .ampstart-input > label {background-color: #ffffff;}

.ampstart-input [disabled],.ampstart-input [disabled] + label {/* opacity:1; *//* font-size:12px; */}

.ampstart-input [disabled]:focus {
outline:0
}

.ampstart-input > input,.ampstart-input > select,.ampstart-input > textarea {width:100%;border-radius:3px;outline:0;/* font-size:16px!important; */}

.ampstart-input > label {top: -5px;color: #656464;-webkit-animation:.2s;animation:.2s;-webkit-animation-timing-function:cubic-bezier(0.4,0,0.2,1);animation-timing-function:cubic-bezier(0.4,0,0.2,1);-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;}

.ampstart-input > textarea {
padding:10px 15px!important
}



textarea:-moz-placeholder, /* Firefox 18- */
textarea::-moz-placeholder, /* Firefox 19+ */
textarea:-ms-input-placeholder, /* IE 10+ */
textarea::-webkit-input-placeholder, /* Webkit based */
textarea::placeholder { /* Modern browsers */
font-size: inherit !important; 
}

.ampstart-input > textarea {
    width: 100%;
    border-radius: 3px;
    outline: 0;
    /* font-size: 16px!important; */
    /* font-size: inherit !important; */
}


.ampstart-input > input:focus::-webkit-input-placeholder,.ampstart-input > select:focus::-webkit-input-placeholder,.ampstart-input > textarea:focus::-webkit-input-placeholder {
color:transparent;
padding:15px 15px 10px!important;
font-weight:400!important;
	font-size: inherit !important;
}

.ampstart-input > input:focus::-moz-placeholder,.ampstart-input > select:focus::-moz-placeholder,.ampstart-input > textarea:focus::-moz-placeholder {
color:transparent;
padding:15px 15px 10px!important;
font-weight:400!important;
	font-size: inherit !important;	

}

.ampstart-input > input:focus:-ms-input-placeholder,.ampstart-input > select:focus:-ms-input-placeholder,.ampstart-input > textarea:focus:-ms-input-color: transparent; {
color:transparent;
padding:15px 15px 10px!important;
font-weight:400!important;
	font-size: inherit !important;
}

.ampstart-input > input:focus::placeholder,.ampstart-input > select:focus::placeholder,.ampstart-input > textarea:focus::placeholder {
color:transparent;
padding:15px 15px 10px!important;
font-weight:400!important;
	font-size: inherit !important;
}

.ampstart-input > input:not(:placeholder-shown):not([disabled]) + label,.ampstart-input > select:not(:placeholder-shown):not([disabled]) + label,.ampstart-input > textarea:not(:placeholder-shown):not([disabled]) + label {opacity:1;/* font-size:12px; */color:green}

.ampstart-input > input:focus + label,.ampstart-input > select:focus + label,.ampstart-input > textarea:focus + label {/* -webkit-animation-name:a; *//* animation-name:a; */}

@-webkit-keyframes a {
to {
opacity:1
}
}

@keyframes a {
to {
opacity:1
}
}

.amp-frontpage .ampstart-input > label:after {
background:#e5e2ef
}

.amp-frontpage .ampstart-input input[type="radio"]:checked:after {
background-color:#fff
}

.amp-frontpage::placeholder {
color:#a0dac5;
opacity:1
}

.amp-frontpage .ampstart-btn {
border:2px solid #fff;
color:#fff
}

.amp-frontpage .ampstart-input > label {
color:#fff
}

.amp-frontpage .ampstart-input > input,.amp-frontpage .ampstart-input > select,.amp-frontpage .ampstart-input > textarea {
color:#fff
}

.ampstart-input > label {font-weight: 500;/* z-index: 4353; */}

.ampstart-input > input:focus + label,.ampstart-input > select:focus + label,.ampstart-input > textarea:focus + label {/* font-weight: 600; *//* visibility:visible; */color: currentColor;}

.ampstart-input > input[type="search"] {
-webkit-appearance:none;
-moz-appearance:none;
appearance:none
}

.ampstart-input > input[type="range"] {
border-bottom:0
}

.ampstart-input > input[type="range"] + label:after {
display:none
}

.ampstart-input > select {
-webkit-appearance:none;
-moz-appearance:none;
appearance:none
}

.ampstart-input > select + label:before {
content:"?";
line-height:1.5rem;
position:absolute;
right:5px;
zoom:2;
top:0;
bottom:0;
color:#1e73be
}

.ampstart-input input[type="checkbox"],.ampstart-input input[type="radio"] {margin-top:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;min-width: 22px;min-height: 22px;border: 1px solid #9d8059;vertical-align:middle;margin-right: 0.5rem;border-radius: 22px;text-align:center;outline:0;position:relative;color:#fff;height: 100%;/* border: none; */}

.ampstart-input input[type="radio"] {
border-radius:20px
}

.ampstart-input input[type="checkbox"]:not([disabled]) + label,.ampstart-input input[type="radio"]:not([disabled]) + label {
pointer-events:auto;
-webkit-animation:none;
animation:none;
vertical-align:middle;
opacity:1;
cursor:pointer;
font-size:13px
}

.ampstart-input input[type="checkbox"] + label:after,.ampstart-input input[type="radio"] + label:after {
display:none
}

.ampstart-input input[type="checkbox"]:after,.ampstart-input input[type="radio"]:after {position:absolute;top:0;left:0;bottom:0;right:0;content:" ";background-color: #f2ece4;border-radius:10px;border-color: cornflowerblue;border: 1px;}

.ampstart-input .file-box-custom input[type="checkbox"]:after {
    /* background-color: #fff; */
    /* border-radius: 10px; */
    /* width: 34px; */
    /* height: 34px; */
    /* background-color: transparent; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: contain; */
    /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'%3E%3C/circle%3E%3Cpolyline points='21 15 16 10 5 21'%3E%3C/polyline%3E%3Cline x1='12' y1='9' x2='12' y2='15' stroke='%2328a745'%3E%3C/line%3E%3Cline x1='9' y1='12' x2='15' y2='12' stroke='%2328a745'%3E%3C/line%3E%3C/svg%3E"); */
}

.ampstart-input .file-box-custom input[type="checkbox"] {
    /* min-width: 34px; */
    /* min-height: 34px; */
    /* border: none; */
    /* width: 34px; */
    /* height: 34px; */
    /* display: flex; */
    /* line-height: 1.2em; */
}






.ampstart-input input[type="checkbox"]:checked:after {color:#343027;content:"\2713";font-size:13px!important;font-weight:700;}

.ampstart-input input[type="radio"]:checked {
background-color:#fff
}

.ampstart-input input[type="radio"]:after {
top:3px;
bottom:3px;
left:3px;
right:3px;
border-radius:12px
}

.ampstart-input input[type="radio"]:checked:after {
content:"";
font-size:3rem;
background-color:#003f93
}

.ampstart-input > label,_:-ms-lang(x) {
opacity:1
}

.ampstart-input > input:-ms-input-placeholder,_:-ms-lang(x) {
color:var(--contrast);
font-size: 11px;
}

.ampstart-input > input::placeholder,_:-ms-lang(x) {
color:var(--contrast);
font-size: 11px;
}

.ampstart-input > input::-ms-input-placeholder,_:-ms-lang(x) {
color:var(--contrast);
font-size: 11px;
}

.ampstart-input > select::-ms-expand {
display:none
}

.ampcf7-error {
padding:5px;
margin-top:15px;
border:2px #e20d34 solid
}

.ampcf7-error p {
margin:0
}

.ampcf7-success {
padding:5px;
border:2px #129e3d solid
}

.flex {
display:-ms-flexbox
}

.flex-column {-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;/* color: #5388da; */}

.ampstart-input {max-width:100%;width:100%;min-width:100px;/* font-size:13px!important; */}

.relative {
position:relative
}

.mb4 {margin-bottom: 10px!important;}

.mb3 {
    margin-bottom: 1em;
}

.mb3:last-child {/* margin-bottom:.5em; */}

.mb2 {margin-bottom: 20px;}

.ampstart-input > input:focus,.ampstart-input > select:focus,.ampstart-input > textarea:focus {/* font-size:18px!important; */}

.ampstart-input > input:focus + label,.ampstart-input > select:focus + label,.ampstart-input > textarea:focus + label {/* -webkit-animation-name:a; *//* animation-name:a; */}

.ampstart-input > input.wpcf7-not-valid,.ampstart-input > select.wpcf7-not-valid,.ampstart-input > textarea.wpcf7-not-valid {
border:1px solid #ff5252!important
}

::placeholder {
color:#979797;
opacity:1;
font-weight:500;
font-size:16px
}

.bold {
font-weight:700
}

.left-0 {
left:0
}

.top-0 {
top:0
}

.absolute {
position:absolute
}

input[type="submit"] {-webkit-appearance:none;-webkit-border-radius: 4px;}

.textonly span {
font-size:.8225rem;
color:#00b523;
font-weight:400;
display:block;
padding-left:20px;
line-height:12px;
font-size:12px;
padding-bottom:10px
}

.lock span {
font-size:.8225rem;
color:#00b523;
font-weight:400;
line-height:20px;
display:block;
padding-left:20px;
font-size:12px
}

.file-info label {
display:inline-block;
vertical-align:middle;
width:auto
}

.jfilestyle {
display:inline-block;
position:relative
}


.disclaimer:before,.textonly:before {
padding-right:5px;
vertical-align:middle
}

.file-info.ampstart-input.inline-block.relative.m0.p0 {/* width:auto; *//* display:inline-block; *//* width:100%; *//* display:flex; *//* width:unset; *//* display:inline-block; *//* width:100%; *//* min-width:45px; *//* display: flex; *//* height: 100%; *//* flex-direction: row; *//* align-items: center; *//* justify-content: space-between; *//* padding-bottom: 15px; */}

:lang(en) .dnd-upload-counter::before {content:"You can add photos or videos. Max: 10 attachments.";padding-right:5px;letter-spacing: 0.02em;color: #7e8493;right: 0;line-height: 1.1em;}

:lang(tr).dnd-upload-counter::before {content: "Dosya ba\015F \0131 na Maksimum 3mb.";/* display:block; */color: #676767;}

:lang(fr).dnd-upload-counter::before {
content:"Vous pouvez ajouter des photos ou des vidÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©os. Max : 10 piÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¨ces jointes."
}

:lang(es).dnd-upload-counter::before {
content:"Puedes agregar fotos o videos. MÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ximo: 10 archivos adjuntos."
}
.codedropz-upload-container::before {
    /* content: ""; */
    /* position: relative; */
    /* color: violet; */
    /* align-items: center; */
    /* background-repeat: no-repeat; */
    /* width: 30px; */
    /* height: 30px; */
    /* margin-right: 10px; */
    /* background-size: contain; */
    /* background-position: center center, 50%, 50%; */
    /* background-image: url(https://www.hlc.com.tr/new/images/paperclip.svg); */
   }
 

.dnd-upload-status {/* padding-top:20px; *//* padding-bottom: 20px; */}

.disclaimer:before,.lock:before,.textonly:before {height:25px;margin-right: 5px;}

.disclaimer:before {
content:url(../images/svg/kisi.svg)
}

.disclaimer,.textonly,.lock {
-moz-box-align:center;
-ms-flex-align:center
}

.textonly:before {position:relative;background:20px;background-image: url(../images/svg/lock.svg);background-size: 20px 25px;display: flex;min-width: 20px;height: 20px;content:""}

.pform .textonly {font-weight: 500;font-size: 13px;color: #368202;/* border-radius:5px; */padding: 15px 0;text-align:left;line-height: 1em;display:flex;display:flex;align-items:center;/* letter-spacing: 0.04em; */}

.ampstart-input {-webkit-appearance:none;border-radius:0}

.to-form input[type="email"],
.to-form input[type="number"],
.to-form input[type="password"],
.to-form input[type="search"],
.to-form input[type="tel"],
.to-form input[type="text"],
.to-form input[type="url"],
.to-form select,
.to-form textarea {
  /* height: 40px; */
  width: 100%;
}

.dnd-upload-status .dnd-upload-image {width:20px;height:20px;border:0 solid #a5a5a5;padding-right: 20px;}

@media (min-width: 769px) {
#konsultasyon .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column {/* flex-basis:0; *//* flex-grow:1; */}


.sidebar .wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column:not(:first-child) {
    margin-left: 0px;
}
.sidebar #konsultasyon .wp-block-column:not(:first-child) {
 margin-left: 0px;
}	
	
	
	
.sidebar #konsultasyon .wp-block-columns {display:block;}
#konsultasyon .wp-block-columns {/* flex-wrap:wrap; *//* display:flex; *//* text-align: center; *//* align-items: center; *//* gap: 1.5em; *//* row-gap: 25px; */}

#konsultasyon .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {/* display: flex; *//* flex-basis: 0; *//* flex-grow: 4; *//* flex-direction: row; *//* align-items: center; *//* justify-content: space-between; *//* flex-direction: row; *//* align-items: center; *//* justify-content: space-between; *//* height: 220px; */}
	
	
	
       .button-kampsam {
        display: flex;
        align-items: center;
        margin: auto;
        padding: 10px 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

.button-kampsam > span {
-ms-flex-preferred-size:0!important;
-ms-flex-positive:1!important;
-ms-flex-negative:1!important;
display:-ms-flexbox!important;
-ms-flex-pack:center!important;
-ms-flex-align:center!important;
margin-right:1px!important;
-ms-flex-preferred-size:0!important;
-ms-flex-positive:1!important;
flex-grow:1!important;
-ms-flex-negative:1!important;
flex-shrink:1!important;
display:-ms-flexbox!important;
display:flex!important;
-ms-flex-pack:center!important;
justify-content:flex-start;
-ms-flex-align:center!important;
align-items:center!important;
position:relative!important;
margin-right:1px!important;
line-height:1.1!important;
cursor:pointer!important;
transition:all .25s ease-in-out!important;
	order:2;
}

span.button-kampsam {
    /* padding-bottom: 0px; */
    /* padding-top: 0px; */
}

.grid-2 {
    display: inline-flex;
	gap:15px;
}
.grid-2>div:first-child {
    
}	

    .ampstart-input.acceptance {
        order: 2;
        /* width: 150px; */
    }
 
.ampstart-input.guarantee {
    order: 1;
    margin: 0px 20px 0px 0px;
    max-width: 400px;
}	
	
	.ampstart-input.send-m {
    order: 3;
    width: 50%;
}	
}


.kampsam-c {display: flex;align-self: center;flex-direction: row;justify-content: flex-end;align-items: center;flex-wrap: wrap;}
	


.to-form input[type="text"]:focus,
.to-form input[type="email"]:focus,
.to-form input[type="url"]:focus,
.to-form input[type="password"]:focus,
.to-form input[type="search"]:focus,
.to-form input[type="tel"]:focus,
.to-form input[type="number"]:focus,
.to-form textarea:focus,
.to-form select:focus {
  /* border: 1px solid #275fd4 !important; */
}
.codedropz-upload-inner h6 {
margin:0;
font-size:14px;
font-weight:400;
margin:0 0;
font-size:14px;
font-weight:400
}

.dnd-upload-status .dnd-upload-details .name span {
font-size:10px
}

.dnd-upload-status .dnd-upload-details .name em {
font-size:12px
}

span.dnd-upload-counter {position:relative;/* left: 0; */line-height: 1em;display: block;font-size: 12px;/* padding-left: 0px; *//* bottom: 0; */font-weight: 500;text-align: right;}

.dnd-upload-counter span {
color:#009688
}

.dnd-upload-status .dnd-upload-details .remove-file {
top:20px
}
.whatsapp-ico .gb-icon svg {
    height: auto !important;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}



#myCarouselmember .f-carousel__slide {
  --f-carousel-slide-width: calc(100% / 6);  }


@media (max-width: 1024px) {
  #myCarouselmemberl .f-carousel__slide {
  --f-carousel-slide-width: calc(100% / 3);  }
}

@media (max-width: 768px) {
  #myCarouselmember .f-carousel__slide {
  --f-carousel-slide-width: calc(100% / 3);
  }
	#myCarousel-blog .gb-loop-item {
  --f-carousel-slide-width: calc((100% - 20px) / 2);
  /* flex: 0 0 var(--f-carousel-slide-width); */
  /* width: var(--f-carousel-slide-width); */
  box-sizing: border-box;
  padding: 0px 10px 0px;
}
	
	
}

@media (max-width: 480px) {
  #myCarouselmember .f-carousel__slide {
  --f-carousel-slide-width: calc(100% / 3);
  }
}

#myCarouselmember {

}

 #myCarouselmember img {
  transform: scale(var(--f-scale, 1)) translateX(var(--f-translateX, 0));
	     height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    width: auto;
}