html,
body {
     position: relative;
     height: 100%;
}
body {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	line-height: 1.4em;
}
body, select, input, textarea {
	color: #333;
}
a {
	color: #03f;
}
a:hover {
	color: #69f;
}

::-moz-selection {
background: #fcd700;
color: #fff;
text-shadow: none;
}
::selection {
	background: #fcd700;
	color: #fff;
	text-shadow: none;
}
a:link {
	-webkit-tap-highlight-color: #fcd700;
}
ins {
	background-color: #fcd700;
	color: #000;
	text-decoration: none;
}
mark {
	background-color: #fcd700;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
}

input:-moz-placeholder {
color:#a9a9a9;
}
textarea:-moz-placeholder {
color:#a9a9a9;
}
*:focus {
	outline: 0;
}

img {
	max-width: 100%;
	height: auto;
}

.wrapper {
    min-width: 1040px;
}

.container {
    width: 1040px;
    margin: 0 auto;
    padding: 0 30px;
}

header {
	margin: auto;
	min-height: 70px;
	width: 1040px;
	background: #ffffff;
}
.logo {
	width: 184px;
	height: 70px;
	line-height: 70px;
	margin-right: 29px;
	background-image: url(../img/bioset_logo.png);
	background-size: 184px 50px;
	background-repeat: no-repeat;
	background-position: center;
	float: left;
	margin-left: 30px;
}
.logo a {
	display: block;
	text-indent: -9999px;
}

.flag {
	float: right;
	margin-top: 34px;
	margin-right: 30px;
}
.flag a, .flag a img {
	display: block;
	text-decoration: none;
	color: #333333;
}
.flag a:hover {
	text-decoration: underline;
}


/* MENU */
nav {
	float: right;
}
nav ul {
	position: relative;
	z-index:90;
}

nav ul li {
	float: left;
	position: relative;
	text-align: center;
}

nav ul li a {
	display: block;
	padding: 0 30px;
	line-height: 70px;
	color: #7b868c;
	white-space: nowrap;
	text-decoration: none;
}

nav ol li a {
	padding: 0 20px;
	display: block;
	line-height: 25px;
	color: #ffffff;
	white-space: nowrap;
	text-decoration: none;
}
nav ul li:hover span, 
nav ul li:hover {
	background:#000000;
}
nav ul li:hover a {
	color:#FFF;
}

nav ol {
	list-style: none;
	background:#000000;
	display: none;
	height: auto;
	left: 0;
	margin: 0;
	position: absolute;
	top: 100%;
	padding: 15px 0;
	width: auto;
	min-width: 160px;
	box-shadow: 5px 5px 6px 0px rgba(1, 1, 1, 0.3);
}

nav ul li:hover ol {
	display: block;
}

nav ol li {
	margin: 0;
	padding: 0 20px;
	text-align: left;
	width: 100%;
	border:0;
	display: block;
	line-height: 25px;
	color: #666;
	white-space: nowrap;
}
nav ol li:hover a {
	display: block;
	color:#1595D7;
}

.lang {
	padding: 0 30px;
}
.lang span {
	background: #7b868c;
	padding: 5px;
	color: #fff;
}
/* MENU SON */

#menu {
	position: absolute;
	top: 24px;
	right: 30px;
	display: none;
}

/* Hamburger */
.hamburger {
	/*padding: 15px 15px;*/
	display: inline-block;
	cursor: pointer;
	transition-property: opacity, -webkit-filter;
	transition-property: opacity, filter;
	transition-property: opacity, filter, -webkit-filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
}
.hamburger:hover {
	opacity: 0.7;
}
.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	position: relative;
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
	width: 30px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
	content: "";
	display: block;
}
.hamburger-inner::before {
	top: -10px;
}
.hamburger-inner::after {
	bottom: -10px;
}
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
	transition-duration: 0.1s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
	transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
	transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition-delay: 0.14s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* hamburger son */

article {
	/*margin-top:70px;*/
	min-height: 300px;
	margin-bottom: 100px;
}
article h1 {
	background: #7b868c;
	line-height: 70px;
	padding: 0 20px 0 20px;
	margin-bottom: 20px;
	color: #FFFFFF;
	font-size: 24px;
}

h2 {
	font-size: 18px;
	line-height: 1.4em;
	font-weight: 700;
	margin-bottom: 20px;
}
p {
	font-weight: 300;
	margin-bottom: 15px;
}
article ul {
	list-style: disc;
	margin-left: 35px;
}
article ul li {
	font-weight: 300;
}
.pad100 {
	padding-top: 100px;
}
.genelTablo {
	border-color: #eeeeee;
	border-width: 0 0 1px 1px;
	border-style: solid;
	margin: 20px 0;
}
.genelTablo thead td {
	font-weight: 700;
	white-space: nowrap;
	background: #fafafa;
}
.genelTablo td {
	border-color: #eeeeee;
	border-width: 1px 1px 0 0;
	border-style: solid;
	margin: 0;
	padding: 8px;
	vertical-align: middle;
}
/* ÜRÜN TABLO */
.urunTablo {
	width: auto;
	margin: 20px 0;
	padding: 20px 0;
	font-size: 10px;
	line-height: 10px;
	max-width: 960px;
	overflow: scroll;
	clear: both;
}
.urunTablo thead td {
	font-weight: 400;
	white-space: nowrap;
}
.urunTablo td {
	border-right: 2px solid #FFFFFF;
	margin: 0;
	padding: 6px 4px;
	vertical-align: middle;
	font-weight: 300;
	white-space: nowrap;
}
.urunTablo thead tr:nth-child(even) {
	background: #ffffff;
}
.urunTablo thead tr:nth-child(odd) {
	background: rgba(23, 172, 227, 0.2);
}
.urunTablo tbody tr:nth-child(even) {
	background: #ffffff;
}
.urunTablo tbody tr:nth-child(odd) {
	background: rgba(0, 0, 0, 0.03);
}
.urunTablo td a {
	color: #0078d4;
	text-decoration: underline;
}
.urunTablo td a:hover {
	color: #000000;
	text-decoration: underline;
}
.renk_kodu {
	width:8px;
	height:8px;
	line-height:8px;
	margin-right:3px;
	display:inline-block;
	vertical-align: middle;
}
.renk_18G {
	color: #f495bd;
	background-color: #f495bd;
}
.renk_19G {
	color: #ffffff;
	background-color: #ffffff;
}
.renk_20G {
	color: #f4ed3b;
	background-color: #f4ed3b;
}
.renk_21G {
	color: #76c79d;
	background-color: #76c79d;
}
.renk_22G {
	color: #505457;
	background-color: #505457;
}
.renk_23G {
	color: #7ec3de;
	background-color: #7ec3de;
}
.renk_24G {
	color: #ffffff;
	background-color: #ffffff;
}
.renk_25G {
	color: #f58531;
	background-color: #f58531;
}
.renk_26G {
	color: #b08060;
	background-color: #b08060;
}
.renk_27G {
	color: #9ba1a4;
	background-color: #9ba1a4;
}
/* ÜRÜN TABLO */

.yuklemeTablo {
	width: auto;
	max-width: 960px;
	overflow: scroll;
	clear: both;
}
.yukTablo td {
	max-width: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.yukTablo input {
	border:1px solid #cccccc;
}
.yukTablo td.tdfull {
	max-width: none;
}
.aracTablo {
	width: 960px;
}
.aracTablo tbody td:nth-child(n+4) {
	text-align: right;
}
input.miktar {
	width: 70px;
}

footer {
	padding: 50px 0;
	color: #ffffff;
	background: #7b868c;
}

footer ul li {
	font-size: 13px;
	font-weight: 300;
	color: #ffffff;
}
footer ul li h6 {
	font-size: 14px;
	font-weight: 400;
	margin: 7px 0 5px 0;
}
footer ul li a {
	color: #ffffff;
	text-decoration: none;
}
footer ul li a:hover {
	color: #ffffff;
	text-decoration: underline;
}
.social {
	height: 18px;
	margin-left: 40px;
}
.social li {
	float: left;
	width: 18px;
	height: 18px;
	margin-right: 5px;
}
.social li a {
	width: 18px;
	height: 18px;
	line-height: 18px;
	background-image: url(../img/ico_social2.png);
	background-size: 72px 18px;
	background-repeat: no-repeat;
	text-indent: -9999px;
	display: block;
}
.facebook {
	background-position: 0px 0px;
}
.twitter {
	background-position: -18px 0px;
}
.linkedin {
	background-position: -36px 0px;
}
.instagram {
	background-position: -54px 0px;
}
.triangles {
	width:100%;
	height:auto;
}
#ik * {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	line-height: 1.4em;
}
#ik fieldset {
	margin-bottom: 20px;
}
#ik ol {
	list-style: none;
	margin-bottom: 20px;
}
#ik ol li {
	border-top: 1px solid #eee;
	margin: 8px 0;
	padding-top: 8px;
}
#ik legend {
	font-size: 16px;
	margin-bottom: 10px;
	font-weight: 600;
}
#ik ol li label {
	margin-right: 20px;
	display: inline-block;
	line-height: 25px;
}
#ik ol li label:first-child {
	width: 180px;
	margin-right: 0;
	display: inline-block;
	float: left;
}
#ik ol li label[for="notlar"], #ik ol li label[for="adres"] {
	float: left;
}
#ik ol li input[type="text"] {
	width: 190px;
	height: 25px;
	margin: 0;
	border: 1px solid #cccccc;
}
#ik ol li input[type="radio"] {
	height: 25px;
	float: left;
	margin-right: 5px;
}
#ik ol li select {
	height: 25px;
	border: 1px solid #cccccc;
	/*
	-webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
	*/
	border-radius: 0;
}
#ik ol li textarea {
	width: 300px;
	height: 100px;
	border: 1px solid #cccccc;
}
#ik ol li input[type="submit"] {
	width: 100px;
	height: 35px;
	border: 1px solid #cccccc;
	background: #eeeeee;
	border-radius: 3px;
}
#ik .elements_holder {
	margin-left: 180px;
}
#ik .elements_holder .base_group {
	margin-bottom: 5px;
}
#ik .elements_holder .labels_group span {
	width: 190px;
	line-height: 25px;
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 5px;
}
#ik #ehliyet_sinif {
	width: 25px;
	text-align: center;
}
.urundetay table td {
	padding: 2px 20px;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px dotted #cccccc;
}
.urundetay table td strong {
	font-weight: 400;
}
.urundetay table td strong em, .urundetay table td em strong {
	font-weight: 700;
	line-height: 3em;
	font-style: normal;
}
.aramaSonuc {
	width: 100%;
}
.aramaSonuc tbody tr {
	cursor: pointer;
}
.aramaSonuc tbody tr a {
	color: #0078d4;
	text-decoration: none;
}
.aramaSonuc tbody tr a:hover {
	text-decoration: underline;
}
/* Pagination */
.pagination {
	margin: 30px auto 60px auto;
	text-align: center;
	padding: 0 20px;
}
.pagination a {
	display: inline-block;
	line-height: 28px;
	padding: 0 10px;
	text-decoration: none;
	color: #494d59;
	text-align: center;
	text-shadow: 0 1px rgba(255, 255, 255, 0.5);
	background: #fcfcfc;
	border: 1px solid;
	border-color: #d8d8d8 #d1d1d1 #c3c3c3;
	border-radius: 3px;
	cursor: pointer;
	background-image: -webkit-linear-gradient(top, #fefefe, #eeeeee);
	background-image: -moz-linear-gradient(top, #fefefe, #eeeeee);
	background-image: -o-linear-gradient(top, #fefefe, #eeeeee);
	background-image: linear-gradient(to bottom, #fefefe, #eeeeee);
	-webkit-box-shadow: inset 0 -1px rgba(0, 0, 0, 0.03), 0 1px rgba(0, 0, 0, 0.04);
	box-shadow: inset 0 -1px rgba(0, 0, 0, 0.03), 0 1px rgba(0, 0, 0, 0.04);
	margin: 3px;
}
.pagination a:active {
	background: #eee;
	border-color: #c3c3c3 #d1d1d1 #d8d8d8;
	background-image: -webkit-linear-gradient(top, #eeeeee, #fcfcfc);
	background-image: -moz-linear-gradient(top, #eeeeee, #fcfcfc);
	background-image: -o-linear-gradient(top, #eeeeee, #fcfcfc);
	background-image: linear-gradient(to bottom, #eeeeee, #fcfcfc);
	-webkit-box-shadow: inset 0 1px rgba(0, 0, 0, 0.03);
	box-shadow: inset 0 1px rgba(0, 0, 0, 0.03);
}
.pagination a:focus {
	outline: 0;
}
.pagination span.current {
	padding: 0 10px;
	font-weight: bold;
}
.pagination span.invisible {
	padding: 0 10px;
}
.pagination span.disabled {
	display: none;
}

/* Pagination Son */


/* Cols */

.row { display:flex; }
.col {
  flex:1;
  margin:0;
}

.col:last-child {
	margin-right:0;
}
.col img {
	display: block;
}

.col-tenth { flex:0 0 10%; margin:0 10px 10px 0; }
.col-fifth { flex:0 0 20%; margin:0 10px 10px 0; }
.col-quarter { flex:0 0 25%; margin:0 15px 15px 0; }
.col-third { flex:0 0 33.3333334%; margin:0 20px 20px 0; }
.col-half { flex:0 0 50%; margin:0 30px 30px 0; }

.center-vertical {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.center-both {
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
}
.pad-right {
	padding-right: 30px;
}
.pad-left {
	padding-left: 30px;
}
.center-text {
	text-align: center;
}
.row.bottom-margin,
.col.bottom-margin {
	margin-bottom: 30px;
}

/* Cols end */

.swiper-container {
    width: 100%;
    height: 400px;
}
.swiper-slide {
	background-position: center !important;
	background-size: cover !important;
}
.bioset {
	background: url("../../images/bioset_back.jpg") right center no-repeat;
	background-size: contain;
}

.bioset,
.urunler,
.kmtaslari,
.biosetik {
	padding-bottom: 20px;
}

.bioset h2,
.urunler h2,
.kmtaslari h2,
.biosetik h2 {
	font-size: 2em;
	color: white;
	background: #47ad4c;
	font-weight: normal;
	padding: 5px 20px;
	display: inline-block;
}
.bioset p,
.biosetik p {
	font-size: 1.3em;
	line-height: 1.5em;
	color: #999;
	max-width: 480px;
}
.biosetik,
.urunler {
	background: #e2e5e6;
}

.urunler ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
}
.urunler ul li {
	width: 30%;
	text-align: center;
	margin-bottom: 3%;
}
.urunler ul li figure {
	width: 100%;
	min-height: 300px;
	text-align: center;
	background: white;
	border-radius: 5px;
	overflow: hidden;
	padding: 10px;
	margin-bottom: 20px;
	
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	
}
.urunler ul li img {
	width: 100%;
	height: auto;
}
.urunler ul li p {
	text-align: center;
	font-size: 1.5em;
	font-weight: 400;
	color: #0f4c91;
}

#isim, #email, #mesaj {
	padding: 15px;
	margin: 0;
	display: inline-block;
	border: 0 none;
	float: left;
	border-radius: 3px;
}
#isim, #email {
	width: 47%;
	margin-bottom: 3%;
}
#isim {
	margin-right: 3%;
}
#mesaj {
	width: 82%;
	margin-right: 3%;
	margin-bottom: 3%;
}

#cv {
    display: none;
}
.custom-file-upload {
	width: 12%;
	height: 46px;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
	margin-bottom: 3%;
	background: #7b868c url("../img/ico_atas.png") no-repeat center;
	background-size: contain;
}

#gonder {
	width: 97%;
	border-radius: 3px;
	background-color: #47ad4c;
 	border: none;
  	color: white;
  	padding: 15px;
  	text-align: center;
  	text-decoration: none;
  	display: inline-block;
  	font-size: 16px;
}

/* Media queries
-------------------------------------------------------------------------------*/

@media screen and (max-width: 680px) {
.wrapper {
    min-width: 100%;
}

.container {
    width: 100%;
	padding: 15px;
}
header {
	width: 100%;
}

footer>ul>li {
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
}
footer>ul>li:first-child {
	width: 100%;
}
footer>ul>li:first-child p {
	padding-left: 0;
}
.social {
	width: 120px;
	height: 18px;
	margin: auto;
	margin-bottom: 10px;
}
.social li {
	float: left;
	width: 18px;
	height: 18px;
	margin-right: 0;
	margin: 0 5px;
}

.flag {
	float: none;
	margin-top: 0;
	margin-right: 0;
	position: absolute;
	top: 35px;
	right: 70px;
}	
	.logo {
		float: none;
	}	
/* MENU */
nav {
	float: none;
	display: none;
}
nav ul {
	background: #000;
}

nav ul li {
	float: none;
}

nav ul li a {
	display: block;
	padding: 0 20px;
	line-height: 40px;
	color:#fff;
	white-space:nowrap;
	text-decoration:none;
	border-bottom: 1px solid #666;
}
nav ol li a {
	color: #ffffff;
}

nav ul li:hover {
	background:#000;
}

nav ol {
	display: block;
	position: relative;
	background: #333;
	padding: 0;
}

nav ol li {
	text-align: center;
}

/* MENU SON */


#menu {
	display: block;
}


article h1 {
	width: 100%;
	min-width: 250px;
	position: relative;
	margin-bottom: 0;
	padding: 15px 20px;
	line-height: 35px;
}
article h1:after {
	content: '';
	display: none;
}

/*
article h1 {
	min-width: calc(100% - 50px);
	position: relative;
	margin-bottom: 0;
}
*/

article p, article h2 {
	padding: 0 20px;
}
article img {
	float: none;
	margin: 0;
	width: 100%;
	height: auto;
	margin-bottom:20px !important;
}

.urunTablo {
	margin: 20px;
}
.yuklemeTablo {
	margin:0 20px 20px 20px;
	padding:20px 0;
}
.yuklemeTablo .genelTablo {
	margin:0;
}
.aracTablo img {
	width:auto;
	height:30px;
	margin-bottom:0 !important;
}
.pad100 {
	padding-top: 10px;
}
	
	
/* Cols */

.row { flex-direction:column; }
.col,
.col-tenth,
.col-fifth,
.col-quarter,
.col-third,
.col-half { 
	flex:0 0 auto; 
	margin:0; 
}

.pad-right {
	padding-right: 0px;
}
.pad-left {
	padding-left: 0px;
}	
	
/* Cols end */	
	

.urunler ul {
	display: block;
}
.urunler ul li {
	width: 100%;
	margin-bottom: 30px;
}
	
	

}

@media only screen and (min-device-width:768px) and (max-device-width:1024px) and (orientation:portrait) {
html {
	zoom: 0.78;
}
}

@media all and (-webkit-min-device-pixel-ratio: 2), all and (min--moz-device-pixel-ratio: 2), all and (-o-min-device-pixel-ratio: 2/1), all and (min-device-pixel-ratio: 2), all and (min-resolution: 192dpi), all and (min-resolution: 2dppx) {
.logo { background-image: url(../img/bioset_logo@2x.png); }
.tr {	background-image: url(../img/flag_tr@2x.png); }
.en {	background-image: url(../img/flag_en@2x.png); }
.ru {	background-image: url(../img/flag_ru@2x.png); }
.social li a {
	background-image: url(../img/ico_social2@2x.png);
}
}

/* Print styles
-------------------------------------------------------------------------------*/
@media print {
}
