
* {
    box-sizing: border-box;
} 
html{
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color:#333e48;
}
button{
    border: none;
    outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }
input[type=number] {
  -moz-appearance: textfield;
}
@keyframes entryAnimationy {
    0% {
      opacity: 0;
      transform: translateY(500%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes exitAnimationy {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(500%);
    }
  }
@keyframes entryAnimation {
    0% {
      opacity: 0;
      transform: translateX(-1%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  @keyframes exitAnimation {
    0% {
      opacity: 1;
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      transform: translateX(-1%);
    }
  }
  @keyframes entryAnimationt {
    0% {
      opacity: 0;
      transform: translateY(-1%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes exitAnimationt {
    0% {
      opacity: 1;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(-1%);
    }
  }
  .inanimation{
    animation: entryAnimation 0.3s ease-in-out;
  }
  .outanimation{
    animation: exitAnimation 0.3s ease-in-out;
  }
  .inanimationt{
    animation: entryAnimationt 0.3s ease-in-out;
  }
  .outanimationt{
    animation: exitAnimationt 0.3s ease-in-out;
  }
  .inanimationy{
    animation: entryAnimationy 0.3s ease-in-out;
  }
  .outanimationy{
    animation: exitAnimationy 0.3s ease-in-out;
  }
  .animated {
    animation-name: fade;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: ease;
    display: none;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
header{
    width: 100%;
    margin: 0;
    padding: 0;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    position: relative;
}

/* üst bar */
header .ustbar{
    width: 100vw;
    padding: 5px 0;
    border-bottom: 1px solid #e8e8e8;
    color: #334141;
    font-weight: lighter;
}
header .ustbar a{
    color: #334141;
    font-size: 0.8vw;
    cursor: pointer;
}
header .ustbar .content{
    width: 80vw;
    margin: auto;
    display: flex;
}
header .ustbar .content a i{
    padding: 0 0.5vw;
}
header .ustbar .content .leftbar{
    margin-left: auto;
    position: relative;
    
}
header .ustbar .content .leftbar li{
    display: inline-block;
    height: 100%;
    padding-right:1vw;
    border-right: 2px solid #e8e8e8;
}
header .ustbar .content .leftbar li:nth-child(3){
    padding-right: 0;
}
header .ustbar .content .leftbar li a{
    height: 100%;
    display: block;
}
header .ustbar .content .leftbar li:last-child{
    border:none;
}
header .ustbar .content .currency {
    text-align: center;
    position: relative;
}
header .ustbar .content .currency .currencydrop{
    display: none;
    width: 100%;
    position: absolute;
    top: 115%;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
    background-color: white;
    z-index: 1;
    border-radius: 0.5rem;
    animation: entryAnimation 0.3s ease-in-out;
    border-top: 1px solid #e8e8e8;

}
header .ustbar .content .currency .currencydrop li{
    border: none;
    display: flex;
    flex-flow: row wrap; 
    padding: 0.25vw 0.50vw;
       
}
header .ustbar .content .currency .currencydrop li button{
    text-align: left;
    font-size: 0.8vw;
    width: 100%;
    background-color: transparent;
    cursor: pointer;
    height: 25%;
}
header .ustbar .content .currency:hover .currencydrop{
    display: block;
}
header .ustbar .content .currencydrop li:hover{
    background-color: rgba(151, 164, 175, 0.1);
}
header .ustbar .content .user{
    position: relative;
}
header .ustbar .content .user .userdrop{
    display: none;
    width: max-content;
    position: absolute;
    top: 115%;
    padding: 0.5rem;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
    background-color: white;
    z-index: 1;
    border-radius: 0.5rem;
    animation: entryAnimation 0.3s ease-in-out;
    border-top: 1px solid #e8e8e8;
}
header .ustbar .content .user .userdrop li{
    border: none;
    display: flex;
    flex-flow: row wrap; 
    padding: 0.25vw 0.50vw;
       
}
header .ustbar .content .user:hover .userdrop{
    display: block;
}
header .ustbar .content .user .userdrop li:hover{
    background-color: rgba(151, 164, 175, 0.1);
}
header .ustbar .content span{
    color: #7c7c7c;
    font-size: 0.75vw;
    padding: 2px;
    display: flex;
    flex-direction: row;

}
header .ustbar .content span p{
    width: max-content;
    margin: 0;
    margin-right: 5px;
    padding: 0 5px;
    border-right: 1px solid #e7eaf3;
    color: #7c7c7c;
    cursor: default;
    user-select: none;

}
header .ustbar .content span p:hover{
    color: #334141;
}
header .ustbar .content span p:last-child{
    border-right: 0;
}
/* menü bar */
header .menu{
    width: 100vw;
    font-size: 0.8vw;
}
header .menu .content{
    width: 100vw;
}
header .menu .menutop{
    width: 80vw;
    padding-top: 3vh;
    margin: auto;
    display: flex;
}
header .menu .menuleft{
    width: 20vw;
}
header .menu a img{
    width: 12vw;
}

header .menu .searchbar{
    margin: auto;
    display: flex;
    border: 2.5px solid #fed700;
    border-radius: 3vh;
    position: relative;
}
header .menu .searchbar input{
    width: 40vw;
    border-color: transparent;
    margin-left: 1vw;
}
header .menu .searchbar input:focus{
    outline: none;
}
header .menu .searchbar .searchcategory{
    padding: 1vh 1vw;
    position: relative;
}
header .menu .searchbar .searchcategory ul{
    position: absolute;
    margin-top: 1rem;
    left: 0;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
}
header .menu .searchbar .searchcategory span{
    display: inline-block;
    user-select: none; 
    cursor: pointer;
}
header .menu .searchbar .searchcategory ul li{
    cursor: pointer;
    width: max-content;
    padding: 0.5rem 1.5rem;
}
header .menu .searchbar input{
    font-size: 1vw;
}
header .menu .searchbar .search{
    padding: 1vh 1vw;
    background-color: #fed700;
    border-top-right-radius: 2vh;
    border-bottom-right-radius: 2vh;
}
header .menu .searchmenu{
    margin: auto;
}
header .menu .searchmenu a{
    font-size: 1vw;
    display: inline-block;
    position: relative;

}
header .menu .searchmenu a i{
    display: block;
    cursor: pointer;
    padding: 1vw;

}
header .menu .searchmenu a span{
    position: absolute;
    background-color: black;
    color: white;
    width: 5vw;
    font-size: 0.75vw;
    border-radius: 0.5vw;
    left: -1vw;
    top: -2rem;
    padding: 0.50rem 0 ;
    text-align: center;
    display: none;
    animation: entryAnimation 0.5s ease-in-out;

}
header .menu .searchmenu a span i{
    position: absolute;
    top: -0.5vw;
    left: 1vw;
    color: black;
    font-size:2vw;
}
header .menu .searchmenu a:hover span{
    display: block;
}
#stokListesi{
    position: absolute;
    width: auto;
    min-width: 36vw;
    max-height: 30rem;
    overflow-y: scroll;
    top:2.5rem;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
}
#stokListesi::-webkit-scrollbar {
    width: 10px;
  }
  
  #stokListesi::-webkit-scrollbar-track {
    background: #f1f1f1; 
  }
   
  #stokListesi::-webkit-scrollbar-thumb {
    background: #888; 
  }
  
  #stokListesi::-webkit-scrollbar-thumb:hover {
    background: #555; 
  }
#stokListesi li{
    padding: 1rem 1rem;
    border-bottom: 1px solid #e7eaf3;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
#stokListesi li:hover{
    background-color: rgb(245, 244, 244);
}
#stokListesi li:last-child{
    border-bottom: none;
}
.menubottom{
    width: 80%;
    padding-top: 2vh;
    margin: auto;
    font-weight: bold;
    display: flex;
    position: relative;
}
header .menubottom .kategori{
    width: 20vw;
    position: relative;
    cursor: pointer;
}
header .drop{
    width: 20vw;
    height: 49.9vh;
    position: absolute;
    left: 10vw;
    bottom: -49.9vh;
    font-size:0.9vw;
    padding-top: .5rem;
    font-weight: normal;
    background-color: #fff;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    z-index: 1;
}
header .menubottom .kategori li a{
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}

header .menubottom .kategori li{
    border-top-left-radius: 0.4375rem;
    border-top-right-radius: 0.4375rem;
    background-color: #fed700;
    font-size:0.9vw;
    user-select: none; 
    padding: 1.5vh 3vw 1.5vh 1vw;
}
header .drop li{
    
    background-color: #fff;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
header .drop li a{
    display: flex;
    align-items: center;
    justify-content: left;
    width: 90%;
    height: 100%;
    padding: 0.5rem;
    margin: auto;
    border-bottom: 1px solid #e7eaf3;
}
header .drop li a i{
    margin-left: auto;
    color: #9d9e9e;
}
header .drop li:last-child{
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
}
header .drop li:last-child a{
    border-bottom: 0;
  
}
header .drop li a:hover{
    background-color: rgb(245, 244, 244);
    font-weight: bold;
}

  
header .drop .droptodrop{
    display: none;
    width: 50vw;
    height: 49.8vh;
    padding: 2rem 1rem;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 20vw;
    border-top: 0.1rem solid #fed700;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    animation: entryAnimation 0.5s ease-in-out;
}

header .drop li:hover .droptodrop{
    display: block;
}

header .drop  .droptodrop li a{
    border-bottom: none;
}

header .drop .droptodrop li a:hover{
    background-color: #fff;
    font-weight: normal;
    text-decoration: underline;
}

header .drop .droptodrop .subs{
    float: left;
    text-align: left;
    margin: 0;
    padding: 0;
}
header .drop .droptodrop .subs li{
    padding: 0 1rem;
    font-size:0.9vw;
}

header .drop .droptodrop .dropmain{
    display: block;
    height: auto;
    margin: 0;
    padding: 0.5rem 2.5rem;
    font-weight: bold;
    font-size:0.9vw;
    border: none;
}
header .drop .droptodrop .list{
    float: left;
    padding: 0 1rem;
    width: 50%;
}
header .drop .droptodrop .dropmain:hover{
    background-color: #fff;
    font-weight: bolder;
    text-decoration: none;
}
header .menubottom .mainmenu li{
    display: inline-block;
    padding: 1.5vh 0.5vw;
    font-size:0.8vw;
    position: relative;

}
header .menubottom .mainmenu li i{
    font-size:0.6vw;
}
header .menubottom .mainmenu li:last-child{
    padding-left: 2vh;
}
header .menubottom .mainmenu li:nth-child(5){
    background-color: #fed700;
    border-radius: 2rem;
    padding: 1vh 1vw;
}
header .menubottom .mainmenu li:nth-child(5):hover{
    background-color: #555;
}
header .menubottom .mainmenu li:nth-child(5):hover a{
    color: white;    

}


header .menubottom .mainmenu .destek .destekdrop{
    position: absolute;
    z-index: 3;
    top:105%;
    display: none;
    padding: 1vw 0;
    background-color: white;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
    border-top: 0.1rem solid #fed700;
    animation: entryAnimation 0.3s ease-in-out;
    width: max-content;

}
header .menubottom .mainmenu .destek .destekdrop li{
    border: none;
    display: flex;
    flex-flow: row wrap; 
    width: 100%;
    padding:  1vh 1vw;
    font-size: 0.8vw;
    font-weight: 500;
}
header .menubottom .mainmenu .destek:hover .destekdrop{
    display: block;
}
header .menubottom .mainmenu .destek .destekdrop li:hover{
    background-color: rgba(151, 164, 175, 0.1);
}
/* Login */

header .login{
    display: none;
    position: fixed;
    width: 20vw;
    height: 100%;
    background-color: white;
    right: 0;
    top: 0;
    z-index: 2;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
}
header .login div{
    padding: 1rem;
    width: 100%;
    font-size: 2rem;
    z-index: 3;
    text-align: right;
}
header .login div i{
    cursor: pointer;
}
header .login span{
    width: 100%;
    text-align: center;
    display: block;
    font-size: 1.25vw;
    font-weight: 500;
}
header .login span i{
    padding: 1rem;
    width: 100%;
    font-size: 2rem;
    z-index: 3;
    text-align: right;
}
header .login span span{
    display: block;
    font-size: 2vw;
    font-weight: bold;
}
header .login span p{
    width: 100%;
    font-size: 0.75vw;
    margin: 0;
    padding: 0.5rem;
    font-weight: normal;
}
header .login form{
    width: 100%;
    text-align: center;
    margin-top: 5vh;
}
header .login form span{
    width: 90%;
    display: inline-flex;
    border-radius: 2rem;
    border: 1px solid #c0bebe;
    padding: 0;
    margin: 1vh 5%;
}
header .login form p{
    width: 90%;
    text-align: right;
    margin: auto;
}
header .login form p a{
    border-bottom: dotted 0.1vw #7c7c7c;
    color: #7c7c7c;
}
header .login form p a:hover{
    color: black;
}
header .login form span i{
    width: min-content;
    font-size: 1vw;
    margin: auto 0;
    border: 1px solid #c0bebe;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    color: #c0bebe;
}
header .login form input{
    border: none;
    outline: none;
}
header .login form input[type=email] , header .login form input[type=password]{
    width: 95%;
    border: 1px solid #c0bebe;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 2rem;
    padding-left: 0.5rem;
}
header .login form input[type=submit]{
    width: 90%;
    margin: 1vh 0;
    padding: 0.5rem ;
    font-size: 1vw;
    background-color: #fed700;
    color: black;
    text-align: center;
    border-radius: 2rem;
}
header .login .kayitol{
    width: 90%;
    margin: auto;
    padding: 1.5vh 0;
    font-size: 0.75vw;
    color: #c0bebe;
}
/* Main */
main{
    width: 100vw;
    margin: auto;
}

/* Slider */
main .slider{
    position: relative;
    z-index:-1;
    background:url("../img/homebackground.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    width: 100vw;
    height: 50vh;
}
main .content{
    width: 80vw;
    padding: 2vh 0vw;
    margin: auto;
}

main .content .markalar ul{
    width: 80vw;
    display: flex;
    
}
main .content .markalar ul li{
    width: 100vw;
    max-width: 26vw;
    padding: 2vh 1vw;
    margin-left: auto;
    display: inline-block;
    background-color: #f5f5f5;
}
main .content .markalar ul li:first-child{
    margin-left: 0;
}
main .content .markalar ul li a{
    width: 100%;
    display: flex;
    padding: 2vh 0 1vh 0;
}
main .content .markalar img{
    width: 13vw;
    height: auto;
}
main .content .markalar ul li .markayazi{
    font-size: 1.15rem;
    width: 13vw;
    max-width: 100%;
    padding-left: 1.5vw;
    margin-left: auto;
    font-size:1vw;

}
main .content .markalar ul li span{
    width: 100%;
    display: block;
    padding-top: 2vh;
    font-weight: 700;
    font-size:1vw;
}
main .content .markalar ul li span i{
    font-size:0.7vw;
    background-color: #fed700;
    border-radius: 15px;
    color: white;
    padding: .2rem;
    transform: rotate(-90deg);
}
main .content .markalar ul li span:hover i{
    transform: rotate(360deg);
    transition: 0.3s ease;
}
main .content .urunler{
    margin-top: 3vh;
    display: flex;
}
main .content .kampanya{
    width: 20vw;
    padding: 1vh;
    height: max-content;
    border-radius:1rem;
    border: #fed700 2px solid;
    position: relative;
    text-align: center;
}
main .content .kampanya span{
    position: absolute;
    width: 5vw;
    height: 5vw;
    border-radius: 5vw;
    background-color: #fed700;
    right: 1rem;
    top: 1rem;
}
main .content .kampanya h3{
    text-align: left;
    padding-left: 2vw;
    font-size: 1.2vw;
}
main .content .kampanya span div{
    padding: 1.75vw 0;
    font-size: 0.8vw;
}

main .content .kampanya img{
    width: 90%;
    margin-left: 5%;
}
main .content .kampanya .urunadi{
    width: 90%;
    font-size: 1vw;
    margin-left: 5%;
    color: blue;
    font-weight: bold;
    text-align: center;
}
main .content .kampanya .urunadi a{
    color: blue;
}
main .content .kampanya .fiyat{
    width: 100%;
    text-align: center;
    color: red;
    font-size: 25pt;
    padding: 10px 0;
    font-size: 1vw;

}
main .content .kampanya .fiyat s{
    color: black;
    font-size: 15pt;
    padding-right: 10px;
    font-size: 1vw;

}
main .content .kampanya p{
    width: 100%;
    text-align: center;
    font-size: 1vw;

}
main .content .kampanya .satinal{
    background-color: #fed700;
    border: none;
    border-radius: 25px;
    color: white;
    display: block;
    width: 90%;
    margin:auto;
    padding: 1.5vh 0;
    transition: all ease 50ms;
    font-size: 1vw;

}
main .content .kampanya .satinal:hover{
    background-color: #333e48;
    border-color: #333e48;
}
main .content .onecikanlar{
    width: 70%;
    margin-left: auto;
    padding-left: auto;
}
main .content .onecikanlar .urunlermenu{
    border-bottom: #e7eaf3 1px solid;
    text-align: center;
    font-size: 1vw;
}
main .content .onecikanlar .urunlermenu a{
    padding: 0.5vw 2vh;
    display: inline-block;
}
main .content .onecikanlar .urunlermenu .active{
    border-bottom: #fed700 3px solid;
    font-weight: bold;
}

main .content .onecikanlar .anasayfaurun{
    justify-content: center;
    margin: 1vw 1vh;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
    width: 17vw;
    min-width: 11rem;
    display: flex;
    flex-direction: column;
    float: left;
    
}
main .content .onecikanlar .anasayfaurun:hover{
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.5);

}
main .content .onecikanlar .anasayfaurun .urunmarka{
    color: #7c7c7c;
    font-size: 0.8vw;
    display: block;
    text-align: left;
    padding-top: 1rem;
    padding-left: 1rem;
}
main .content .onecikanlar .anasayfaurun .urunadi{
    color: #0663bd;
    font-weight: bold;
    max-width: 16.5vw;
    font-size: 0.8vw;
    padding: 0.5vh 1vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.15vw;
    text-align: left;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}
main .content .onecikanlar .anasayfaurun img{
    width: 70%;
    margin: auto;
    object-fit: scale-down;
    display: block;
}
main .content .onecikanlar .anasayfaurun .tutar{
    font-size: 1.2vw;
    float: left;
    padding: 2vw 2vh;
}
main .content .onecikanlar .anasayfaurun button{
    width: 3vw;
    height: 3vw;
    border-radius: 100%;
    background-color: #fed700;
    color: white;
    float: right;
    margin: 1vw 2vh ;
    font-size: 1vw;
    border: none;
}
main .ilgibaslik{
    width: 100%;
    border-bottom: #e7eaf3 1px solid;
    padding: .7rem;
    padding-left: 0;
}
main .ilgibaslik a{
    font-size: 1vw;
    padding: .7rem;
    border-bottom: #fed700 2px solid;
}
main .anasayfailginizurunler ul{
    display: flex;
    flex-wrap: wrap; 
    max-width: 80vw;
}
main .anasayfailginizurunler li{
    width: 18vw;
    padding: 1vh 1vw;
    margin-left: 1vw;
    display: flex;
    flex-direction: column;
    float: left;
    
}
main .anasayfailginizurunler li img{
    width: 5rem;
    display: block;
    float: left;
    margin-right: 10px;
}
main .anasayfailginizurunler li .urunadi{
    color: blue;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.5rem 0;
    display: -webkit-box;
    -webkit-box-orient: vertical; 
    overflow: hidden;
    max-height: 2.9rem;
}


/** Page  **/
main .urun{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    padding: 1vh 0;
}
main .urun ul li{
    margin: 1vh 0;
}

main .urun .urunnav{
    width: 100%;
    display: block;
}
main .urun img{
    width: 35%;
    margin: auto 0;
}
main .urun .urunbilgi{
    width: 40%;
    height: max-content;

}
main .urun .urunbilgi h1{
    width: 100%;
    margin: 0;
}
main .urun .urunbilgi div{
    width: 100%;
    height: max-content;
    min-height: 80%;
    margin: 2vh 1vw;
    font-size: 0.75vw;
    color: #888;
}
main .urun .urunbilgi span{
    width: 100%;
    font-size: 0.8vw;
}
main .urun .fiyatkarti{
    width: 25%;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    height: min-content;
    padding: 2vw;
    border: 0.1rem solid #e8e8e8;
}
main .urun .fiyatkarti .fiyat{
    font-size: 2vw;
}
main .urun .fiyatkarti .urunadet{
    font-size: 1vw;
    color: #7c7c7c;
    display: flex;
    flex-direction: row;

}
main .urun .fiyatkarti .adetinput{
    width: 50%;
    border: 0.1rem solid #c0bebe;
    height: min-content;
    border-radius: 1vw;
    display: flex;
    flex-direction: row;
    margin: 0.5vw 0;

}

main .urun .fiyatkarti .urunadet p{
    padding: 0 6vw;
    padding-left: 0;
}
main .urun .fiyatkarti .adetinput input{
    width: 60%;
    border: none;
    outline: none;
    padding: 0 1vw;
    border-top-left-radius: 1vw;
    border-bottom-left-radius: 1vw;
}
main .urun .fiyatkarti .adetinput div{
    font-size: 1vw;
    display: flex;
    flex-direction: row;
}
main .urun .fiyatkarti .adetinput div i{
    padding: 0.5vw 0.5vw;
    color: #c0bebe;
}
main .urun .fiyatkarti .adetinput div i:hover{
    color: black;
}
main .urun button{
    background-color: #fed700;
    width: 100%;
    padding: 1vw;
    margin: 0.5vw 0;
    border-radius: 2vw;
    font-size: 2vh;
    font-weight: 600;
    cursor: pointer;
}
main .urun button:hover{
    color: white;
    background-color: #555;
}
main .urun .urunfavori{
    width: 100%;
    text-align: center;
    display: block;
    margin: 1vh 0 ;
    cursor: pointer;
}
main .urun .urundetay{
    width: 100%;
    box-shadow: 0 0 2vw rgba(151, 164, 175, 0.1);
    padding: 1vw;
    margin: 2vw auto;
    display: flex;
}
main .urun .urundetay span{
    width: 90%;
    margin: auto;
}

main .urunler-page{
    width: 80%;
    margin: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: max-content;
}
main .urunler-page .urunpage{
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    max-width: 20%;
    min-width: 11rem;
    display: block;
    margin: 0;
}
main .urunler-page .urunpage:hover{
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
main .urunler-page .urunpage .urunmarka{
    color: #7c7c7c;
    font-size: 0.8vw;
    display: block;
    text-align: left;
    padding-top: 1rem;
    padding-left: 1rem;
}
main .urunler-page .urunpage .urunadi{
    color: #0663bd;
    font-weight: bold;
    max-width: 16.5vw;
    font-size: 0.8vw;
    padding: 0.5vh 1vw;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 2.15vw;
    text-align: left;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
}
main .urunler-page .urunpage img{
    width: 70%;
    margin: auto;
    object-fit: scale-down;
    display: block;
}
main .urunler-page .urunpage .tutar{
    font-size: 1vw;
    float: left;
    padding: 2vw 2vh;
}
main .urunler-page .urunpage button{
    width: 3vw;
    height: 3vw;
    border-radius: 100%;
    background-color: #fed700;
    color: white;
    float: right;
    margin: 1vw 2vh ;
    font-size: 1vw;
    border: none;
}
main .page-content{
    width: 80%;
    margin: 1vw auto;
    display: flex;
    flex-flow: row wrap;
}
main .page-content .solbar{
    width: 20%;
    margin: 1vw 0;
    padding: 0 1vh;
}
main .page-content .solbar .altkategoriler{
    margin: 0;
    border-radius: 1vh;
    display: flex;
    flex-direction: column;
    color:#7c7c7c;
    font-size: medium;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px, rgba(0, 0, 0, 0.24) 0px 1px 2px;

}
main .page-content .solbar .altkategoriler span{
    width: 100%;
    padding: 2vh 3vh;
    border-bottom: 0.2vh solid #e8e8e8;
    margin-bottom: 0.5vh;
}
main .page-content .solbar .altkategoriler li{
    width: 90%;
    margin: auto;
    text-align: right;
    display: flex;
    flex-direction: row;
    padding: 0 1vh;
    border-bottom: 0.2vh solid #e8e8e8;
}
main .page-content .solbar .altkategoriler li:last-child{
    border: none;
}
main .page-content .solbar .altkategoriler li a{
    color:#7c7c7c;
    font-size: small;
    display: flex;
    flex-direction: row;
  
}
main .page-content .solbar .altkategoriler li a p{
    width: max-content;
    height: min-content;
    display: flex;
    margin: 0;
    padding: 1.5vh 0;

}
main .page-content .solbar .altkategoriler li i{
    color:#7c7c7c;
    font-size: x-small;
    margin: 0 0.5vh;
    padding: 1.65vh 0;

}
main .page-content .solbar .altkategoriler .kategoriaktif a,main .page-content .solbar .altkategoriler .kategoriaktif i{
    color:black;
    font-weight: 600;
}
main .page-content .solbar .markafiltre{
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    border-radius: 1vh;
    padding: 1vw;
    margin-top: 2vw;
}
main .page-content .solbar .markafiltre span{
    width: 100%;
    display: block;
    padding: 0;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    border-bottom: #e8e8e8 1px solid;
    margin-bottom: 1vh;
}
main .page-content .solbar .markafiltre span p{
    width: max-content;
    padding: 0 1vw;
    font-size: x-large;
    box-sizing:border-box;
    -webkit-box-sizing:border-box;
    border-bottom: #fed700 2px solid;
    margin: 0;
}
main .page-content .solbar .markafiltre li{
    padding: 1vh 0;
}
main .page-content .solbar .markafiltre li i{
    color: #c0bebe;
}
main .page-content .solbar .markafiltre li .active{
    color: #fed700;
}
main .page-content .siralama{
    margin: 1vw auto;
    text-align: right;
    background-color: #e8e8e8;
    width: 100%;
    height: min-content;
    padding: 1.5vh 1vw;
    border-radius: 1vh;
    z-index: 0;
}

main .page-content .siralama span{
    background-color: white;
    border-radius: 1vw;
    padding: 1vh 1.5vw;
    position: relative;
    display: flex;
    text-align: center;
    width: 220px;
    margin-left: auto;
}
main .page-content .siralama span b{
    font-weight: normal;
    margin-left: auto;
}
main .page-content .siralama span i{
   margin-left: auto;
}
main .page-content .siralama ul{
    width: 100%;
    border-radius: 1vw;
    position: absolute;
    right: 0;
    top:4vh;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    text-align: left;
}
main .page-content .siralama ul li{
    cursor: pointer;
    background-color: white;
    padding: 1vh 1.5vw;
}
main .page-content .siralama ul li:first-child{
    border-top-left-radius: 1vw;
    border-top-right-radius: 1vw;
}
main .page-content .siralama ul li:last-child{
    border-bottom-left-radius: 1vw;
    border-bottom-right-radius: 1vw;
}
main .page-content .siralama ul li:hover{
    background-color: #e7eaf3;
}
main .page-content .marka{
    width: 20%;
    height: max-content;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 1vw 0;
    border-right: 0.1vw solid #e7eaf3;
    margin-bottom: 3vh;
}
main .page-content .marka:hover{
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 2px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
main .page-content .marka img{
    width: 60%;
    margin: auto;
    display: block;
}
main .page-content .marka h3{
    width: 100%;
    margin: auto;
    display: block;
    font-weight: normal;
    color: #7c7c7c;
    padding: 0 2vw;
}
main .page-content .sepetbaslik{
    width: 80%;
    margin: auto;
    font-size: 1.25vw;
}
main .page-content .page-nav{
    display: flex;
    flex-flow: row; 
    width: 100%;

}
main .page-content .page-nav li{
    padding: 0.1vw 0vw;
    color: #334141;

}
main .page-content .page-nav li i{
    padding: 0 0.5vw;
    color: #555;
}
main .page-content .sepetbos{
    display: flex;
    flex-flow: column;
    height: 30vh;
    margin: auto;
    margin-bottom: 1vw;
}
main .page-content .sepetbos p{
    width:100%;
    margin: auto;
    border-bottom: 0.1vw solid #e8e8e8;
    text-align: center;
    font-size: 1vw;
    padding: 1vw;
}
main .page-content .sepetbos a{
    margin: auto;
    padding: 1vw 3vw;
    border-radius: 3vw;
    font-size: 1vw;
    background-color: #fed700;
    font-weight: 550;
}
main .page-content .sepetbos a:hover{
    color: white;
    background-color: #333e48;
}
main .page-content .sepetasamalari{
    width: 90%;
    margin: auto;
    border-bottom: #fed700 1px solid;
    font-size: 1vw;
    display: flex
}
main .page-content .sepetasamalari div{
    margin: auto;
}
main .page-content .sepetasamalari div button{
    color: black;
    display: block;
    padding: 2vh 3vw;    
    font-size: 1.25vw;
    background-color: white;
    cursor: pointer;
}
main .page-content .sepetasamalari .active, main .page-content .sepetasamalari .active button{
    background-color: #fed700;
    color: white;
    border-top-right-radius: 2vw;
    border-top-left-radius: 2vw;
}
main .page-content #sepetimasamasi{
    width:90%;
    margin: 2vw auto;

}
main .page-content #sepetasama,main .page-content #adresasama,main .page-content #odemeasama{
    width: 100%;
    min-height: 20vh;
}
main .page-content .sepet-urun{
    width: 90%;
    margin: 2vw auto;
}
main .page-content .sepet-urun thead tr th{
    border-bottom: #e7eaf3 0.1vw solid;
    padding: .5vw 0;
}
main .page-content .sepet-urun tr td{
    text-align: center;
    padding: 0.5vw 0;
}
main .page-content .sepet-urun tr td:nth-child(5){
    width: 1vw;
}
main .page-content .sepet-urun tr td img{
    width: 7.5vw;
    border: 0.1vw solid #e7eaf3;
}
main .page-content .sepet-urun tr td .adetinput{
    width: 7.5vw;
    border: 0.1rem solid #c0bebe;
    height: min-content;
    border-radius: 1vw;
    display: flex;
    margin: auto;
    flex-direction: row;

}
main .page-content .sepet-urun tr td .adetinput input{
    width: 60%;
    border: none;
    outline: none;
    padding: 0 1vw;
    border-top-left-radius: 1vw;
    border-bottom-left-radius: 1vw;
}
main .page-content .sepet-urun tr td .adetinput div{
    font-size: 1vw;
    display: flex;
    flex-direction: row;
}
main .page-content .sepet-urun tr td .urunadet p{
    padding-left: 0;
}
main .page-content .sepet-urun tr td .adetinput div i{
    padding: 0.5vw 0.5vw;
    color: #c0bebe;
}
main .page-content .sepet-urun tr td .adetinput div i:hover{
    color: black;
}
main .page-content .sepet-urun-listesi .sepet-toplam{
    width: 30vw;
    display: flex;
    flex-flow: column;
    margin-left: auto;
    margin-right: 10%;
}
main .page-content .sepet-urun-listesi .sepet-toplam span{
    border-bottom: 0.1vw solid #e7eaf3;
}
main .page-content .sepet-urun-listesi .sepet-toplam span p{
    width: max-content;
    border-bottom: 0.1vw solid #fed700;
    margin: 0;
    padding: 0.5vw 1vw;
    font-size: 1.25vw;
    font-weight: 700;
}
main .page-content .sepet-urun-listesi .sepet-toplam table{
    margin: 1vw;
}
main .page-content .sepet-urun-listesi .sepet-toplam table tr th{
    text-align: left;
    padding: 0.5vw 0;
    border-bottom: 0.1vw solid #e7eaf3;
}
main .page-content .sepet-urun-listesi .sepet-toplam table tr td{
    text-align: right;
    padding: 0.5vw 0;
    border-bottom: 0.1vw solid #e7eaf3;
}
main .page-content .sepet-urun-listesi .sepet-toplam table tr:last-child th, main .page-content .sepet-toplam table tr:last-child td{
    border-bottom: none;
}
main .page-content .sepet-urun-listesi .sepet-toplam button{
    width: 15vw;
    padding: 1vw;
    margin: 1vw 0;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    margin-left: auto;
    font-size: 1vw;
}
main .page-content .sepet-urun-listesi .sepet-toplam button:hover{
    color: white;
    background-color: #333e48;
}
main .page-content #adresasama{
    width: 90%;
    padding: 1vw;
    margin: auto;
    display: flex;
    flex-flow: column;
}

main .page-content #adresasama .adresler{
    width: 100%;
    margin: 0 1vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0 1vw;
}
main .page-content #adresasama .adresler div{
    margin: 2vw auto;
}
main .page-content #adresasama .adresler div span{
    display: flex;
    flex-flow: row;
    border-bottom: 0.1vw solid #e7eaf3;
    padding: 1vw;
}
main .page-content #adresasama .adresler div input{
    width: min-content;
    margin-right: 1vw;
}
main .page-content #adresasama .adresler div span label{
    display: flex;
    flex-flow: row;
    cursor: pointer;
}
main .page-content #adresasama .adresler div span label p{
    font-size: 0.75vw;
    color: #7c7c7c;
    margin: auto 1vw;
}
main .page-content #adresasama .adresler div span:first-child{
    margin: 0;
    border-bottom: 0.1vw solid #fed700;
    padding-left: 0;
}
main .page-content #adresasama .adresler div span:last-child{
    border-bottom: none;
}
main .page-content #adresasama .adresler div span:first-child p{
    margin: 0;
    padding: 0;
    font-weight: 550;
}
main .page-content #adresasama button{
    width: 15vw;
    display: flex;
    padding: 1vw;
    margin: 1vw 0;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    margin: auto;
    margin-right: 10%;
    font-size: 1vw;
    justify-content: center;
    border: none;
    outline: none;
}
main .page-content #adresasama button:hover{
    color: white;
    background-color: #333e48;
}

main .page-content #odemeasama{
    width: 90%;
    padding: 3vw 5%;
    margin: auto;
    display: flex;
    flex-flow: row;
}
main .page-content #odemeasama .odeme{
    min-width: 50%;
}
main .page-content #odemeasama form{
    width: 100%;
    min-height: 200px;
    margin: 1vw 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0 1vw;
}
main .page-content #odemeasama form input{
    width: 100%;
    margin: 0.5vw auto;
    padding: 0.5vw 1vh;
    outline: none;
    border: 0.1vw solid #9d9e9e;
    border-radius: 1vw;
}
main .page-content #odemeasama form #cvc{
    width: 50%;
    margin: 0.5vw auto;
    margin-right:0 ;
}
main .page-content #odemeasama form select{
    padding: 0.5vw 1vh;
    margin: 0.5vw 0;
    margin-right: 1vh;
    width: 20%;
    outline: none;
    border: 0.1vw solid #9d9e9e;
    border-radius: 1vw;
}
main .page-content #odemeasama form .havaleeft{
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0.5vw 0;
}
main .page-content #odemeasama form .havaleeft input[type="checkbox"]{
    width: 2vw;
    height: 2vh;
    margin: auto 0;
}
main .page-content #odemeasama form .havaleeft label{
    width: max-content;
    margin: auto 0;
    cursor: pointer;
}
main .page-content #odemeasama .sepet-toplam{
    width: 30vw;
    display: flex;
    flex-flow: column;
    margin: 0 1vw;
}
main .page-content #odemeasama .sepet-toplam:first-child{
    margin-left: 0;
    width: 50vw;
}
main .page-content #odemeasama .sepet-toplam table{
    margin: 1vw;
}
main .page-content #odemeasama .sepet-toplam table tr th{
    text-align: left;
    padding: 0.5vw 0;
    border-bottom: 0.1vw solid #e7eaf3;
}
main .page-content #odemeasama .sepet-toplam table tr td{
    text-align: right;
    padding: 0.5vw 0;
    border-bottom: 0.1vw solid #e7eaf3;
}
main .page-content #odemeasama form input[type="submit"]{
    width: 15vw;
    height: 55px;
    display: flex;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    font-size: 1vw;
    justify-content: center;
    border: none;
    outline: none;
    margin: 0;
    margin-left: auto;
}
main .page-content #odemeasama input[type="submit"]:hover{

    color: white;
    background-color: #333e48;
}
main .page-content #odemeasama #havale{
    width: 100%;
}
main .page-content #odemeasama #havale p{
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 1.25vw;
}
main .page-content #odemeasama #havale table{
    border-collapse: collapse;
    width: 100%;
    margin: 0;
}
main .page-content #odemeasama #havale tr{
    border-bottom:solid 1px #e8e8e8;

}
main .page-content #odemeasama #havale tr td, .havale tr th{
    padding: 0.2vw 1vw;
}
main .page-content #odemeasama #havale img{
    width: 2.5vw;
    padding: 0;
}
main .page-content #odemeasama div span{
    border-bottom: 0.1vw solid #e7eaf3;
}
main .page-content #odemeasama div span p{
    width: max-content;
    border-bottom: 0.1vw solid #fed700;
    margin: 0;
    padding: 0.5vw 1vw;
    font-size: 1.25vw;
    font-weight: 700;
}
main .page-content #favoriler{
    margin: auto;
}
main .page-content .favori-title{
    width: 100%;
    display: block;
    font-size: 2.5vw;
    text-align: center;
    margin-top:2vw;
}
main .page-content .favori-table{
    margin: 2vw auto;
    border-collapse: collapse;
}
main .page-content .favori-table tr{
    border-bottom:solid 1px #e8e8e8;
}
main .page-content .favori-table tr th{
    font-weight: normal;
    color: #7c7c7c;
    padding: .5vw 2vh;
}
main .page-content .favori-table tr td{
    width: max-content;
    padding: 0.5vw 5vh;
}
main .page-content .favori-table tr td:first-child{
    padding: 0.5vw 2vh;
}

main .page-content .favori-table tr td i{
    cursor: pointer;
}
main .page-content .favori-table tr td img{
    width: 5vw;
}
main .page-content .favori-table tr td button{
    cursor: pointer;
    padding: .5vw 2vh;
    border-radius:2vw;
    color:#888;
    width: max-content;

}
main .page-content .favori-table tr td button:hover{
    background-color: #333e48;
    color: white;
}

main .page-content #teklif-sepeti{
    width: 95%;
    margin: auto;
}
main .page-content #teklif-sepeti table{
    width: 100%;
    border-collapse: collapse;
    
}
main .page-content #teklif-sepeti tr:last-child{
    border-bottom:solid 1px #e8e8e8;
}
main .page-content #teklif-sepeti table th{
    font-weight: normal;
    font-size: small;
    color: #7c7c7c;
    padding: 0.5vw 2vh;
    text-align: center;
   
}

main .page-content #teklif-sepeti tr{
    padding: 0.5vw 2vh;
    text-align: center;
}

main .page-content #teklif-sepeti td{
    width: max-content;
    margin: auto; 
    padding: 0.5vw 2vh;
    text-align: center;
}
main .page-content #teklif-sepeti .teklif-sepet i{
    cursor: pointer;
}
main .page-content #teklif-sepeti td:nth-child(3){
    width: 15vw;
}
main .page-content #teklif-sepeti td img{
    width: 5vw;
    border: 0.1vw solid #e7eaf3;
}
main .page-content #teklif-sepeti .teklif-fiyat-input{
    width: 100%;
    min-height: 5vh;
    border: 0.1rem solid #c0bebe;
    height: min-content;
    border-radius: 3rem;
    display: flex;
    flex-direction: row;
    margin: auto;
}
main .page-content #teklif-sepeti .teklif-fiyat-input input{
    width: 5vw;
    border: none;
    outline: none;
    text-align: center;
    border-radius: 2rem;
}
main .page-content #teklif-sepeti .teklif-fiyat-input p{
    display: flex;
    height: 100%;
    margin: auto;
    margin-left: 0.75vw;
    color: #334141;
}
main .page-content #teklif-sepeti .adetinput{
    border: 0.1rem solid #c0bebe;
    min-height: 5vh;
    height: min-content;
    border-radius: 3rem;
    display: flex;
    flex-direction: row;
    margin: auto;
    text-align: center;
}
main .page-content #teklif-sepeti .adetinput input{
    width: 3vw;
    border: none;
    outline: none;
    text-align: center;
    border-top-left-radius: 2vw;
    border-bottom-left-radius: 2vw;
}
main .page-content #teklif-sepeti .adetinput div{
    width: min-content;
    font-size: 1vw;
    display: flex;
    flex-direction: row;
    margin: auto;
}
main .page-content #teklif-sepeti .adetinput div i{
    margin: auto 0.5vw;
    color: #c0bebe;
}
main .page-content #teklif-sepeti .adetinput div i:hover{
    color: black;
}
main .page-content #teklif-sepeti .teklif-sepet-toplamlar{
    width: 49%;
    margin: 2vw 0;
    margin-left: auto;
}
main .page-content #teklif-sepeti .teklif-sepet-toplamlar tr{
    border-bottom:solid 1px #e8e8e8;
}
main .page-content #teklif-sepeti .teklif-sepet-toplamlar tr:last-child{
    border: none;
}
main .page-content #teklif-sepeti .teklif-sepet-toplamlar th{
    text-align: left;
    font-weight: bold;
    color: black;
    font-size: 1vw;
    padding: 1vw 2vh;
}

main .page-content #teklif-sepeti .teklif-sepet-toplamlar td{
    text-align: right;
    font-size: 1vw;
    padding: 1vw 2vh;
}
main .page-content #teklif-sepeti .teklif-olustur{
    width: 49%;
    padding: 1vw;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    font-size: 1vw;
    display: flex;
    justify-content: center;
    margin: 1vw 0;
    margin-left: auto;
}
main .page-content #teklif-sepeti .teklif-olustur:hover{
    color: white;
    background-color: #333e48;
}
main .page-content #teklif-sepeti .teklif-button{
    width: 100%;
    display: flex;
    flex-direction: row;
}

main .page-content #teklif-sepeti .teklif-button a{
    width: 49%;
}
main .page-content #teklif-sepeti .teklif-yeni-urun{
    width: 100%;
    padding: 1vw;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    font-size: 1vw;
    display: flex;
    justify-content: center;
    margin: 1vw 0;
    text-align: center;
}
main .page-content #teklif-sepeti .teklif-yeni-urun:hover{
    color: white;
    background-color: #333e48;
}
main .page-content #teklif-sepeti .teklif-liste-disi{
    width: 49%;
    padding: 1vw;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    font-size: 1vw;
    display: flex;
    justify-content: center;
    margin: 1vw 0;
    margin-left: auto;
    text-align: center;
}
main .page-content #teklif-sepeti .teklif-liste-disi:hover{
    color: white;
    background-color: #333e48;
}
main .page-content #teklif-sepeti .teklif-temizle{
    width: 100%;
    padding: 1vw;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    font-size: 1vw;
    display: block;
    text-align: center;
    margin: 1vw 0;
}
main .page-content #teklif-sepeti .teklif-temizle:hover{
    color: white;
    background-color: #333e48;
}

main .teklifolustur{
    width: 100vw;
    min-height: 100vh;
    background-color: #fed700;
    display: flex;
    flex-direction: column;
    position: relative;
}
.mab{
    margin: auto;
    margin-bottom: 0;
}
.mau{
    margin: 0 auto 1vh;
}
main .teklifolustur h1{
    width: 70%;
    padding: 0;
    font-size: 3rem;
    font-weight: 500;
    color: #333e48;
    display: flex;
    flex-direction: column;
    position: relative;
}
main .teklifolustur h1 span{
    width: 100%;
    position: relative;
}
main .teklifolustur .kursec{
    display: flex;
    width: 70%;
    margin: auto;
    margin-top: 5vh;
}
main .teklifolustur .kursec button{
    background-color: white;
    padding: 1vw;
    border-radius: 1.5vw;
    font-weight: 600;
    margin: 0 1vh;
    font-size: 1rem;
}
main .teklifolustur .kursec button:hover{
    background-color: #eeeded;
}
main .teklifolustur .teklifkaydet{
    margin: auto;    
}
main .teklifolustur .teklifkaydet input{
    background-color: white;
    width: 16.8cm;
    padding: 0.75vw 1vw;
    border-radius: 2vw;
    font-weight: 600;
    margin: auto;
    font-size: 1.5rem;
    border: none;
    outline: none;
}
main .teklifolustur .teklifkaydet input:hover{
    background-color: #eeeded;
}
@keyframes animate1
{
    0% {background-color:white; width:100%; margin-right: 0%;}
    50% {background-color:white; width: 50%; margin-right: 25%;}   
    100% {background-color:white; width: 0; margin-right: 0%;  opacity: 0.75;}  
}
main .teklifolustur h1 span .animate{
        width: 50%;
        height: 100%;
        animation-name: animate1;
        animation-duration: 1s;
        animation-timing-function: linear;
        position: absolute;
        right: 0;
}
main .teklifolustur h1 span:nth-child(2) .animate{
    width: 50%;
    height: 100%;
    animation-name: animate1;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 200ms;
    position: absolute;
    right: 0;
}

main #teklifurun{
    width: 70%;
    margin: auto;
    margin-top: 1vh;
}
main #teklifurun table{
    width: 100%;
    border-collapse: collapse;
    background-color: white;

}
main #teklifurun tr:last-child{
    border-bottom:solid 1px #e8e8e8;
}
main #teklifurun table th{
    font-weight: normal;
    font-size: small;
    color: #7c7c7c;
    padding: 0.5vw 2vh;
    text-align: center;
   
}

main #teklifurun tr{
    padding: 0.5vw 2vh;
    text-align: center;
}

main #teklifurun td{
    width: max-content;
    margin: auto; 
    padding: 0.5vw 2vh;
    text-align: center;
}
main #teklifurun .teklif-sepet i{
    cursor: pointer;
}
main #teklifurun td:nth-child(3){
    width: 15vw;
}
main #teklifurun td img{
    width: 5vw;
    border: 0.1vw solid #e7eaf3;
}
main #teklifurun .teklif-fiyat-input{
    width: 100%;
    min-height: 5vh;
    border: 0.1rem solid #c0bebe;
    height: min-content;
    border-radius: 3rem;
    display: flex;
    flex-direction: row;
    margin: auto;
}
main #teklifurun .teklif-fiyat-input input{
    width: 5vw;
    border: none;
    outline: none;
    text-align: center;
    border-radius: 2rem;
}
main #teklifurun .teklif-fiyat-input p{
    display: flex;
    height: 100%;
    margin: auto;
    margin-left: 0.75vw;
    color: #334141;
}
main #teklifurun .adetinput{
    border: 0.1rem solid #c0bebe;
    min-height: 5vh;
    height: min-content;
    border-radius: 3rem;
    display: flex;
    flex-direction: row;
    margin: auto;
    text-align: center;
}
main #teklifurun .adetinput input{
    width: 3vw;
    border: none;
    outline: none;
    text-align: center;
    border-top-left-radius: 2vw;
    border-bottom-left-radius: 2vw;
}
main #teklifurun .adetinput div{
    width: min-content;
    font-size: 1vw;
    display: flex;
    flex-direction: row;
    margin: auto;
}
main #teklifurun .adetinput div i{
    margin: auto 0.5vw;
    color: #c0bebe;
}
main #teklifurun .adetinput div i:hover{
    color: black;
}
main #teklifurun .teklif-sepet-toplamlar{
    width: 49%;
    margin: 2vw 0;
    margin-left: auto;
}
main #teklifurun .teklif-sepet-toplamlar tr{
    border-bottom:solid 1px #e8e8e8;
}
main #teklifurun .teklif-sepet-toplamlar tr:last-child{
    border: none;
}
main #teklifurun .teklif-sepet-toplamlar th{
    text-align: left;
    font-weight: bold;
    color: black;
    font-size: 1vw;
    padding: 1vw 2vh;
}

main #teklifurun .teklif-sepet-toplamlar td{
    text-align: right;
    font-size: 1vw;
    padding: 1vw 2vh;
}
main .teklifolustur .teklifurunbutton{
    display: flex;
    width: 70%;
    margin: 0;
    margin-top: 5vh;
}
main .teklifolustur .teklifurunbutton button{
    background-color: white;
    padding: 1vw;
    border-radius: 1.5vw;
    font-weight: 600;
    margin: 0 1vh;
    font-size: 1rem;
}
main .teklifolustur .teklifurunbutton button:hover{
    background-color: #eeeded;
}
main .teklifolustur .teklifbilgi{
    width: 70%;
    margin: auto;
    margin-top: 0;
}
main .teklifolustur .teklifbilgi form{
    width: 100%;
    padding: 1vw 2vw;
    background-color: white;
    color: #333e48;
}
main .teklifolustur .teklifbilgi form span{
    display: flex;
    font-weight: 600;
    padding: 0.5vw 0;
    margin-bottom: 0.25vw;
}
main .teklifolustur .teklifbilgi form input[type=number]{
    width: 15vw;
    border: 1px solid #c0bebe;
    border-radius: 1.5vw;
    padding: 0.75vw;
    outline: none;
    margin-bottom: 0.5vw;
    margin-right: 0.5vw;
}
main .teklifolustur .teklifbilgi form .musteribilgiler{
    width: 45vw;
    display: flex;
    justify-content: space-between;
    margin: 1vw;
}
main .teklifolustur .teklifbilgi form .musteribilgiler p{
    width: 10vw;
    display: flex;
    margin: auto;
    margin-left: 0;
}
main .teklifolustur .teklifbilgi form .musteribilgiler input{
    width: 30vw;
    border: 1px solid #c0bebe;
    border-radius: 1.5vw;
    padding: 0.75vw;
    margin: 0;
    outline: none;
}
main .teklifolustur .teklifbilgi ul{
    list-style-type: "*";
    padding: 0.5vh 1vw;
}
main .teklifolustur .teklifbilgi ul li{
    padding: 0.5vh;
}
main .teklifolustur .teklifbilgi .aciklamaekle{
    width: 100%;
    display: flex;
}
main .teklifolustur .teklifbilgi .aciklamaekle p{
    width: 15vw;
}
main .teklifolustur .teklifbilgi .aciklamaekle input{
    width: 40vw;
    border: 1px solid #c0bebe;
    border-radius: 1.5vw;
    padding: 0.75vw;
    outline: none;
}
main .teklifolustur .teklifbilgi .aciklamaekle .aciklamasil{
    width: 5vw;
    background-color: #de4437;
    color: white;
    padding: 0.75vw;
    border-radius: 1.5vw;
    font-weight: bold;
    text-align: center;
    margin: 0 1vw;
    cursor: pointer;
}

main .teklifolustur .teklifbilgi .aciklama-ekle{
    width: max-content;
    padding: 1vw;
    background-color: white;
    color: black;
    font-size: 1vw;
    font-weight: 500;
    margin-left: 16vw;
    cursor: pointer;
}
main .teklifolustur .teklifbilgi input[type=submit]{
    width: 100%;
    padding: 1vw;
    margin: auto;
    background-color: #fed700;
    font-weight: 600;
    border-radius: 3vw;
    margin-left: auto;
    font-size: 1vw;
    border: none;
    outline: none;
}
main .teklifolustur .teklifbilgi input[type=submit]:hover{
    color: white;
    background-color: #555;
}

/* Yazdırma */
.teklifonizle{
    background-color: white;
    width: 210mm;
    height: 297mm;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.teklifonizle .header{
    width: 100%;
}
.teklifonizle .header .cizgi{
    width: 90%;
    margin: auto;
    border-bottom: 2px solid #7c7c7c;
    display: flex;
    color: #7c7c7c;
}
.teklifonizle .header .cizgi p{
    font-weight: 600;
    padding: 0 1vw;
    margin: 1vh 0;
    margin-left: auto;
}
.teklifonizle .header .firmalar{
    width: 90%;
    margin: 1vw 5%;
}
.teklifonizle .header .firmalar .bayi{
    width: 100%;
    margin: auto;
    display: flex;
}
.teklifonizle .header .firmalar .bayi .bayiinfo{
    width: 35%;
    padding: 1vh;
}
.teklifonizle .header .firmalar .bayi .bayiinfo p{
    margin: 1vh 0;
    font-weight: 600;
}
.teklifonizle .header .firmalar .bayi .bayiinfo table{
    width: 100%;
    text-align: left;
    margin: 1vh 0;
    font-size: small;
}
.teklifonizle .header .firmalar .bayi .logo{
    text-align: center;
    width: 30%;
    display: flex;
}
.teklifonizle .header .firmalar .bayi img{
    width: 75%;
    margin: auto;
}
.teklifonizle .header .firmalar .bayi .teklifinfo{
    width: 35%;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 2vh;
}
.teklifonizle .header .firmalar .bayi .teklifinfo span{
    width: 100%;
    text-align: right;
    font-size: small;
}
.teklifonizle .header .firmalar .musteri{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.teklifonizle .header .firmalar .musteri p{
    width: 100%;
   text-align: center;
   padding: 1vw;
   font-weight: 600;
   border: 2px solid #7c7c7c;
   border-radius: 2vw;
}
.teklifonizle .body{
    width: 90%;
    height: 100%;
    margin-left: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.teklifonizle .body .urunler table{
    border-collapse: collapse;
    text-align: center;
    font-size: smaller;
}
.teklifonizle .body .urunler table img{
    width: 3vw;
    border: 1px solid #e8e8e8;
}
.teklifonizle .body .urunler table tr th, .teklifonizle .body .urunler table tr td{
    padding: 0 1vw;
}
.teklifonizle .body .cizgi{
    width: 100%;
    border-bottom: 3px solid #7c7c7c;
    display: flex;
    color: black;
    margin-bottom: 1vh;
    font-size: larger;
}
.teklifonizle .body .cizgi p{
    font-weight: 600;
    padding: 0 0.5vw;
    margin: 1vh 0;
}
.teklifonizle .body ul{
    list-style-type: "*";
    padding: 0 1vw;
}
.teklifonizle .body ul li{
    padding: 0.25vh 0.25vw;
    font-size: small;
}
.teklifonizle .footer{
    width: 90%;
    margin-left: 5%;
    border-top: 2px solid #7c7c7c;
    display: flex;
    flex-direction: row;
}
.teklifonizle .footer span{
    display: flex;
    flex-direction: column;
    text-align: right;
    margin: auto;
   width: 33%;
   padding: 1vh;
}
.teklifonizle .footer span:first-child{
    margin-left: 0;
    text-align: left;
}
.teklifonizle .footer span:last-child{
    margin-right: 0;
}
.teklifonizle .footer span img{
    width: 50%;
    margin: auto;
}
.teklifonizle .footer span p{
    margin: 0.25vh;
    font-size: smaller;
}
#hesabim{
    width: 100%;
    display: flex;
    flex-direction: row;
}
#hesabim .nav{
    width: 18%;
    height: max-content;
    margin: 1vw 0;
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
    color: #7c7c7c;
    padding-bottom: 1vh;
}
#hesabim .nav li{
    width: 90%;
    margin: auto;
    padding: 1vh 1vw; 
}
#hesabim .nav li:hover{
    background-color: rgba(151, 164, 175, 0.1);
}
#hesabim .nav p{
    width: 90%;
    margin: auto;
    font-size: large;
    padding: 2vh 1vh ;
    padding-bottom: 1vh;
    border-bottom: 1px solid #e8e8e8;
    color: #334141;
}
#hesabim .siparisler{
    width: 100%;
    margin: 0 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1vw;
}
#hesabim .siparisler table{
    width: 90%;
    margin: auto;
    border-collapse: collapse;
    text-align: center;
}
#hesabim .siparisler table tr{
    border-radius: 1px;
}

#hesabim .siparisler table thead tr th{
    font-weight: 600;
    padding: 1vw;
    border-top: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    border-radius: 1px;
}
#hesabim .siparisler table thead tr th:last-child{
    width: 30%;
}
#hesabim .siparisler table tbody tr td{
    padding: 1vw;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.75rem;

}
#hesabim .siparisler table tbody tr:hover{
    background-color: #f3f2f2;
}
#hesabim .siparisler table button{
    background-color: #fed700;
    border-radius: 1vw;
    padding: 1vh 1vw;
    font-weight: 600;
    margin-right: 1vh;
    color: #000;
    cursor: pointer;
}
#hesabim .siparisler table button:hover{
    color: white;
    background-color: #555;
}

#hesabim .teklifler{
    width: 100%;
    margin: 0 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1vw;
}
#hesabim .teklifler table{
    width: 90%;
    margin: auto;
    border-collapse: collapse;
    text-align: center;
}
#hesabim .teklifler table tr{
    border-radius: 1px;
}
#hesabim .teklifler table thead tr th{
    font-weight: 600;
    border-top: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    border-radius: 1px;
}
#hesabim .teklifler table tbody tr td{
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.75rem;
    height: 5rem;
}
#hesabim .teklifler table tbody tr:hover{
    background-color: #f3f2f2;
}
#hesabim .teklifler table button{
    background-color: #fed700;
    border-radius: 1vw;
    font-weight: 600;
    color: #000;
    cursor: pointer;
}
#hesabim .teklifler table button:hover{
    color: white;
    background-color: #555;
}
#hesabim .teklifler .teklifayarlari .adresform{
    width: 90%;
    margin: 1vw auto ;
    display: flex;
}
#hesabim .teklifler .teklifayarlari .adresform div{
    width: 60%;
    display: flex;
    flex-direction: column;
    padding: 1vh;
    justify-content: center;
}
#hesabim .teklifler .teklifayarlari .adresform div img {
    max-width: 75%;
    max-height: 40%;
    display: flex;
    width: auto;
    height: auto;
    margin: 1vw auto;
    object-fit: contain; 
}
#hesabim .teklifler .teklifayarlari .adresform label{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    padding: 0 1vh;
    outline: none;
    margin-top: 2vw;
    font-weight: bold;
}
#hesabim .teklifler .teklifayarlari .adresform input{
    width: 90%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    margin: 0 auto;
    padding: 0.5vw 1vw;
    border: 1px solid #e8e8e8;
    background-color: #fed700;
    outline: none;
}
#hesabim .teklifler .teklifayarlari .adresform .file{
    width: 100%;
    text-align: center;
}
#hesabim .teklifler .teklifayarlari .adresform .file span{
    display: block;
    width: 100%;
    border-radius: 5vw;
    color: black;
    background-color: #fed700;
    border: none;
    outline: none;
    padding: 2vh 0;
    font-weight: bold;
    font-size:1vw;
    cursor: pointer;
}
#hesabim .teklifler .teklifayarlari .adresform .file span:hover{
    color: white;
    background-color: #555;
}
#hesabim .teklifler .teklifayarlari .adresform input[type=file]{
    display: none;
}
#hesabim .teklifler .teklifayarlari .adresform input[type=submit]{
    color: #333e48;
    background-color: #fed700;
    border: none;
    outline: none;
    margin: 1vw auto;
    font-weight: bold;
    font-size:1vw;
    cursor: pointer;
}
#hesabim .teklifler .teklifayarlari .adresform input[type=submit]:hover{
    color: white;
    background-color: #555;
}
#hesabim .teklifler .teklifayarlari .adresform div:first-child{
    width: 40%;
    border-right: 1px solid #e8e8e8;
}
#hesabim .adresler{
    width: 100%;
    margin: 0 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1vw;
}
#hesabim .adresler .teslimat, #hesabim .adresler .fatura{
    width: 50%;
    text-align: center;
    padding: 1vw;

}
#hesabim .adresler .adresekle{
    width: 90%;
    margin: auto;
}
#hesabim .adresler .adresekle div{
    width: 100%;
}
#hesabim .adresbaslik{
    width: 100%;
    margin: 1vw 0;
    margin-top: 1vw;
    display: flex;
    border-bottom: 1px solid #e8e8e8;
}
#hesabim .adresbaslik p{
    padding: 1vh 2vw;
    margin: 0;
    font-size: 1vw;
    font-weight: bold;
    border-bottom: #fed700 2px solid;
}
#hesabim .adresler .adresekle form{
    width: 100%;
}
#hesabim .adresler .adresekle form input{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    margin: 0;
    padding: 0 1vw;
    border: 1px solid #e8e8e8;
    outline: none;
}
#hesabim .adresler .adresekle form input[type='submit']{
    color: #333e48;
    background-color: #fed700;
    border: none;
    outline: none;
    margin: 1vw 0;
    font-weight: bold;
    font-size:1vw;
    cursor: pointer;
}
#hesabim .adresler .adresekle form input[type='submit']:hover{
    color: white;
    background-color: #555;
}
#hesabim .adresler .adresekle form select{
    width: 100%;
    height: 5vh;
    border-radius: 5vw;
    height: 5vh;
    display: flex;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    outline: none;
    padding: 0 1vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
        background-image:
        linear-gradient(135deg, transparent 90%, white 10%),
        linear-gradient(45deg, white 90%, transparent 10%),
        linear-gradient(to right, #fed700, #fed700);
}
#hesabim .adresler .adresekle form label{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    padding: 0 1vh;
    outline: none;
    margin-top: 1vw;
    font-weight: bold;
}
#hesabim .adresler .adresekle form label i{
    color: red;
    font-weight: bolder;
    font-size: 1.2vw;
    font-style: normal;
}
#hesabim .adresler .adresekle .adres2{
    display: flex;
}
#hesabim .adresler .adresekle .adres2 div:first-child{
    margin-right: 0.5vw;
}
#hesabim .adresler .adresekle .adres2 div:nth-child(2){
    margin-left: 0.5vw;
}
#hesabim .adresler .adres{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
    margin: auto;
}
#hesabim .adresler .adres div{
    box-shadow: 0 1px 5px rgba(151, 164, 175, 0.5);
    padding: 1vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#hesabim .adresler .adres div button{
    width: 40%;
    color: #333e48;
    background-color: #fed700;
    border: none;
    outline: none;
    margin: 1vw 1vw 1vh auto;
    font-weight: bold;
    font-size:1vw;
    border-radius: 5vw;
    padding: 1vh;
    cursor: pointer;
}
#hesabim .adresler .adres div button:hover{
    color: white;
    background-color: #555;
}
#hesabim .ayarlar{
    width: 100%;
    margin: 0 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1vw;
}
#hesabim .ayarlar .kullanicilar{
    width: 100%;
}
#hesabim .ayarlar .kullanicilar table{
    width: 90%;
    margin: auto;
    text-align: left;
    border-collapse: collapse;
}
#hesabim .ayarlar .kullanicilar table tr{
    border-radius: 1px;
}

#hesabim .ayarlar .kullanicilar table thead tr th{
    font-weight: 600;
    padding: 1vw;
    border-top: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    border-radius: 1px;
}
#hesabim .ayarlar .kullanicilar table thead tr th:last-child{
    width: 25%;
}
#hesabim .ayarlar .kullanicilar table tbody tr td{
    padding: 1vw;
    border-bottom: 1px solid #e8e8e8;
}
#hesabim .ayarlar .kullanicilar table tbody tr:hover{
    background-color: #f3f2f2;
}
#hesabim .ayarlar .kullanicilar table button{
    background-color: #fed700;
    border-radius: 1vw;
    padding: 1vh 1vw;
    font-weight: 600;
    margin-right: 1vh;
    color: #000;
}
#hesabim .ayarlar .kullanicilar table button:hover{
    color: white;
    background-color: #555;
}

#hesabim .teklifler{
    width: 100%;
    margin: 0 1vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 1vw;
}
#hesabim .teklifler table{
    width: 90%;
    margin: auto;
    text-align: left;
    border-collapse: collapse;
    text-align: center;
}
#hesabim .teklifler table tr{
    border-radius: 1px;
}
#hesabim .teklifler table thead tr th{
    font-weight: 600;
    padding: 1vw;
    border-top: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    border-radius: 1px;
}

#hesabim .teklifler table tbody tr td{
    padding: 1vw;
    border-bottom: 1px solid #e8e8e8;

}
#hesabim .teklifler table tbody tr:hover{
    background-color: #f3f2f2;
}
#hesabim .teklifler table button{
    background-color: #fed700;
    border-radius: 1vw;
    padding: 1vh 1vw;
    font-weight: 600;
    margin-right: 1vh;
    color: #000;
}
#hesabim .teklifler table button:hover{
    color: white;
    background-color: #555;

}
#hesabim .ayarlar{
    width: 100%;
}
#hesabim .ayarlar .firmaedit form{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
#hesabim .ayarlar .firmaedit form div{
    width: 50%;
    padding: 0 2vw;
}
#hesabim .ayarlar .firmaedit form div:first-child{
    border-right: 1px solid #e8e8e8;
}
#hesabim .ayarlar .firmaedit form input{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    margin: 0;
    padding: 0 1vw;
    border: 1px solid #e8e8e8;
    outline: none;
}
#hesabim .ayarlar .firmaedit form input[type='submit']{
    color: #333e48;
    background-color: #fed700;
    border: none;
    outline: none;
    margin: 1vw 0;
    font-weight: bold;
    font-size:1vw;
    cursor: pointer;
}
#hesabim .ayarlar .firmaedit form input[type='submit']:hover{
    color: white;
    background-color: #555;
}
#hesabim .ayarlar .firmaedit form select{
    width: 100%;
    height: 5vh;
    border-radius: 5vw;
    height: 5vh;
    display: flex;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    outline: none;
    padding: 0 1vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
        background-image:
        linear-gradient(135deg, transparent 90%, white 10%),
        linear-gradient(45deg, white 90%, transparent 10%),
        linear-gradient(to right, #fed700, #fed700);
}
#hesabim .ayarlar .firmaedit form label{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    padding: 0 1vh;
    outline: none;
    margin-top: 1vw;
    font-weight: bold;
}
#hesabim .ayarlar .firmaedit form label i{
    color: red;
    font-weight: bolder;
    font-size: 1.2vw;
    font-style: normal;
}
#hesabim .ayarlar .yenikullanici{
    width: 90%;
    margin: auto;
}
#hesabim .ayarlar .yenikullanici form{
    display: flex;
    flex-direction: column;
}
#hesabim .ayarlar .yenikullanici form i{
    color: red;
    font-weight: bolder;
    font-size: 1.2vw;
    font-style: normal;
}
#hesabim .ayarlar .yenikullanici form label{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    padding: 0 1vh;
    outline: none;
    margin-top: 1vw;
    font-weight: bold;
}
#hesabim .ayarlar .yenikullanici form input{
    width: 100%;
    display: block;
    border-radius: 5vw;
    height: 5vh;
    margin: 0;
    padding: 0 1vw;
    border: 1px solid #e8e8e8;
    outline: none;
}
#hesabim .ayarlar .yenikullanici form input[type='submit']{
    color: #333e48;
    background-color: #fed700;
    border: none;
    outline: none;
    margin: 1vw 0;
    font-weight: bold;
    font-size:1vw;
    cursor: pointer;
}
#hesabim .ayarlar .yenikullanici form input[type='submit']:hover{
    color: white;
    background-color: #555;
}
#hesabim .ayarlar .yenikullanici span{
    padding: 1vw 1vh;
    padding-bottom: 0;
}
#listedisi{
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 30vw;
    box-shadow: 0 1px 10px rgba(151, 164, 175, 0.1);
    background-color: white;
    border-radius: 1vw;
    z-index: 3;
    padding: 1vw;
}
#listedisi #closeteklifdisi{
    position: absolute;
    top: 0;
    right: 0;
    padding: 1vw;
    font-size: 2vw;
    color: #888;
    cursor: pointer;
}

#listedisi form{
    width: 90%;
    display: flex;
    flex-direction: column;
    margin: 1vw auto;
}
#listedisi form .teklifdisiekle{
    width: 100%;
    height: min-content;
    display: flex;
    flex-direction: row;
    padding: 0.5vw;
}
#listedisi form .teklifdisiekle input, #listedisi form .teklifdisiekle textarea{
    width: 15vw;
    max-width: 15vw;
    min-width: 10vw;
    margin: auto;
    border: none;
    outline: none;
    padding: 0.5vw 1vw;
    border: 0.1rem solid #c0bebe;
    border-radius: 2rem;
}
#listedisi form .teklifdisiekle span{
    width: 5vw;
    margin: auto;
}
#listedisi form .teklifdisiekle input[type=radio]{
    width: max-content;
    width: 100%;
    min-width: 0vw;
}
#listedisi form .teklifdisiekle p{
    color: #888;
    width: 7.5vw;
    padding: 0;
    margin: auto;
    text-align: left;
}
#listedisi .title{
    width: max-content;
    display: flex;
    margin: auto;
    padding: 0.5vw;
    font-weight: 600;
    font-size: 2rem;
    color: #555;
}
#listedisi .ikonset{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
    width: 15vw;
}
#listedisi .ikonset span{
    display: flex;
    
}
#listedisi .ikonset span input{
    display: flex;
}
#listedisi label img{
    width: 75%;
    display: flex;
    margin: auto;
}
#listedisi .info{
    width: 5vw;
    height: 5vw;
    border-radius: 5vw;
    text-align: center;
    border: 0.25rem solid #fed700;
    color: #fed700;
    font-size: 3rem;
    display: flex;
    margin: auto;

}
#listedisi .info i{
    display: flex;
    margin: auto;
}
#listedisi form input[type=submit]{
    background-color: #fed700;
    width: 100%;
    padding: 1vw;
    margin: 0.5vw 0;
    border-radius: 2vw;
    font-size: 2vh;
    font-weight: 600;
    cursor: pointer;
    border: none;
    outline: none;
}
#listedisi form input[type=submit]:hover{
    color: white;
    background-color: #555;
}
.bildirim{
    display: none;
    position: fixed;
    bottom: 10%;
    width: 100%;
    text-align: center;
}
.bildirim span{
    width: max-content;
    background-color: #7c7c7c;
    color: white;
    padding: 2vh 2vw;
    border-radius: 1vw;
}
/** Footer **/
footer{
    width: 100%;
    margin-top: 5vh;
    font-size: 10pt;
}
footer .content{
    width: 80%;
    margin: auto;
    display: flex;
}
footer .bulten{
    width: 100%;
    background-color: #fed700;
    padding: 1rem;
    display: flex;
}
footer .bulten .text{
    font-size: 1.5rem;
    letter-spacing: .1rem;
}
footer .bulten .text i{
    font-size: 2rem;
    margin-right: 1vh;
}
footer .bulten .text2{
    padding-top: 1.5vh;
    font-size: 1rem;
    margin-left: auto;
    letter-spacing: .1rem;
}
footer .bulten .mail{
    width: 25vw;
    margin-left: auto;
    border-radius: 25px;
    background-color: white;
}
footer .bulten .mail input[type=email]{
    width: 60%;
    height: 100%;
    border: none;
    margin-left: 20px;
}
footer .bulten .mail input:focus{
    outline: none;
}
footer .bulten .mail a input[type=submit]{
    float: right;
    padding: 0.5vw  1.5vw;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    color: white;
    background-color: #333e48;
    font-size: 1rem;
    border: none;
    outline:none;
    height: 100%;
}
footer .erisim{
    width: 100%;
    display: flex;
    padding: 5rem 1rem;
    background-color: #f8f8f8 !important;
}
footer .erisim li{
    display: inline-block;
    height: 100%;
}
footer .erisim .sirket{
    width: 25%;
}
footer .erisim .sirket .phones{
    margin-top: 3vh;
    font-size: 10pt;
    display: block;
    color: #7c7c7c;
}
footer .erisim .sirket .phones a{
    font-size: 15pt;
    color: black;
    display: block;
}
footer .erisim .sirket .phones i{
    margin-right: 2vw;
    float: left;
    font-size: 30pt;
    color: #fed700;
}
footer .iletisimbilgileri h3{
    margin-bottom: 0;
}
footer .icons{
    margin-top: 1vh;
}
footer .icons i{
    font-size: 20pt;
    padding: 1rem;
}
footer .icons i:hover{
    background-color: #333e48;
    border-radius: 50px;
    color: white;
}
footer .footerkategorilerparent{
    margin-left: auto;
}
footer .footerkategorilerparent h3{
    margin-top: 0;
    padding-left: .5rem;
}
footer .footerkategoriler{
    columns:2;
    margin: 0;
}
footer .footerkategoriler li{
    display: block;
    padding: .5rem;
}
footer .footerkurumsal{
    margin: 0;
    padding: 0;
}
footer .footerkurumsalparent{
    margin-left: auto;
    
}
footer .footerkurumsalparent h3{
    margin-top: 0;
    padding-left: .5rem;
}
footer .footerkurumsal li{
    display: block;
    padding: .5rem;
}