:root {
  --color_1: #FFFFFF;
  --color_2: #000000;
  --color_3: #525252;
  --color_4: #d8d8d8;
  --color_5: #bcbcbc;
  --color_6: #ff6000;
  --color_7: #f7965c;
  --color_8: #f5f4ef;
  --color_9: #acacac;
  --color_10: #042a8b;
  --color_11: 255, 96, 0;
  --color_12: 4, 42, 139;
  --color_13: 31, 43, 71;
}

.login-form {
  width: 400px;
  margin: 60px auto;
  border: 1px solid var(--color_5);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.login-form > h1 {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--color_6);
}
.login-form > form {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.login-form > form > .login-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.login-form > form > .login-row > label {
  float: left;
  width: 100%;
  margin: 0 0 8px 0;
  padding: 0;
  font-size: 14px;
  color: var(--color_3);
}
.login-form > form > .login-row > #phoneNumber {
  float: left;
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--color_9);
  border-radius: 4px;
  background: var(--color_8);
  font-size: 14px;
  font-weight: 400;
  color: var(--color_2);
}
.login-form > form > .login-row > #phoneNumber::placeholder {
  color: #999 !important;
}
.login-form > form > .login-row > #phoneNumber:focus {
  background: var(--color_1);
  border-color: var(--color_7);
  box-shadow: 0px 0px 0px 4px rgba(var(--color_11), 0.12) !important;
}
.login-form > form > .login-row > .label-row {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.login-form > form > .login-row > .label-row > input {
  margin: 0;
  padding: 0;
  width: 13px;
  height: 13px;
}
.login-form > form > .login-row > .label-row > label {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1;
  user-select: none;
}
.login-form > form > .login-row.code-input {
  display: none;
}
.login-form > form .action-buttons {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.login-form > form .action-buttons .form-button {
  margin: 0;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  border: none;
  background: var(--color_6);
  border-radius: 4px;
  color: var(--color_1);
  transition: all 0.3s ease;
  position: relative;
}
.login-form > form .action-buttons .form-button > span {
  font-size: 11px;
  font-weight: 600;
}
.login-form > form .action-buttons .form-button:hover {
  background: var(--color_10);
  color: var(--color_1);
}
.login-form > form .action-buttons .form-button.spin {
  width: 40px;
  border-radius: 20px;
  pointer-events: none;
}
.login-form > form .action-buttons .form-button.spin > span {
  display: none;
}
.login-form > form .action-buttons .form-button.spin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  content: "\f1ce";
  font-weight: 900;
  font-size: 20px;
  color: var(--color_10);
  animation: spin 1.2s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.customLoader {
  float: left;
  width: 100% !important;
  height: 128px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
}
.customLoader .spinner {
  width: 64px;
  height: 64px;
  background: url(/images/loader.svg) center no-repeat;
}

.code-input {
  display: none;
}
.code-input > label {
  text-align: left;
}

.sms-code {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sms-code > input {
  float: left;
  width: 48px;
  height: 36px;
  line-height: 36px;
  padding: 8px 16px;
  border: 1px solid var(--color_9);
  border-radius: 4px;
  background: var(--color_8);
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--color_2);
}
.sms-code > input:focus {
  background: var(--color_1);
  border-color: var(--color_7);
  box-shadow: 0px 0px 0px 4px rgba(var(--color_11), 0.12) !important;
}

.error-msg {
  height: 16px;
  font-size: 12px;
  line-height: 1;
  color: #ff4456;
}

#countDown {
  float: left;
  width: 100%;
  margin: 32px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#countDown > span {
  padding: 4px 8px;
  margin: 0 auto 0 0;
  background: var(--color_6);
  color: var(--color_1);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
}
#countDown > div {
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--color_4);
  position: relative;
}
#countDown > div > #progressBar {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color_6);
}

.form-note > p {
  margin: 0;
  font-size: 13px;
  color: var(--color_3);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.form-note > p::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f05a";
  font-size: 24px;
}
.form-note > p#code-note {
  display: none;
}
.form-note > p#form-error {
  visibility: hidden;
  position: relative;
  float: left;
  width: 100%;
  padding: 8px 12px 8px 8px;
  background: #ffe1e3;
  border: 1px solid #ff98a5;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
  color: #ff4456;
}
.form-note > p#form-error::before {
  content: "\f071";
}
.form-note > p#form-error::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 4px;
  height: 100%;
  background: #ff4456;
}

.register-form {
  width: 480px;
  margin: 60px auto;
  border: 1px solid var(--color_5);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.register-form > h1 {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--color_6);
}
.register-form > form {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.register-form > form > .register-column {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}
.register-form > form .register-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.register-form > form .register-row > label {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: var(--color_3);
}
.register-form > form .register-row > .input-style {
  float: left;
  width: 100%;
  height: 36px;
  line-height: 36px;
  padding: 0 16px;
  border: 1px solid var(--color_9);
  border-radius: 4px;
  background: var(--color_8);
  font-size: 14px;
  font-weight: 400;
  color: var(--color_2);
}
.register-form > form .register-row > .input-style::placeholder {
  color: #999 !important;
}
.register-form > form .register-row > .input-style:focus {
  background: var(--color_1);
  border-color: var(--color_7);
  box-shadow: 0px 0px 0px 4px rgba(var(--color_11), 0.12) !important;
}
.register-form > form .register-row > .input-style.error-input {
  border-color: #ff4456;
}
.register-form > form .register-row > .input-style.error-input:focus {
  box-shadow: 0px 0px 0px 4px rgba(255, 68, 86, 0.12) !important;
}
.register-form > form .register-row.check-list {
  gap: 16px;
}
.register-form > form .register-row.check-list > div {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}
.register-form > form .register-row.check-list > div > input {
  margin: 0;
}
.register-form > form .register-row.check-list > div > label {
  line-height: 1;
  margin: 0;
}
.register-form > form .register-row.code-input {
  display: none;
}
.register-form > form .register-row.code-input #countDown {
  margin: 16px 0 0 0;
}
.register-form > form .register-row.form-note {
  margin: 16px 0;
}
.register-form .action-buttons {
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.register-form .action-buttons .form-button {
  margin: 0;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  border: none;
  background: var(--color_6);
  border-radius: 4px;
  color: var(--color_1);
  transition: all 0.3s ease;
  position: relative;
}
.register-form .action-buttons .form-button > span {
  font-size: 11px;
  font-weight: 600;
}
.register-form .action-buttons .form-button:hover {
  background: var(--color_10);
  color: var(--color_1);
}
.register-form .action-buttons .form-button.spin {
  width: 40px;
  border-radius: 20px;
  pointer-events: none;
}
.register-form .action-buttons .form-button.spin > span {
  display: none;
}
.register-form .action-buttons .form-button.spin::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  content: "\f1ce";
  font-weight: 900;
  font-size: 20px;
  color: var(--color_10);
  animation: spin 1.2s linear infinite;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#cutomModal {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(4px);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
#cutomModal > .dialog {
  width: 600px;
  height: 200px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: var(--color_1);
  border-radius: 16px;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.5);
}
#cutomModal > .dialog > h1 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  color: rgba(var(--color_13), 1);
}
#cutomModal > .dialog > p {
  font-size: 16px;
  color: rgba(var(--color_13), 1);
  margin: 0;
}
#cutomModal > .dialog > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
#cutomModal > .dialog > div > a {
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color_1);
  border: 1px solid rgba(var(--color_13), 0.1);
  border-radius: 8px;
  color: rgba(var(--color_13), 0.6);
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
#cutomModal > .dialog > div > a#goToCart {
  border-color: var(--color_6);
  background: var(--color_6);
  color: var(--color_10);
}
#cutomModal > .dialog::before {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
}
#cutomModal > .dialog.success::before {
  border: 1px solid rgba(var(--color_12), 0.3);
  border-radius: 50%;
  color: rgba(var(--color_12));
  content: "\f00c";
}

#header_src_button {
  display: none;
}

@media screen and (max-width: 992px) {
  .login-form {
    width: 100%;
    border: none;
    margin: 0;
  }
  .header-content.custom-header {
    position: fixed;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    bottom: 0;
    top: unset;
    margin: 0;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
    transition: all 0s ease;
  }
  .header-content.custom-header .kategori-mm {
    display: flex;
    justify-content: center;
    order: 1;
    width: 20%;
    position: relative;
    left: 0;
  }
  .header-content.custom-header .menu-hiza {
    width: 100%;
  }
  .header-content.custom-header .menu-hiza:hover {
    background: none;
  }
  .header-content.custom-header .kategori-mm > .kategori-mm-inner {
    width: 50px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0s ease;
  }
  .header-content.custom-header > .header-align {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    float: right;
    margin: 0;
    order: 2;
    transition: all 0s ease;
    overflow: unset;
  }
  .header-content.custom-header .header-logo {
    float: left;
    margin: 0;
    width: 25%;
    height: 50px;
    order: 1;
  }
  .header-content.custom-header .header-logo a > img {
    display: none;
  }
  .header-content.custom-header .header-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-content.custom-header .header-logo a::after {
    content: "\f015";
    font-size: 20px;
    font-family: FontAwesome;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 50px;
    color: #737373;
  }
  .header-content.custom-header .menu-sag {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 0;
    gap: 0;
    order: 2;
  }
  .header-content.custom-header .menu-sag .header-hesap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    order: 2;
  }
  .header-content.custom-header .menu-sag .header-hesap .header-adres-sec {
    height: 50px;
  }
  .header-content.custom-header .menu-sag .header-hesap .header-adres-sec ul {
    padding: 0;
  }
  .header-content.custom-header .menu-sag .header-hesap a > div {
    display: none;
  }
  .header-content.custom-header .menu-sag .header-hesap a > i {
    height: 50px;
    width: 50px;
    background: none;
  }
  .header-content.custom-header .menu-sag .header-hesap a > i::before {
    content: "\f2ab";
    font-size: 20px;
    font-weight: 900;
    color: #737373;
  }
  .header-content.custom-header .menu-sag .header-sepet {
    width: 50%;
    order: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
  }
  .header-content.custom-header .menu-sag .header-sepet ul {
    width: 50px;
    height: 50px;
    background: var(--color_6);
    border-radius: 50%;
    margin: 0 0 16px 0;
    border: 2px solid #FFF;
  }
  .header-content.custom-header .menu-sag .header-sepet a > span {
    display: none;
  }
  .header-content.custom-header .menu-sag .header-sepet .sepeturunsayisi {
    bottom: 20px;
    right: 6px;
  }
  .header-content.custom-header .menu-sag .header-sepet i {
    width: 100%;
    background: unset;
    color: #FFF;
  }
  .header-content.custom-header .header-arama {
    position: absolute;
    display: none;
    width: 100%;
    height: 40px;
    order: 4;
    left: 0;
    bottom: 60px;
    border-left: 1px rgba(0, 0, 0, 0.12) solid;
    border-top: 1px rgba(0, 0, 0, 0.12) solid;
    border-bottom: 1px rgba(0, 0, 0, 0.12) solid;
  }
  .header-content.custom-header .header-arama.active {
    display: flex;
	width: 100%;
	position: fixed;
	left: 0;
	background: #EEE;
	padding: 6px;
	height: 57px;
	bottom: 50px;
  }
  .header-content.custom-header .header-arama-content {
    display: flex;
  }
  .header-content.custom-header #que1 {
    width: calc(100% - 40px);
    background: #FFF;
  }
  .header-content.custom-header .header-arama button {
    width: 40px;
    height: 40px;
    content: "\f002";
    font-size: 20px;
    font-family: FontAwesome;
    font-weight: 900;
    color: #737373;
  }
  .header-content.custom-header .hesap-dropdown {
    display: none;
  }
  .header-content.custom-header .header-hesap-icon {
    display: none;
  }
  .header-content.custom-header .header-hesap-links a:first-child {
    display: none;
  }
  .header-content.custom-header .header-hesap-links a:nth-child(2) {
    width: 48px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header-content.custom-header .header-hesap-links a:nth-child(2) span {
    display: none;
  }
  .header-content.custom-header .header-hesap-links a:nth-child(2)::before {
    content: "\f007";
    font-size: 20px;
    font-family: FontAwesome;
    font-weight: 900;
    color: #737373;
  }
  .header-content.custom-header #header_src_button {
    order: 3;
    width: 25%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: none;
  }
  .header-content.custom-header #header_src_button::before {
    content: "\f002";
    font-size: 20px;
    font-family: FontAwesome;
    font-weight: 900;
    color: #737373;
  }
  
  .responsive-header{
	position: fixed;
	top: 0;
	align-items: center;
	height: 52px;
	width: 100%;
	z-index: 5;
	background: #FFF;
	box-shadow: 0px -10px 5px 10px #DDD;
	padding: 0 15px;
  }
  
  .responsive-header .header-logo{
	float: left;
	min-width: 180px;
	max-width: 10%;
  }
  
  .responsive-header .header-logo img{
	min-width: 120px;
  }
  
  .header-location{
	float: right;
	min-width: 180px;
	max-width: 10%;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	color: #0f91b3;
	font-size: 22px;
	padding-right: 20px;
	}
	
	.header-location .adres-detay{
		font-size: 12px;
        color: #444;
        margin-right: 10px;
        border-right: 1px solid #444;
        padding-right: 10px;
	}
	
	#divAjaxAramaSonuc{
		top: auto !important;
        bottom: 117%;
	}
}

@media screen and (max-width: 426px) {
	.responsive-header .header-logo{
		float: left;
		min-width: 100px;
		max-width: 10%;
	}
	
	.responsive-header .header-logo img {
        min-width: auto;
    }
}
/*# sourceMappingURL=kommerz.css.map */