.hesap-islemleri-ana {
  background-color: var(--bm-background);
}


.hesap-islemleri-accordion-btn {
  border-radius: 5px;
  margin: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;

}

.hesap-islemleri-accordion-btn .hesap-islemleri-input {
  display: none;
}

.hesap-islemleri-accordion-btn div {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hesap-islemleri-accordion-btn input:checked~.hesap-islemleri-label i {
  transform: rotate(180deg);
  color: var(--icon-updown-down);
}

.hesap-islemleri-accordion-btn .hesap-islemleri-label {
  display: flex;
  border-radius: 3px;
  cursor: pointer;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin: 5px;
  height: 32px;
  font-size: 24px;
  color: rgb(155, 101, 2);
}

.hesap-islemleri-accordion-btn .hesap-islemleri-label img {
  margin: 0px 7px 0px 25px;
}

.hesap-islemleri-accordion-btn .hesap-islemleri-label i {
  color: var(--icon-updown-up);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  transition: transform 0.3s linear;
}

.hesap-islemleri-accordion-btn .hesap-islemleri-content {
  display: block;
  max-height: 0;
  border-radius: 5px;
  color: #0c0c0c;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.6s ease-out;
}

.hesap-islemleri-accordion-btn .hesap-islemleri-content>ul {
  display: block;
}

.hesap-islemleri-accordion-btn .hesap-islemleri-content>ul li {
  width: 200px;
  justify-content: start;
}

.hesap-islemleri-accordion-btn .hesap-islemleri-content>ul li input {
  margin: 5px;
}

.hesap-islemleri-accordion-btn input:checked~.hesap-islemleri-content {
  max-height: 50vh;
  margin: 10px 5px 5px 10px;
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5),
    -2px -2px 3px 0 rgba(116, 125, 136, .2),
    inset -2px -2px 3px 0 rgba(255, 255, 255, .5),
    inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}

.hesap-islemleri-border {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    -7px -7px 20px 0px #fff9,
    -4px -4px 5px 0px #fff9,
    7px 7px 20px 0px #0002,
    4px 4px 5px 0px #0001;
  transition: box-shadow 0.6s cubic-bezier(.79, .21, .06, .81);
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.hesap-islemleri-border:hover {
  background: radial-gradient(circle, #0ff 0%, var(--bm-background) 60%);
  color: rgba(102, 102, 102, .5);
  animation: colorchange 3s linear infinite;
}

.hesap-islemleri-border:active {
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5),
    -2px -2px 3px 0 rgba(116, 125, 136, .2),
    inset -2px -2px 3px 0 rgba(255, 255, 255, .5),
    inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}

.hesap-islemleri-border input:checked~.hesap-islemleri-content {
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5),
    -2px -2px 3px 0 rgba(116, 125, 136, .2),
    inset -2px -2px 3px 0 rgba(255, 255, 255, .5),
    inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}

.hesap-islemleri-ana .input-filter:checked {
  /* background-color: blueviolet; */

}











.hesap-islemleri-register-mesajlar {
  color: orange;
}



/* GENEL BİR FORM İÇİN OLUŞTURULABİLİR FAKAT BİZ ÖZELLEŞTİRECEĞİZ MECBUREN */


.container-hesaplar {
  max-width: 480px;
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* .container-hesaplar .forms{
      display: flex;
      align-items: start;
      width: 100%;
    } */
.container-hesaplar .form {
  width: 50%;
  padding: 5px;
  background-color: #fff;
}

.container-hesaplar .form .title {
  position: relative;
  font-size: 27px;
  font-weight: 600;
}

.container-hesaplar .form .title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: #4070f4;
  border-radius: 25px;
}

.container-hesaplar .form .input-field {
  position: relative;
  height: 40px;
  width: 100%;
  margin-top: 7px;
}

.container-hesaplar .form {
  width: 100%;
}

.container-hesaplar .input-field input {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 0 30px;
  border: none;
  outline: none;
  font-size: 25px;
  border-bottom: 2px solid #ccc;
  border-top: 2px solid transparent;
  transition: all 0.2s ease;
}

.container-hesaplar .input-field input:is(:focus, :valid) {
  border-bottom-color: #4070f4;
}

.container-hesaplar .input-field i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 23px;
  transition: all 0.2s ease;
}

.container-hesaplar .input-field input:is(:focus, :valid)~i {
  color: #4070f4;
}

.container-hesaplar .input-field i.icon {
  left: 0;
}

.container-hesaplar .input-field i.showHidePw {
  right: 0;
  cursor: pointer;
  padding: 10px;
}

.container-hesaplar .form .checkbox-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.container-hesaplar .checkbox-text .checkbox-content {
  display: flex;
  align-items: center;
}

.container-hesaplar .checkbox-content input {
  margin-right: 10px;
  accent-color: #4070f4;
}

.container-hesaplar .form .text {
  color: #333;
  font-size: 14px;
}

.container-hesaplar .form a.text {
  color: #4070f4;
  text-decoration: none;
}

.container-hesaplar .form a:hover {
  text-decoration: underline;
}

.container-hesaplar .form .button {
  margin-top: 7px;
}

.container-hesaplar .form .button input {
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 6px;
  background-color: #4070f4;
  cursor: pointer;
  transition: all 0.3s ease;
}

.container-hesaplar .button input:hover {
  background-color: #265df2;
}

.container-hesaplar .form .login-signup {
  margin: 10px 0 20px 0;
  text-align: center;
}

/* HESAPLAR FORM KONTEYNIR BİTİŞ*/





/* .ikpbutton-1 {
  margin: 1px 5px;
  border-radius: 5px;
  height: 30px;
}



.b-bg-hsp-opn {
  border-color: #dee7cf;
  background: -webkit-gradient(linear, left top, left bottom, from(#d6ddca), to(#799e38));
}

.b-bg-hsp-cls {
  border-color: #dee7cf;
  background: -webkit-gradient(linear, left top, left bottom, from(#d6ddca), to(#799e38));
} */

.ikp-ac-button {
  border-radius: 5px;
  margin: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ikp-ac-button input:checked~.ikp-ac-label i {
  transform: rotate(180deg);
  color: var(--icon-updown-down);
}


.ikp-ac-button .ikp-ac-label i {
  color: var(--icon-updown-up);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  transition: transform 0.3s linear;
}


.ikp-ac-button .ikp-ac-label {
  display: flex;
  border-radius: 3px;
  cursor: pointer;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  margin: 13px 5px 0px 5px;
  height: 32px;
  font-size: 24px;
  color: rgb(155, 101, 2);

}

.ikp-ac-button .ikp-ac-input {
  display: none;
}

.ikp-ac-button .ikp-low-content {
  display: block;
  max-height: 0;
  border-radius: 5px;
  color: #0c0c0c;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.6s ease-out;

  margin: 10px 5px 5px 10px;
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5),
    -2px -2px 3px 0 rgba(116, 125, 136, .2),
    inset -2px -2px 3px 0 rgba(255, 255, 255, .5),
    inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}

.ikp-ac-button input:checked~.ikp-low-content {
  max-height: 100vh;
}




.ikp-ac-button .ikp-low-content-90vh {
  display: block;
  max-height: 0;
  border-radius: 5px;
  color: #0c0c0c;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.6s ease-out;

  margin: 10px 5px 5px 10px;
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5),
    -2px -2px 3px 0 rgba(116, 125, 136, .2),
    inset -2px -2px 3px 0 rgba(255, 255, 255, .5),
    inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}

.ikp-ac-button input:checked~.ikp-low-content-90vh {
  max-height: 80vh;
}



.para_birimi_img {
  width: 30px;
  height: 30px;
}

.hesaplar-hesap-miktari-aktif {
  width: 60%;
  margin: 1px 1px;
  border-radius: 5px;
  height: 30px;
  background: linear-gradient(silver, white, gray);
}

.hesaplar-hesap-miktari-aktif:hover {
  transform: translateY(-2px);
}

.hesaplar-hesap-miktari-aktif:active {
  transform: translateY(0px);
}

.hesaplar-hesap-miktari-pasif {
  width: 60%;
  margin: 1px 5px;
  border-radius: 5px;
  height: 30px;
  background: linear-gradient(rgb(219, 152, 152), white, rgb(68, 5, 5));
}

.hesaplar-hesap-miktari-pasif:hover {
  transform: translateY(-2px);
}

.hesaplar-hesap-miktari-pasif:active {
  transform: translateY(0px);
}

#select_para_birimleri {
  width: 150px;
  height: 30px;
  font-size: 27px;
  border-radius: 5px;
  background-image: linear-gradient(to right, #462523 0, #cb9b51 47%, #f6e27a 57%, #462523 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





/* #button_hesap_ac_open {
  border-radius: 3px;
  height: 40px;
  width: 100%;
  margin: 10px 5px 1px 5px;
  font-size: 26px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#51750a,#8cc501,#97a56b);
}
#button_hesap_ac_open:hover {
  transform: translateY(-2px);
}
#button_hesap_ac_open:active {
  transform: translateY(0px);
} */

.b_hesap_alt_menu {
  border-radius: 3px;
  height: 40px;
  width: 100%;
  margin: 10px 5px 1px 5px;
  font-size: 26px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#51750a, #9dce20, #404e12);
}

.b_hesap_alt_menu:hover {
  transform: translateY(-2px);
}

.b_hesap_alt_menu:active {
  transform: translateY(0px);
}


#hi_hesap_ac {
  border-radius: 5px;
  height: 100%;
  margin: 0px 5px;
  font-size: 20px;
  color: #658704;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(silver, white, gray);
}

#hi_hesap_ac:hover {
  transform: translateY(-2px);
}

#hi_hesap_ac:active {
  transform: translateY(0px);
}


#hi_hesap_ac img {
  width: 30px;
  height: 30px;
}



#button_hesap_ac_close {
  width: 40px;
  border-radius: 5px;
  margin: 5px;
  font-size: 40px;
  height: 40px;
  color: #a50606;
  background: linear-gradient(silver, white, gray);
}

#button_hesap_ac_close:hover {
  transform: translateY(-2px);
}

#button_hesap_ac_close:active {
  transform: translateY(0px);
}



.ikp-low-div {
  display: block;
  padding: 5px;
  border-radius: 5px;
  color: rgb(155, 101, 2);
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.6s ease-out;
  margin: 10px 5px 5px 10px;
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5), -2px -2px 3px 0 rgba(116, 125, 136, .2), inset -2px -2px 3px 0 rgba(255, 255, 255, .5), inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}



.ikp-low-area-1 {
  display: block;
  padding: 5px;
  border-radius: 5px;
  color: rgb(155, 101, 2);
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.6s ease-out;
  margin: 10px 5px 5px 10px;
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5), -2px -2px 3px 0 rgba(116, 125, 136, .2), inset -2px -2px 3px 0 rgba(255, 255, 255, .5), inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}






















.hesap-hareketleri-ac-button {
  border-radius: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hesap-hareketleri-ac-button input:checked~.ikp-ac-label i {
  transform: rotate(180deg);
  color: var(--icon-updown-down);
}


.hesap-hareketleri-ac-button .ikp-ac-label i {
  color: var(--icon-updown-up);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
  transition: transform 0.3s linear;
}


.hesap-hareketleri-ac-button .ikp-ac-label {
  display: flex;
  border-radius: 3px;
  cursor: pointer;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  height: 32px;
  font-size: 15px;
  color: rgb(155, 101, 2);
}

.hesap-hareketleri-ac-button .ikp-ac-input {
  display: none;
}

.hesap-hareketleri-ac-button .ikp-ac-content {
  display: block;
  max-height: 0;
  border-radius: 5px;
  color: #0c0c0c;
  overflow-y: hidden;
  overflow-x: hidden;
  transition: max-height 0.6s ease-out;
  margin: 10px 5px 5px 10px;
  box-shadow: 2px 2px 3px 0 rgba(255, 255, 255, .5),
    -2px -2px 3px 0 rgba(116, 125, 136, .2),
    inset -2px -2px 3px 0 rgba(255, 255, 255, .5),
    inset 2px 2px 3px 0 rgba(116, 125, 136, .3);
}

.hesap-hareketleri-ac-button input:checked~.ikp-ac-content {
  max-height: 50vh;
}



.button-hesap-aktif-yap {
  color: rgb(100, 202, 4);
}

.button-hesap-pasif-yap {
  color: red;
}

.button-hesap-aktif-yap,
.button-hesap-pasif-yap {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
  background: linear-gradient(silver, white, gray);
  margin-left: 1px;
}

.button-hesap-aktif-yap:hover,
.button-hesap-pasif-yap:hover {
  transform: translateY(-2px);
}

.button-hesap-aktif-yap:active,
.button-hesap-pasif-yap:active {
  transform: translateY(0px);
}



.t-button-hesap-detay-alt {
  width: 160px;
  justify-content: center;
  align-items: center;
}

.t-button-hesap-detay-ust {
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pb-text-gold {
  display: flex;
  width: 74px;
  align-items: center;
  justify-content: center;
  font-family: 'Times New Roman', serif;
  line-height: 0.9;
  font-size: 17px;
  font-weight: bold;
  text-wrap: wrap;
  text-align: center;
  background-image: linear-gradient(to right, #462523 0, #cb9b51 22%, #b7a64f 45%, #301918 50%, #918442 55%, #cb9b51 78%, #462523 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}


#qrcode {
  width: 160px;
  height: 160px;
  margin-top: 15px;
}









/* BARKOD HESAP İŞLEMLERİ BURADA BASLIYOR */
.bhi-text {
  margin-left: 5px;
  color: rgb(105, 69, 3);
  font-size: 17px;
  text-align: center;
}

.bhi-mesaj {
  font-size: 20px;
  margin: 5px 0px 0px 10px;
  color: #ff0000;
  justify-content: center;
  align-items: center;
}

.bhi-hsusername {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px 0px 10px;
  color: #75075d;
  font-size: 18px;
  text-align: center;
}

.bhi-hshesap-no {
  margin: 0px 5px 0px 10px;
  color: #378509;
}

.bhi-hypara-tutari {
  margin: 0px 5px 0px 10px;
  color: rgb(209, 10, 10);
  font-size: 28px;
}

.bhi-hypara-birimi-tam-adi {
  margin: 0px 5px 0px 10px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  background-image: linear-gradient(to right, #462523 0, #cb9b51 22%, #b7a64f 45%, #301918 50%, #918442 55%, #cb9b51 78%, #462523 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.bhi-ul-1 {
  display: flex;
  flex-wrap: wrap;
  text-wrap: wrap;
  align-items: center;
}


#b_bhesap_islemleri_input_submit {
  padding: 5px;
  text-wrap: wrap;
  margin: 10px;
  border-radius: 5px;
  cursor: pointer;
}


#b_bhi_kupon_para_miktari_input,
#b_bhi_para_miktari_input {
  width: 93%;
  height: 33px;
  font-size: 27px;
  color: red;
  margin: 0px 10px;
  border-radius: 5px;
}


.i-para-miktari-input-1 {
  width: 100%;
  height: 33px;
  font-size: 30px;
  color: red;
  border-radius: 5px;
}


.i-select-para-birimleri-1 {
  width: 100%;
  padding: 0 0 0 10px;
  height: 37px;
  font-size: 27px;
  border-radius: 5px;
  background-image: linear-gradient(to right, #462523 0, #cb9b51 47%, #f6e27a 57%, #462523 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.b-hesap-islemleri-input-submit {
  height: 30px;
  text-wrap: wrap;
  border-radius: 5px;
  cursor: pointer;
}


.hsp-message {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  text-wrap: wrap;
  text-align: center;
  color: orange;
  font-size: 18px;
}
.hsp-message-hata{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px;
  text-wrap: wrap;
  text-align: center;
  color: rgb(180, 30, 3);
  font-size: 18px;
}



.b-menu-close {
  width: 40px;
  border-radius: 5px;
  margin: 5px 0px 0px 10px;
  font-size: 40px;
  height: 40px;
  color: #a50606;
  background: linear-gradient(silver, white, gray);
}


.hik-qrbarkod img {
  margin: 10px 30px;
}




.t-hesaplar-select-pb {
  margin: 0 10px;
  font-size: 25px;
  color: rgb(197, 23, 168);
  font-weight: bold;
  transition: all 150ms ease;
  animation: txt_pulse_pink 1.2s linear infinite;
}








