
/* BASIC */

html {


}

body {
  font-family:Arial;
  margin-bottom:30px;

  font-size: 10pt;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}



/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  padding: 15px 80px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px 40px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text],input[type=password] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

input[type=text]:focus,input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder,input[type=password]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}



/* OTHERS */

*:focus {
    outline: none;
}

#icon {
  width:60%;
}


.hero {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }

.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
   top: 0;
  width: 100%;

  position: absolute; }
  @media (max-width: 991.98px) {
    .site-navbar {
      padding-top: 3rem;
      padding-bottom: 3rem; } }
  .site-navbar .toggle-button {
    position: absolute;
    right: 0px; }
  .site-navbar .site-logo {
    margin: 0;
    padding: 0;
    font-size: 1rem; }
    .site-navbar .site-logo a {
      text-transform: uppercase;
      color: #000;
      font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }
    @media (max-width: 991.98px) {
      .site-navbar .site-logo {
        float: left;
        position: relative; } }
  .site-navbar .site-navigation.border-bottom {
    border-bottom: 1px solid white !important; }
  .site-navbar .site-navigation .site-menu {
    margin: 0;
    padding: 0;
    margin-bottom: 0; }
    .site-navbar .site-navigation .site-menu .active {
      color: #007bff !important; }
    .site-navbar .site-navigation .site-menu a {
      text-decoration: none !important;
      display: inline-block; }
    .site-navbar .site-navigation .site-menu > li {
      display: inline-block; }
      .site-navbar .site-navigation .site-menu > li > a {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px 0px;
        color: rgba(0, 0, 0, 0.7) !important;
        display: inline-block;
        text-decoration: none !important; }
        .site-navbar .site-navigation .site-menu > li > a:hover {
          color: #000 !important; }
      .site-navbar .site-navigation .site-menu > li.active > a {
        color: #000 !important; }
    .site-navbar .site-navigation .site-menu .has-children {
      position: relative; }
      .site-navbar .site-navigation .site-menu .has-children > a {
        position: relative;
        padding-right: 20px; }
        .site-navbar .site-navigation .site-menu .has-children > a:before {
          position: absolute;
          content: "\e313";
          font-size: 16px;
          top: 50%;
          right: 0;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
          font-family: 'icomoon'; }
      .site-navbar .site-navigation .site-menu .has-children .dropdown {
        visibility: hidden;
        opacity: 0;
        top: 100%;
        position: absolute;
        text-align: left;
        border-top: 2px solid #007bff;
        -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
        padding: 0px 0;
        margin-top: 20px;
        margin-left: 0px;
        background: #fff;
        -webkit-transition: 0.2s 0s;
        -o-transition: 0.2s 0s;
        transition: 0.2s 0s; }
        .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
          position: absolute; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
            display: none;
            bottom: 100%;
            left: 20%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
            border-color: rgba(136, 183, 213, 0);
            border-bottom-color: #fff;
            border-width: 10px;
            margin-left: -10px; }
        .site-navbar .site-navigation .site-menu .has-children .dropdown a {
          text-transform: none;
          letter-spacing: normal;
          -webkit-transition: 0s all;
          -o-transition: 0s all;
          transition: 0s all;
          color: #000 !important; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
            color: #007bff !important;
            background: #f8f9fa; }
        .site-navbar .site-navigation .site-menu .has-children .dropdown > li {
          list-style: none;
          padding: 0;
          margin: 0;
          min-width: 200px; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
            padding: 9px 20px;
            display: block; }
            .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a:hover {
              background: #f8f9fa;
              color: #ced4da; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
            content: "\e315";
            right: 20px; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
            left: 100%;
            top: 0; }
          .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
            background: #f8f9fa;
            color: #ced4da; }
      .site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
        color: #007bff; }
      .site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
        cursor: pointer; }
        .site-navbar .site-navigation .site-menu .has-children:hover > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
          -webkit-transition-delay: 0s;
          -o-transition-delay: 0s;
          transition-delay: 0s;
          margin-top: 0px;
          visibility: visible;
          opacity: 1; }

.site-mobile-menu {
  width: 300px;
  position: fixed;
  left: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out; }
  .offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%); }
  .site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
      float: right;
      margin-top: 8px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
        font-size: 30px;
        display: inline-block;
        padding-left: 10px;
        padding-right: 0px;
        line-height: 1;
        cursor: pointer;
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
          color: #ced4da; }
    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
      float: left;
      margin-top: 10px;
      margin-left: 0px; }
      .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
        display: inline-block;
        text-transform: uppercase; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
          max-width: 70px; }
        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
          text-decoration: none; }
  .site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 0 20px 20px 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px; }
  .site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative; }
    .site-mobile-menu .site-nav-wrap a {
      padding: 10px 20px;
      display: block;
      position: relative;
      color: #212529; }
      .site-mobile-menu .site-nav-wrap a:hover {
        color: #007bff; }
    .site-mobile-menu .site-nav-wrap li {
      position: relative;
      display: block; }
      .site-mobile-menu .site-nav-wrap li .nav-link.active {
        color: #007bff; }
      .site-mobile-menu .site-nav-wrap li.active > a {
        color: #007bff; }
    .site-mobile-menu .site-nav-wrap .arrow-collapse {
      position: absolute;
      right: 0px;
      top: 10px;
      z-index: 20;
      width: 36px;
      height: 36px;
      text-align: center;
      cursor: pointer;
      border-radius: 50%; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
        background: #f8f9fa; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
        font-size: 12px;
        z-index: 20;
        font-family: "icomoon";
        content: "\f078";
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease; }
      .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .site-mobile-menu .site-nav-wrap > li {
      display: block;
      position: relative;
      float: left;
      width: 100%; }
      .site-mobile-menu .site-nav-wrap > li > a {
        padding-left: 20px;
        font-size: 20px; }
      .site-mobile-menu .site-nav-wrap > li > ul {
        padding: 0;
        margin: 0;
        list-style: none; }
        .site-mobile-menu .site-nav-wrap > li > ul > li {
          display: block; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > a {
            padding-left: 40px;
            font-size: 16px; }
          .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
            padding: 0;
            margin: 0; }
            .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
              display: block; }
              .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                font-size: 16px;
                padding-left: 60px; }
    .site-mobile-menu .site-nav-wrap[data-class="social"] {
      float: left;
      width: 100%;
      margin-top: 30px;
      padding-bottom: 5em; }
      .site-mobile-menu .site-nav-wrap[data-class="social"] > li {
        width: auto; }
        .site-mobile-menu .site-nav-wrap[data-class="social"] > li:first-child a {
          padding-left: 15px !important; }

.sticky-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
  position: absolute;
  top: 0; }
  .sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease; }
  .sticky-wrapper .site-navbar {
    background: #fff; }
    .sticky-wrapper .site-navbar ul li a {
      color: rgba(0, 0, 0, 0.7) !important; }
      .sticky-wrapper .site-navbar ul li a.active {
        color: #000 !important; }
  .sticky-wrapper.is-sticky .site-navbar {
    background: #fff;
    -webkit-box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
    box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2); }
    .sticky-wrapper.is-sticky .site-navbar .site-logo a {
      color: #007bff; }
    .sticky-wrapper.is-sticky .site-navbar ul li a {
      color: #000 !important; }
      .sticky-wrapper.is-sticky .site-navbar ul li a.active {
        color: #007bff !important; }
  .sticky-wrapper .shrink {
    padding-top: 0px !important;
    padding-bottom: 0px !important; }
    @media (max-width: 991.98px) {
      .sticky-wrapper .shrink {
        padding-top: 30px !important;
        padding-bottom: 30px !important; } }
.lightbox-gallery{background-image: linear-gradient(#4A148C, #E53935);background-repeat: no-repeat;color: #000;overflow-x: hidden}.lightbox-gallery p{color:#fff}.lightbox-gallery h2{font-weight:bold;margin-bottom:40px;padding-top:40px;color:#fff}@media (max-width:767px){.lightbox-gallery h2{margin-bottom:25px;padding-top:25px;font-size:24px}}.lightbox-gallery .intro{font-size:16px;max-width:500px;margin:0 auto 40px}.lightbox-gallery .intro p{margin-bottom:0}.lightbox-gallery .photos{padding-bottom:20px}.lightbox-gallery .item{padding-bottom:30px}
.inputtext_bg{background:#ffffff !important; height:40px; text-align: left !important; padding-left:5px !important;}
.ust_bar_sol{
  padding-left:35px; padding-right:5px; background:#f6dade;
  padding-top:5px;
  padding-bottom:5px;

}
.ust_bar_sag{
  padding-left:5px; padding-right:5px; background:#ced8e0;

}
.urun_arama{
  width:55%; float:left;
}
.teklif_ozeti_buton{
  float:left;
margin-top:5px;
}
.taksit_secenekleri_buton{
  float:left;
  margin-lefT:15px;
  margin-top:5px;
}
.arama_sonuc_ana{
  background: #f2f5f7;
  padding:10px;
  width: 100%;
  border:1px solid #c3cfd9;
  margin-top:3px;
  position: absolute;
  z-index: 999;
}
.arama_sonuc_urun_satir{
  margin-top:10px;
  margin-bottom:10px;
}
.arama_stok_kodu{
  float:left;
  width: 6%;
  text-align: center;
  padding-top:25px;
}
.arama_image{
  float:left;
  width: 12%;
  text-align: center;
}
.arama_image img{
  border-radius: 5px;
}
.arama_urun_adi{
  float:left;
  width: 62%;
  padding-top:15px;
}
.arama_sepete_ekle{
  float:left;
  width: 20%;
  padding-top:15px;
}
.musteri_bilgileri_ana{
  border:1px solid #c3cfd9;
  margin-top:3px;
}
.musteri_bigileri_baslik{
  background: #f2f5f7;
  font-weight: bold;
  text-align: center;
  font-size:12pt;
  padding-top:5px;
  padding-bottom:5px;
  border-bottom:1px solid #c3cfd9;
}
.teslimat_adresi_ana{
  padding: 5px;
}
.teslimat_adresi_text{
  background:#fceab3;
  width:35%;
  float: left;
  font-size:10pt;
  font-weight:bold;
  text-align: center;
  margin-top:5px;
}
.teslimat_adresi_duzenle{
  float: right;
}
.teslimat_adresi_bilgiler{
  min-height: 100px;
}
.teslimat_adresi_musteri{
  font-weight: bold;
}
.teslimat_adresi_telefon{
  float: left;
  width: 50%;
}
.teslimat_adresi_email{
  float: left;
  width: 50%;
  text-align: right;
}
.teslimat_adresi_adres{}
.indirim_kodu_bilgileri_ana{
  padding: 4px;
}
.indirimKoduInput{background:white !important; height:40px; text-align:left !important; border:1px solid #c5ced6 !important; padding-left:5px !important; width:100% !important;}
.indirimKoduInput_form{margin:0px !important;background:white !important; height:40px; text-align:left !important; border:1px solid #c5ced6 !important; padding-left:5px !important; width:100% !important;}
.indirim_kodu_uygula_buton{
  width: 100%;
  margin-top:5px;
}
.ozel_indirim_secim_ana{}
.ozel_indirim_secim_text{ font-weight:bold; margin-bottom:3px;}
.ozel_indirim_secim_select{}
.odeme_bilgileri_ana{
  padding:5px;
}
.odeme_bilgileri_baslik{
  font-weight:bold;
  margin-top:5px;
}
.odeme_bilgileri_input{}
.odeme_bilgileri_sol{
  float: left;
  width: 50%;
  font-weight: bold;
  border-right: 1px solid #c3cfd9;
  border-bottom: 1px solid #c3cfd9;
  padding: 5px;
}
.odeme_bilgileri_sag{
  float: left;
  width: 50%;
  text-align: right;
  font-weight: bold;
  padding: 5px;
  border-bottom: 1px solid #c3cfd9;
}
.siparisi_tamamla_buton{
  width: 100%;
  margin-top:5px;
  margin-bottom:5px;
}
.sepet_list_ana{
  margin-top:4px;
  border:1px solid #c3cfd9;
}
.sepet_list_ana_baslik{
  background: #f2f5f7;
  border:1px solid #c3cfd9;
  font-size:13pt;
  text-align:center;
  font-weight: bold;
  padding: 3px;
}
.sepet_urun_satir_ana{
  padding:5px;
  min-height:500px;
}
.sepet_urun_satir{
  padding:5px;
  border:1px solid #c3cfd9;
  margin-top:5px;

}
.sepet_urun_satir_baslik{
  float:left;
  width: 80%;
  font-weight: bold;
}
.sepet_urun_satir_sil_buton{
  float:left;
  width: 20%;
}
.sepet_urun_satir_bilgiler{
  margin-top:10px;
}
.sepet_urun_satir_bilgiler_resim{
  float:left;
  width: 12%;
}
.sepet_urun_satir_bilgiler_resim img{
  border-radius:4px;
}
.sepet_urun_satir_bilgiler_eksi{
  float:left;
  width:7%;
  font-weight:bold;
  font-size:35pt;
  text-align:center;
  margin-top:20px;
  cursor:pointer;
}
.sepet_urun_satir_bilgiler_adet{
  float:left;
  width:7%;
  font-weight:bold;
  font-size:40pt;
  text-align:center;
  margin-top:1px;
}
.sepet_urun_satir_bilgiler_arti{
  float:left;
  width: 7%;
  font-weight:bold;
  font-size:35pt;
  text-align:center;
  margin-top:20px;
  cursor:pointer;
}
.sepet_urun_satir_koli_bilgileri{
  float:left;
  width:33%;
  margin-left: 10px;
  margin-top:10px;
}
.sepet_urun_satir_koli_bilgileri_text{
  float:left;
  width:33%;
  border:1px solid #9eadba;
  text-align: center;
  padding: 5px;
}
.sepet_satir_bilgilendirme{
  float:left;
  width:7%;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size:25pt;
  padding-top:25px;
  color:#4b5c6b;
}
.sepet_satir_fiyati{
  float:left;
  width:25%;
  text-align: right;
  font-weight:bold;
  font-size:22pt;
  padding-top:15px;
}
.sepet_ozeti_ana{

}
.sepet_ozeti_ana_baslik{
  background: #f2f5f7;
  border:1px solid #c3cfd9;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  font-size:12pt;
}
.sepet_ozeti_ana_satir{
  border:1px solid #c3cfd9;
}
.sepet_ozeti_satir_text{
  float: left;
  width: 25%;
  padding: 5px;
  text-align: center;
  border:1px solid #c3cfd9;
  font-weight: bold;
}
.tablo_td_siparis_bilgileri{
  padding: 5px !important;
  text-align: center;
  border:1px solid #c3cfd9 !important;
  font-weight: bold;
  font-size:10pt;
}
.siparis_donemi_text{
  float: left;
  margin-top:14px;
  font-weight: bold;
  width: 10%;
  padding-left: 20px;
}
.siparis_donemi_yil{
  float:left;
  margin-top:5px;
  width: 10%;

}
.siparis_donemi_ay{
  float: left;
  margin-top:5px;
  width:9%;
  margin-left:10px;
}
.teslimat_form_ana{

}
#loading{
  position: absolute;
  z-index: 99999;
  background:#ccc;
  opacity: 0.4;
  text-align: center;
  height: 100%;
  width: 100%;
}
.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  width: 120px;
  height: 120px;
  margin:0 auto 0 auto;
  margin-top:20%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*ranimax*/
.siparis_bilgi_ana_form_sol{
	width:49%;
	float:left;
	min-height:200px;
	background:#ffffff;
	border-radius:10px;
}
.siparis_bilgi_ana_form_sag{
	width:49%;
	float:right;
	min-height:200px;
	background:#ffffff;
	border-radius:10px;
}
.siparis_bilgi_form_baslik{
	background:#000000;
	color:#ffffff;
	text-align:center;
	padding-bottom:3px;
	padding-top:3px;
	border-top-left-radius:10px;
	border-top-right-radius:10px;
}
.siparis_bilgi_form{
	width:100%;
	padding:3px;
}
.siparis_bilgi_form_sol{
	float:left;
	width:30%;
	text-align:left;
	padding-top:6px;
	margin-bottom:4px;
 }
.siparis_bilgi_form_sag{
	float:right;
	width:69%;
	text-align:left;
	margin-bottom:4px;
}
.siparis_bilgi_form_sag input{
	border:#000000 1px solid;
}
.siparis_bilgi_form_sag select{
	border:#000000 1px solid;
}
.width_3{width:3% !important;}
.width_4{width:4% !important;}
.width_5{width:5% !important;}
.width_6{width:6% !important;}
.width_7{width:7% !important;}
.width_8{width:8% !important;}
.width_9{width:9% !important;}
.width_10{width:10% !important;}
.width_11{width:11% !important;}
.width_12{width:12% !important;}
.width_15{width:15% !important;}
.width_14{width:14% !important;}
.width_13{width:13% !important;}
.width_16{width:16% !important;}

.width_20{width:20% !important;}
.width_21{width:21% !important;}
.width_22{width:22% !important;}
.width_23{width:23% !important;}
.width_24{width:24% !important;}
.width_25{width:25% !important;}
.width_30{width:30% !important;}
.width_35{width:35% !important;}
.width_40{width:40% !important;}
.width_45{width:45% !important;}
.width_50{width:50% !important;}
.width_51{width:51% !important;}
.width_52{width:52% !important;}
.width_53{width:53% !important;}
.width_54{width:54% !important;}
.width_55{width:55% !important;}
.width_60{width:60% !important;}
.width_61{width:61% !important;}
.width_62{width:62% !important;}
.width_63{width:63% !important;}
.width_64{width:64% !important;}
.width_65{width:65% !important;}
.width_66{width:66% !important;}
.width_67{width:67% !important;}
.width_68{width:68% !important;}
.width_69{width:69% !important;}
.width_70{width:70% !important;}
.width_71{width:71% !important;}
.width_72{width:72% !important;}
.width_73{width:73% !important;}
.width_74{width:74% !important;}
.width_75{width:75% !important;}
.width_76{width:76% !important;}
.width_77{width:78% !important;}
.width_78{width:78% !important;}
.width_79{width:79% !important;}
.width_80{width:80% !important;}
.width_90{width:90% !important;}
.width_100{width:100%;}
.border-left {
  border-left: 1px solid #000000 !important;
}

.clear{
	clear:both;
}
.bacgroundnone{
	background:none !important;
}
.arama_sonuc_list{
	background:#ffffff !important;
	border:#000000 4px solid;
	border-radius:10px;
	margin-bottom:10px;
	padding:5px;
	font-weight:bold;
	color:#000000;
	cursor:pointer;
	font-size:11pt;
}
.list_icon{
	font-size:12pt;
	float:left;
	margin-top:1px;

}
.list_text{
	float:left;
	font-size:12pt;
	margin-left:5px;

}
.list_text_buton_ana{
	float:right;
	background-image: linear-gradient(#f21a0a,#ff9800);
	font-weight:bold;
	font-size:9pt;
	border:#000000 1px solid;
	border-radius:8px;
	margin-top:-1px;
	color:#ffffff;

}
.list_text_buton_circle{
	float:right;
	background:#fed217;
	font-weight:bold;
	font-size:9pt;
	border:#000000 2px solid;
	border-radius:50%;
	margin-top:-1px;

}
.list_text_buton{
	float:left;
	padding:1px;
	padding-right:6px;
	padding-left:6px;
	border-right:#000000 1px solid;

}
.arama_sonuc_list_sonuc{
	background:#ffffff !important;
	border:#000000 3px solid;
	border-radius:5px;
	margin-bottom:10px;
	margin-top:5px;
	padding:5px;
  	color:#000000;
 	font-size:10pt;
	min-height:50px;
	display:none;
}
.arama_sonuc_list_sonuc_bos{
 	margin-bottom:4px;
 	top:-8px;
	position:relative;
	background:#ffffff;
	border:#000000 2px solid;
	border-radius:5px;
	min-height:40px;
	display:none;
}
.glyphicon{
	font-weight:inherit !important;
}
.sonuclisticon{
	top: -22px;
	position: relative;
	margin-left: 70px
}
.arama_sonuc_list_sonuc_text{
	top:-20px;
	position:relative;
}
.arama_sonuc_list_sonuc_text a{
	font-weight:bold;
}
.arama_sonuc_list_sonuc_table{

}
.arama_sonuc_list_sonuc_table_body{
	background:#000000;
	padding-bottom:2px;
	padding-top:2px;
}
.arama_sonuc_list_sonuc_table_body li{
	list-style:none;
	float:left;
	color:#ffffff;
	text-align:center;
}
.arama_sonuc_list_sonuc_table_tr{

}
.arama_sonuc_list_sonuc_table_tr:hover{
	background:#ccc !important;
}


.arama_sonuc_list_sonuc_table_tr li{
	list-style:none;
	float:left;
 	text-align:center;
	padding-top:2px;
	padding-bottom:2px;
	border-bottom:#000000 1px solid;
	font-size:10pt;
	cursor:pointer;
}
