.cd-user-modal {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: 90%;
  background: rgba(0, 0, 0, 0.84);
  z-index: 60;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  -moz-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
}
.cd-user-modal.is-visible {
  visibility: visible;
  opacity: 1;
}
.cd-user-modal.is-visible .cd-user-modal-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}

.cd-user-modal-container {
  position: relative;
  width: 48%;
  max-width: 600px;
  background: #FFF;
  margin: 3em auto 4em;
  cursor: auto;
  border-radius: 0.25em;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-user-modal-container .cd-switcher:after {
  content: "";
  display: table;
  clear: both;
}
.cd-user-modal-container .cd-switcher li {
  width: 50%;
  float: left;
  text-align: center;
}
.cd-user-modal-container .cd-switcher li:first-child a {
  border-radius: .25em 0 0 0;
}
.cd-user-modal-container .cd-switcher li:last-child a {
  border-radius: 0 .25em 0 0;
}
.cd-user-modal-container .cd-switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #236AA1;
  color: #FFF;
}
.cd-user-modal-container .cd-switcher a.selected {
  background: #FFF;
  color: #000;
}
@media only screen and (min-width: 600px) {
  .cd-user-modal-container {
    margin: 8em auto 4em;
		/*border-radius: 5px 5px 0 0;*/
  }
  .cd-user-modal-container .cd-switcher a {
    height: 70px;
    line-height: 70px;
  }
}

.cd-switcher a {
  font-size: 13px;
  font-weight: normal;
  font-weight: Arial;
}

.cd-form {
  padding: 1.4em;
}
.cd-form .fieldset {
  /* position: relative; */
  /* margin: 1.4em 0; */					/* 2em 0 */
}

.cd-form .fieldset:first-child {
  margin-top: 0;
}

.cd-form .fieldset:last-child {
  margin-bottom: 0;
}

.cd-form label {
  font-size: 14px;
  font-size: 1.3rem;
	color: #7D7D7D;
}
.cd-form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.cd-form label.cd-username {
  background-image: url("../baseimages/cd-icon-username.png");
}

.cd-form label.cd-email {
  background-image: url("../baseimages/cd-icon-email.png");
}

.cd-form label.cd-password {
  background-image: url("../baseimages/cd-icon-password.png");
}

.cd-form input {
  margin: 0;
  padding: 0;
  /*border-radius: 0.25em;*/
}

.cd-form input.full-width {
  width: 100%;
}

.cd-form input.has-padding {
  padding: 12px 20px 12px 50px;
}

.cd-form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.cd-form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}

.cd-form input.has-error {
  border: 1px solid #d76666;
}
.cd-form input[type=password] {
  /* space left for the HIDE button */
  /* padding-right: 65px; */
}
.cd-form input[type=submit] {
  padding: 16px 0;
  cursor: pointer;
  background: #FF8636;
  color: #000;
  font-weight: bold;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
.no-touch .cd-form input[type=submit]:hover, .no-touch .cd-form input[type=submit]:focus {
  background: #FFA162;
  outline: none;
}

.cd-form .hide-password {
	width: 70px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 20px !Important;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 1.2rem;
  color: #343642;
}

.cd-form .cd-error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: .8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
  -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}

.cd-form .cd-error-message::after {
  /* triangle */
  content: '';
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}
.cd-form .cd-error-message.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}

@media only screen and (min-width: 600px) {
  .cd-form {
    padding: 0 1em;
  }
  .cd-form.apm {
    padding: 0 0.2em;
  }
  .cd-form .fieldset {
    /* margin: 1em 0; */
  }
  .cd-form .fieldset:first-child {
    margin-top: 0;
  }
  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }
  .cd-form input.has-padding {
    padding: 6px 20px 6px 10px;
  }
  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

.cd-form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .cd-form-message {
    padding: 1em 2em 0;
  }
}

.cd-form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -30px;
  text-align: center;
  font-size: 14px;
  font-size: 1.3rem;
}
.cd-form-bottom-message a {
  color: #FFF;
  text-decoration: underline;
}

.cd-close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("../baseimages/cd-icon-close.png") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media only screen and (min-width: 1170px) {
  .cd-close-form {
    display: none;
  }
}

#cd-login, #cd-signup, #cd-reset-password {
  display: none;
}

#cd-login.is-selected, #cd-signup.is-selected, #cd-reset-password.is-selected {
  display: block;
}


.squaredThree {
  width: 20px;
  position: absolute;
  margin: -6px 0;
}
.squaredThree label {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: -4px;
  left: 0;
  background: #FF8636;
  border-radius: 3px;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4);
}
.squaredThree label:after {
  content: '';
  width: 12px;
  height: 8px;
  position: absolute;
  top: 4px;
  left: 4px;
  border: 3px solid #fcfff4;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.squaredThree input[type=checkbox]:checked + label:after {
  opacity: 1;
}

/* ------- ÜYE OL FORMU START --------- */

.fieldset:before, .fieldset:after {
    display: table;
    content: "";
    zoom: 1;
}

.inputOne dl {
	  float: left;
    margin-bottom: 3px;
}

.inputOne:after {
    clear: both;
}

.inputTwo dl {
	  float: left;
    width: 187px;
    margin-bottom: 3px;
}

.inputTwo:after {
    clear: both;
}

.inputThree dl {
	  float: left;
    width: 127px;
    margin-bottom: 3px;
}

.inputThree:after {
    clear: both;
}

.inputFour:after {
    clear: both;
}

.fieldset dl dt {
    position: relative;
    font-size: 15px;
    color: #505050;
    font-weight: 500;
    font-size: 12px;
    font-weight: 700;
    margin: 5px 0;
}

.fieldset dl dd {
	position: relative;
	margin-bottom: 0;
}

.fieldset dl dt label{
    font: bold 15px "Lucida Grande",Arial,sans-serif;
}


.fieldset dl dt label.dbm {
    font: 13px "Lucida Grande",Arial,sans-serif;
}

.inputTwo dd input[type=text] {
    width: 180px;
}

.inputThree dd input[type=text] {
    width: 180px;
}

.inputOne dl dd a:visited{
    color: #337AB7;
}

.inputTwo .input-text {
    width: 327px;
    height: 40px;
    border-color: #dedede;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-style: solid;
    font: 16px "Lucida Grande",Arial,sans-serif;
    color: #505050;
    padding: 1px 5px;
}

.inputThree .input-text {
    width: 327px;
    height: 40px;
    border-color: #dedede;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-style: solid;
    font: 16px "Lucida Grande",Arial,sans-serif;
    color: #505050;
    padding: 1px 5px;
}

.inputOne .input-text {
    width: 368px;
    height: 40px;
    border-color: #ddd;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-style: solid;
    font: 16px "Lucida Grande",Arial,sans-serif;
    color: #505050;
    padding: 1px 5px;
}

.inputOne .input-text.oibm, .inputOne .input-select.oibm {
    width: 312px !important;
}

.fieldset.reininput {
	float: left;
	margin-left: 18px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.fieldset.reininput:last-child {
	margin-right: 6px;
}

.fieldset.reininput:after {
	clear: both;
}

.input1 .input-text.rTSform, .input1 .input-select.rTSform {
    width: 256px !important;
		padding: 9px;
}

.inputOne .input-text.ake, .inputOne .input-select.ake {
    width: 331px !important;
}

.inputOne .input-text.dbm , .inputOne .input-textarea.dbm, .inputOne .input-file.dbm {
	width: 360px !important;
	font: 16px "Lucida Grande",Arial,sans-serif;
}

.inputOne.dbm {
	margin: 10px 0;
}

.fieldset.dbm dl dt {
	margin: -12px 0;
}

.inputOne .input-text.dbm2 {
  width: 186px !important;
}

.inputOne .input-textarea {
	width: 368px;
	height: 80px;
	border-color: #ddd;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border-style: solid;
	font: 16px "Lucida Grande",Arial,sans-serif;
	color: #505050;
	padding: 1px 5px;
}

label {
    cursor: default;
}

.fieldset label {
    position: relative;
    -webkit-transform: translateY(6px);
    left: 3px;
}

.input-text.error, .input-select.error, .input-textarea.error {
  border-color: #C24949 !important;
	background: #FDF1F1;
}

.show-hide-password {
    display: block;
    position: absolute;
    right: 6px;
    top: 6px;
    padding: 7px 11px;
    background: #cccaca;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}

.skin-square dd {
	margin-top: 4px;
}

.skin-square dd  p {
	margin-left: 28px;
}

.aAdapt {
	font-size: 11px;
}

.with-icon:before {
    content: '+90';
    position: absolute;
    top: 11px;
    left: 6px;
    font: 16px "Lucida Grande",Arial,sans-serif;
}

.with-icon input {
    padding-left: 40px !important;
}

#kurumsaluyekayitformu .activity select, #kurumsaluyekayitformu .activity input, #ilanalanisecformu .activity select, #ilanalanisecformu .activity input {
    -webkit-background-size: 20px 150px;
    -moz-background-size: 20px 150px;
    background-size: 20px 150px;
    font-size: 16px!important;
    padding: 11px 30px 10px 4px;
    background-position: 309px 3px;
    width: 367px;
    border-color: #ebe8e8;
		border-radius: 3px;
}

#kurumsaluyeformu .activity select, #kurumsaluyeformu .activity input {
    -webkit-background-size: 20px 150px;
    -moz-background-size: 20px 150px;
    background-size: 20px 150px;
    font-size: 16px!important;
    padding: 11px 30px 10px 4px;
    background-position: 309px 3px;
    width: 367px;
    border-color: #ebe8e8;
		border-radius: 3px;
}

#takviyesatinalformu .activity select, #takviyesatinalformu .activity input {
    -webkit-background-size: 20px 150px;
    -moz-background-size: 20px 150px;
    background-size: 20px 150px;
    font-size: 24px!important;
    font-weight: bold;
    padding: 11px 30px 10px 4px;
    background-position: 309px 3px;
    width: 367px;
    border-color: #ebe8e8;
		border-radius: 3px;
}

#altkullaniciformu .activity select, #altkullaniciformu .activity input, #topluilanalformu .activity select {
    -webkit-background-size: 20px 150px;
    -moz-background-size: 20px 150px;
    background-size: 20px 150px;
    font-size: 16px!important;
    padding: 8px 30px 7px 4px;
    background-position: 309px 3px;
    width: 331px;
    border-color: #ebe8e8;
		border-radius: 3px;
}

#kurumsaluyekayitformu .adressCity select {
    -webkit-background-size: 20px 150px;
    -moz-background-size: 20px 150px;
    background-size: 20px 150px;
    font-size: 16px!important;
    padding: 9px 30px 10px 4px;
    background-position: 309px 3px;
    width: 180px;
    border-color: #ebe8e8;
    border-radius: 3px;
}

#kurumsaluyeformu .adressCity select {
    -webkit-background-size: 20px 150px;
    -moz-background-size: 20px 150px;
    background-size: 20px 150px;
    font-size: 16px!important;
    padding: 9px 30px 10px 4px;
    background-position: 309px 3px;
    width: 180px;
    border-color: #ebe8e8;
    border-radius: 3px;
}

.fieldset .businessTypeLabel {
	float: left;
}

.fieldset .businessTypeLabel span {
	margin: 0 22px 0 8px;
	font-size: 15px;
	color: #7D7D7D;
}

.businessTypeLabel .iradio_square-blue input {
	position: relative !important;
} 

.adressCity select#town:disabled, .adressCity select#taxOffice:disabled {
    color: #999;
    background-color: #ebebe4;
}

.fieldset dl.kurumsalVergiNo {
	display:none;
}

.dbm .eskiLogo div{
	float: left;
	margin-right: 10px;
}

.dbm .eskiLogo div:first-child {
	text-align: center;
	padding:10px;
	width: auto;
  height: auto;
  border: 1px solid #ddd;
	border-radius: 3px;
}

.dbm .eskiCover div{
	float: left;
	margin-right: 10px;
}

.dbm .eskiCover div:first-child {
	text-align: center;
	padding-top:10px;
	width: 160px;
  height: 66px;
  border: 1px solid #ddd;
	border-radius: 3px;
}

.close.oibm {
	margin-top: 4px!important;
	margin-right: 8px;
}

.magazaUrlDegis {
	font: 16px "Lucida Grande",Arial,sans-serif;
}

.reinPriceBox {
	display: block;
	position: relative;
	left: 165px;
	max-width: 125px;
	text-align: right;
	margin-bottom: 5px !important;
	border: 2px solid #cc0000;
	padding: 4px 10px !important;
	font-size: 24px;
	font-weight: bold;
	color: #999999;
}

.rPCurrency {
	display: block;
	position: relative;
  left: 297px;
  top: -39px;
	font-size: 18px;
	font-weight: bold;
	color: #999999;
}

.modal-footer.oibm button {
	float: right;
	margin-left: 10px;
}

.fieldset dl dt label.phons {
    font-size: 14px;
		font-weight: normal;
		color: #63a4dc;
}

.tabSummaryCenter dl {
	margin-bottom: 20px;
}

.tabSummaryCenter dd {
	margin-top: 7px;
}