/*--------------------------------------------------------------Header--------------------------------------------------------------------------*/
/* Ana renk: 1ee08f */

:root{
  --dark : #292c2f;
}

.header{
  width: 100%;
  height: 100px;
  background-color: #fff;
}

.mobile-header{
  display: none;
}

.mobile-header-dropdown{
  display: none;
}

.header-left{
  float: left;
  width: 33.33%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

/*Header Left All*/
.header-left-all{
  width: 70%;
  height: 25%;
  margin-left: 10%;
}


.header-left-all-top{
  width: 90%;
  height: 20px;
  border-left: 1px solid #e4e1e1;
  padding-left: 5%;
  padding-bottom: 10px;
  font-weight: normal;
}

.header-left-all-bottom{
  width: 90%;
  height: 20px;
  padding-left: 5%;
  padding-top: 10px;
  border-left: 1px solid #e4e1e1;
  border-top: 1px solid #e4e1e1;
}


.header-left-all-bottom ul li{
  float: left;
  margin-right: 5%;
}

.header-left-all-bottom ul:after {content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}/*Kapsayamama Sorunu*/



/* Bu yüksekliği veriyoruz ki fareyi ürünlere doğru yani aşağı doğru kaydırdığımızda dropdown kaybolmasın */
.cart-menu{
  height: 35px;
}

.cart-menu .circle{
  float: right;
  display: block;
  font-size: 19px;
  color:#ea105e;
  margin-top: 0px;
  margin-left: 5px;
}

.cart-menu .my-cart a{
  padding: 0;
  font-size: 14px;
  color:#000;
  font-weight: normal;
}

.cart-menu .my-cart a:last-child{
  float: right;
  color:#fff;
  text-align:center;
  margin-right: -18px;
  margin-top: 3px;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: normal;
}

.cart-menu:hover{
  transform: none !important;
}

.my-cart{
  transition: 0.3s all !important;
}

.cart-menu:hover > .my-cart{
  transform: scale(1.1) !important;
}

.cart-menu:hover .my-cart-dropdown{
  visibility:visible;
  opacity: 1;
}



.my-cart-dropdown{
  position: absolute;
  left: -10%;
  top: 100%;
  width: 300px;
  min-height: 100px;
  margin-left: 15%;
  padding-bottom: 20px !important;
  background-color: #fff;
  z-index: 1000;
  border-radius: 10px;
  box-shadow: 0 2px 5px #b8bbbb;
  transition: 0.3s all;
  visibility: hidden;
  opacity: 0;
}

.my-cart-dropdown h5{
  margin: 0;
  padding: 5% 5% 5% 5% !important;
  font-size: 14px;
  font-weight:500;
}

.my-cart-dropdown .dd-item{
  width: 90%;
  padding: 5% 5% 5% 5%;
  min-height: 60px;
  border-bottom: 1px solid #e4e1e1;
  transition: 0.3s all;
}

.my-cart-dropdown .dd-item:hover{
  cursor: pointer;
  box-shadow: 0 2px 4px #cacaca;
}

.my-cart-dropdown .dd-item:after {content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}/*Kapsayamama Sorunu*/

.my-cart-dropdown .dd-item .dd-item-image{
  float: left;
  margin: 0;
  padding: 0;
  width: 20%;
  box-shadow: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.my-cart-dropdown .dd-item .dd-item-image img{
  width: 100%;
  max-height: 60px;
  border-radius: 5px;
  border:1px solid #e4e1e1;
}

.my-cart-dropdown .dd-item .dd-item-name{
  margin: 0;
  padding: 0 0 5px 0;
  width: 70%;
  margin-left: 25%;
}
.my-cart-dropdown .dd-item .dd-item-name h6{
  margin: -3px 0 !important;
  padding: 0 !important;
  font-size: 13px;
  font-weight: 400;
}

.my-cart-dropdown .dd-item .dd-item-info{
  width: 70%;
  margin: -3px 25% !important;
}

.my-cart-dropdown .dd-item .dd-item-info h6{
  padding: 0 0 !important;
  margin: 0;
  font-size: 14px;
  color: #ea105e;
  font-weight: normal;
}

/* Adet sayısı */
.my-cart-dropdown .dd-item .dd-item-info h6:first-child{
  font-size: 12px;
  color: #a0a0a0;
}

/* Daha Fazla Göster */
.show-more{
  display: none;
  text-align: center;
  margin-top: 10px;
  width: 100%;
}

.show-more a{
  color: #a0a0a0 !important;
  font-size: 14px !important;
}

.show-more a:hover{
  text-decoration: underline !important;
}

.my-cart-dropdown button{
  float: left;
  width: 45%;
  margin-top: 2%;
  margin-left: 3.5%;
  height: 40px;
  font-size: 14px;
}

.my-cart-dropdown .go-basket{
  background-color: #e4e1e1;
  color: #000;
}

.my-cart-dropdown .complete-order{
  background-color: #1ee08f;
}


.header-center{
  float: left;
  width: 33.33%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo{
  width: 100px;
  margin-top: 25px;
}




.header-right{
  float: right;
  width: 33.33%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-right a{
  color: black;
}

/* Misafir GÖrünümü */

.header-right-guest{
  width: 70%;
  height: 25%;
  margin-right: 5%;
}

.header-right-guest ul:after {content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}/*Kapsayamama Sorunu*/

.header-right-guest ul li{
  float: right;
  margin-left: 10%;
  transition: 0.3s all;
  font-weight: normal;
}

.header-right-guest-top{
  width: 90%;
  height: 20px;
  padding-right: 5%;
  padding-bottom: 10px;
  border-right: 1px solid #e4e1e1;
}

.header-right-guest-top ul li:first-child a{
  color: #ea105e;
}

.header-right-guest-top ul li:hover{
  transform: scale(1.1);
}

.header-right-guest-bottom{
  width: 90%;
  height: 20px;
  padding-right: 5%;
  padding-bottom: 10px;
  border-right: 1px solid #e4e1e1;
  border-top: 1px solid #e4e1e1;
}

.header-right-guest-bottom .languages{
  width: 100% !important;
  padding-right: 0% !important;
  border: none;
  padding-top: 5px;
}



/* Kullanıcı Görünümü */

.header-right-user{
  width: 100%;
  margin-right: 25%;
}

.header-right-user ul li{
  margin-left: 5%;
  float:right;
  font-weight: normal;
}




.header-right-user-top{
  width: -90%;
  height: 20px;
  margin-top: 30px;
  padding-right: 5%;
  padding-bottom: 10px;
  border-right: 1px solid #e4e1e1;
}


.languages{
  width: 80px;
  width: 90%;
  height: 20px;
  padding-right: 5%;
  padding-top: 10px;
  border-right: 1px solid #e4e1e1;
  border-top: 1px solid #e4e1e1;
}

.languages ul li{
  transition: 0.3s all;
  cursor: pointer;
  margin-left: 2%;
}
.languages ul li:hover{
  transform: scale(1.1) !important;
}
.languages li img{
  height: 20px;
}






/* Header yazıların hover özellikleri burda */
.header-right-user-top{
  transition: 0.3s all;
  cursor: pointer;
}





/*--------------------------------------------------------------Header End--------------------------------------------------------------------------*/





/*--------------------------------------------------------------Mobile Header End--------------------------------------------------------------------------*/

@media only screen and (max-device-width: 1279px) {

.header{
  display: none;
}

.mobile-header{
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 60px;
  background-color: #fff;
  box-shadow: 0 3px 5px #ececec
}


.mobile-image{
  float: left;
  width: 30%;
  height: 100%;
  margin: 0 !important;
  justify-content: center;
  align-items: center;
  display: flex;
}

.mobile-image img{
  width: 60px;
  margin: 0 !important;
}

.mobile-header-right{
  float: left;
  width: 70%;
  height: 100%;
  padding-right: 5%;
  box-sizing: border-box;
}

.mobile-header-right ul{
  width: 100%;
  height: 100%;

}


.mobile-header-right ul li{
  float: right;
  padding: 18px;
  font-size: 15px;
  color: #000;
}

.mobile-header-right ul li a{
  color: #000;
}







.mobile-header-dropdown{
  position: fixed;
  max-height: 100%;
  width: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling:touch; /* mobile safari */
  background-color: #fff;
  top: -75%;
  display: block;
  z-index: 998;
  box-shadow: 0 3px 5px #ececec;
  background-color: #fff;
}




.mobile-dd-top-no-login{
  width: 100%;
  background-color: #ececec;
}

.mobile-dd-top-no-login:after {content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}/*Kapsayamama Sorunu*/


.mobile-dd-top-no-login label{
  padding: 20px 0;
  font-size: 12px;
  font-weight: normal;
  text-align: center;
}


.mobile-dd-top-no-login button{
  border-radius: 3px;
  width: 35%;
  margin: 0;
  margin-left: 10%;
  height: 40px;
  float: left;
  margin-bottom: 20px;
}



.change-language{
  width: 100%;
  background-color: #ffffff;
  padding: 15px 0;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.languages{
  width: 100%;
  border: none;
  padding-top: 0;
  height: auto;
  margin-left: 0;
  padding-right: 0 !important;
}

.change-language ul{
  width: 100%;
  margin-left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.change-language ul li{
  float: left;
  margin-left: 0 !important;
}

.change-language ul li:not(:first-child){
  margin-left: 5% !important;
}

.change-language ul li img{
  width: 30px !important;
  height: 25px !important;
}


.mobile-dd-menu{
  width: 100%;
}

.mobile-dd-menu ul{
  width: 100%;
}

.mobile-dd-menu ul li{
  width: 100%;
  padding: 12px 0;
  text-align: center;
  font-size: 15px;
  border-bottom: 1px solid #ececec;
  color: #000 !important;
}

.mobile-dd-menu ul li:hover{
  background-color: #ececec;
}


.mobile-menu-dropdown{
  width: 100%;
}

}