[type="checkbox"]:not(:checked),[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

[type="checkbox"]+label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}

[type="checkbox"]+label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
  transition: .2s;
}

[type="checkbox"]:not(:checked):disabled+label:before {
  border: none;
  background-color: rgba(0,0,0,0.05);
}

[type="checkbox"]:checked+label:before {
  top: -4px;
  left: -3px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #26a69a;
  border-bottom: 2px solid #26a69a;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:checked:disabled+label:before {
  border-right: 2px solid rgba(0,0,0,0.26);
  border-bottom: 2px solid rgba(0,0,0,0.26);
}

[type="checkbox"]:indeterminate+label:before {
  left: -10px;
  top: -11px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #26a69a;
  border-bottom: none;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:indeterminate:disabled+label:before {
  border-right: 2px solid rgba(0,0,0,0.26);
  background-color: transparent;
}

[type="checkbox"].filled-in+label:after {
  border-radius: 2px;
}

[type="checkbox"].filled-in+label:before,[type="checkbox"].filled-in+label:after {
  content: '';
  left: 0;
  position: absolute;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}

[type="checkbox"].filled-in:not(:checked)+label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:not(:checked)+label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0px;
  z-index: 0;
}

[type="checkbox"].filled-in:checked+label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:checked+label:after {
  top: 0px;
  width: 20px;
  height: 20px;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
}

[type="checkbox"].filled-in:disabled:not(:checked)+label:before {
  background-color: transparent;
  border: 2px solid transparent;
}

[type="checkbox"].filled-in:disabled:not(:checked)+label:after {
  border-color: transparent;
  background-color: #BDBDBD;
}

[type="checkbox"].filled-in:disabled:checked+label:before {
  background-color: transparent;
}

[type="checkbox"].filled-in:disabled:checked+label:after {
  background-color: #BDBDBD;
  border-color: #BDBDBD;
}

[type="checkbox"]+label {
  font-size: 1em !important;
  height: auto;
}

[type="checkbox"]+label:before {
  border: 1px solid #ccc;
  border-radius: 0px;
}

[type="checkbox"]:checked+label:before {
  border-right: 2px solid #d50066;
  border-bottom: 2px solid #d50066;
  border-top: none;
  border-left: none;
  width: 10px;
}

[type="radio"]:not(:checked),[type="radio"]:checked {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

[type="radio"]:not(:checked)+label,[type="radio"]:checked+label {
  position: relative;
  padding-left: 35px;
  cursor: pointer;
  display: inline-block;
  line-height: 25px;
  font-size: 1rem;
  transition: .28s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

[type="radio"]+label:before,[type="radio"]+label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin: 0px;
  width: 16px;
  height: 16px;
  z-index: 0;
  transition: .28s ease;
}

[type="radio"]:not(:checked)+label:before {
  border-radius: 50%;
  border: 2px solid #5a5a5a;
}

[type="radio"]:not(:checked)+label:after {
  border-radius: 50%;
  border: 2px solid #5a5a5a;
  z-index: -1;
  -webkit-transform: scale(0);
  transform: scale(0);
}

[type="radio"]:checked+label:before {
  border-radius: 50%;
  border: 2px solid transparent;
}

[type="radio"]:checked+label:after {
  border-radius: 50%;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

[type="radio"].with-gap:checked+label:before {
  border-radius: 50%;
  border: 2px solid #26a69a;
}

[type="radio"].with-gap:checked+label:after {
  border-radius: 50%;
  border: 2px solid #26a69a;
  background-color: #26a69a;
  z-index: 0;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

[type="radio"].with-gap:disabled:checked+label:before {
  border: 2px solid rgba(0,0,0,0.26);
}

[type="radio"].with-gap:disabled:checked+label:after {
  border: none;
  background-color: rgba(0,0,0,0.26);
}

[type="radio"]:disabled:not(:checked)+label:before,[type="radio"]:disabled:checked+label:before {
  background-color: transparent;
  border-color: rgba(0,0,0,0.26);
}

[type="radio"]:disabled+label {
  color: rgba(0,0,0,0.26);
}

[type="radio"]:disabled:not(:checked)+label:before {
  border-color: rgba(0,0,0,0.26);
}

[type="radio"]:disabled:checked+label:after {
  background-color: rgba(0,0,0,0.26);
  border-color: #BDBDBD;
}

[type="radio"]+label {
  font-size: 1em !important;
  height: auto;
}

[type="radio"]+label:before {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #ccc !important;
  margin-top: 0px;
}

[type="radio"]+label:after {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  margin-left: 3px;
}

[type="radio"]:checked+label:after {
  border: 2px solid #d50066;
  background-color: #d50066;
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-family: "Open Sans",sans-serif;
  color: #505050;
}

header a:not(.btn) {
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
}

header a:hover:not(.btn) {
  color: #fff !important;
  text-decoration: none;
}

header .container,header .row {
  height: 100%;
  position: relative;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: #e72a7f;
  height: 60px;
  font-family: "Open Sans",sans-serif;
}

header .btn-light {
  color: #505050;
}

header a {
  font-size: 14px !important;
  font-weight: 700 !important;
}

input {
  border: 1px solid #e9eaeb;
  font-size: 13px;
}

.btn {
  border-radius: 0;
}

::-webkit-input-placeholder {
  font-size: 15px;
  color: #bbb;
}

::-moz-placeholder {
  font-size: 15px;
  color: #bbb;
}

:-ms-input-placeholder {
  font-size: 15px;
  color: #bbb;
}

:-moz-placeholder {
  font-size: 15px;
  color: #bbb;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #dcdcdc;
}

::-webkit-scrollbar-track {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #f5f5f5;
}

a,a:hover {
  color: #505050;
}

.top-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.top-container main {
  flex: 1 0 auto;
}

.top-container main>section {
  display: block;
  min-height: 100vh;
}

#bgdiv {
  background: #e4e3e4 url(./login_bg1.jpg) no-repeat top;
  background-size: cover;
  z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 991px) {
  .top-container main>section:nth-child(1) {
    background-size: auto 65%;
  }
  
}

@media screen and (max-width: 576px) {
  .top-container main>section:nth-child(1) {
    background-size: auto 52%;
  }
}

.top-container main>section:nth-child(1) .logo {
  background: url(./logo1.png) no-repeat center;
  width: 100%;
  height: 170px;
  margin: 30px auto 0 auto;
  z-index: 99;
}


@media screen and (min-width: 991px) {
  .top-container main>section:nth-child(1) .logo {
    width: 286px;
  }
}

.top-container main>section:nth-child(1) .login-wrapper {
  font-size: 13px;
  z-index: 99;
  width: 450px;
  height: 130px;
  background-color: rgba(255,255,255,0.6);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding-top: 0px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 50px;
}

@media screen and (max-width: 991px) {
  .top-container main>section:nth-child(1) .login-wrapper {
    width: 100%;
    grid-auto-columns: 0;
    height: 372px;
    margin-top: 0px;
    margin-right: 0;
    margin-bottom: 20px;
    border-radius: 5px;
  }
  
  #sub_tsr {
	  display:none;
  }

  .top-container main>section:nth-child(1) .login-wrapper ul {
    height: auto !important;
  }

  .top-container main>section:nth-child(1) .login-wrapper ul li {
    display: flex !important;
  }

  .top-container main>section:nth-child(1) .login-wrapper ul li input {
    width: 100% !important;
    margin-bottom: 10px !important;
    margin-right: 0 !important;
  }

  .top-container main>section:nth-child(1) .login-wrapper ul li button {
    width: 100%;
    margin-left: 0 !important;
  }

  .top-container main>section:nth-child(1) .login-wrapper .signup-button-wrapper {
    height: 110px;
  }

  .top-container main>section:nth-child(1) .login-wrapper .signup-button-wrapper p {
    display: block;
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
  }

  .top-container main>section:nth-child(1) .login-wrapper .signup-button-wrapper a {
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #625ba1;
    color: #fff;
  }
}

.top-container main>section:nth-child(1) .login-wrapper .login-top-title {
  font-size: 16px;
  font-weight: 700;
}

.top-container main>section:nth-child(1) .login-wrapper .online-count {
  font-size: 14px;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs {
  margin-top: 7px;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  height: 40px;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li {
  display: inline;
  padding: 10px 0;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li button {
  padding: 9px 18px;
  border-radius: 0;
  background: #7db971;
  font-weight: 400;
  color: #fff;
  margin-left: 10px;
  border: none;
  font-size: 12px;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li input {
  width: 144px;
  height: 37px;
  font-size: 13px;
  color: #505050;
  margin-top: 0;
  padding-left: 3px;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li input::placeholder {
  font-size: 12px;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li input:focus {
  border: 1px solid #bbbbbb;
  box-shadow: none;
  outline: 0;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li.error-item input {
  color: #f44336;
  border: 1px solid #f44336;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li.error-item input::placeholder {
  color: #f44336;
}

.top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li .show-pass {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 10px;
}

@media screen and (max-width: 991px) {
  .top-container main>section:nth-child(1) .login-wrapper .login-form-inputs ul li .show-pass {
    padding: 20px 10px;
  }
}

.top-container main>section:nth-child(1) .login-wrapper .error-message-content {
  margin-right: -20px;
  margin-left: -20px;
}

.top-container main>section:nth-child(1) .login-wrapper .error-message-content .mat-error {
  background-color: red;
  padding: 3px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
}

.top-container main>section:nth-child(1) .login-wrapper a,.top-container main>section:nth-child(1) .login-wrapper label {
  color: black;
}

.top-container main>section:nth-child(1) a.login-link {
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  margin: 5px 30px;
  background: #7db971;
  color: #fff;
}

.top-container main>section:nth-child(1) .info-text-col {
  padding-left: 44px;
  padding-bottom: 44px;
  padding-right: 44px;
  margin-top: 360px;
}

.top-container main>section:nth-child(1) .info-text-col>div {
  padding-top: 30px;
}

.top-container main>section:nth-child(1) .info-text-col>div h2 {
  font-size: 50px;
}

.top-container main>section:nth-child(1) .info-text-col>div p {
  font-size: 16px;
  max-width: 45em;
  text-shadow: 0 0 1px white;
}

@media screen and (max-width: 991px) {
  .top-container main>section:nth-child(1) .info-text-col {
    background-color: rgba(255,255,255,0.49);
  }

}

@media screen and (min-width: 990px) {
  
  #sub_tsr {
	  display:block;
  }	
	
}

.top-container main>section:nth-child(2) {
  background-color: #f8f8f8;
}

.top-container main .app-row {
  height: 50px;
}

.top-container main .app-row img {
  height: 50px;
  max-height: 11vw;
}

.top-container main .triangle-down {
  height: 30px;
}

.top-container main .triangle-down:after {
  content: '';
  position: absolute;
  top: 0px;
  right: 50px;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2.5px solid #999;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 999999;
}

.top-container main #whygs>div {
  background-color: aliceblue;
}

.top-container main #whygs>div>div {
  max-width: 650px;
}

.top-container main #whygs>div>div a {
  font-weight: bold;
}

@media (min-width: 400px) {
  .top-container .col-min-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
}

.top-container .we-are-happy-row {
  padding-top: 60px;
}

.top-container .we-are-happy-row .btn {
  width: 230px;
  border-radius: 0;
}

.top-container .we-are-happy-row .btn.btn-primary {
  background-color: #625ba1;
  border-color: #625ba1;
}

.top-container .we-are-happy-row .btn.btn-success {
  background-color: #7db971;
  border-color: #7db971;
}

@media (max-width: 1400px) {
  .top-container .we-are-happy-row .btn {
    display: block;
    width: 100%;
  }
}

@media (max-width: 1400px) {
  .top-container .we-are-happy-row>.col-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

footer .footermenu {
  text-align: center;
  padding: 14px 0;
  border-top: 1px solid #e9eaeb;
  border-bottom: 1px solid #e9eaeb;
}

footer .footermenu a {
  color: #505050;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}

footer .footeralt {
  padding: 20px 0;
  background-color: #f8f8f8;
}

footer .footeralt .social {
  padding-top: 21px;
}

footer .footeralt .social a .fa {
  font-size: 1.5em;
}

footer .footeralt .company {
  font-weight: 400;
  font-size: 11px;
}

footer .startfooter {
  z-index: 99;
  bottom: 25px;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 25px;
  width: 100%;
  border-top: 1px solid #000;
  margin-bottom: 25px;
}

footer .startfooter a {
  color: #505050;
}

.signup-wrapper {
  background: #85cc38;
  width: 460px;
  z-index: 99;
  padding: 20px;
  padding-bottom: 0;
  margin-right: 50px;
  margin-top: 0px;
  color: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 992px) {
  .signup-wrapper {
    width: 100%;
    background: #85cc3899;
    margin-right: 0;
    margin-top: 0px;
  }

  .signup-wrapper .signup-form-inputs>.row>.col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

.signup-wrapper .signup-top-title {
  font-size: 16px;
  font-weight: 700;
}

.signup-wrapper .signup-count {
  font-size: 14px;
  font-weight: 700;
}

.signup-wrapper .signup-form-inputs {
  margin-top: 7px;
}

.signup-wrapper .signup-form-inputs>.row>.col-6 {
  padding-right: 10px;
}

.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(4),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(5),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(7),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(8) {
  flex: 0 0 30%;
  max-width: 30%;
}

.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(1),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(3),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(6),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(9) {
  flex: 0 0 40%;
  max-width: 40%;
}

.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(2),.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(10) {
  flex: 0 0 60%;
  max-width: 60%;
}

.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(2)>div,.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(10)>div {
  background: white;
}

.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(2)>div input,.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(10)>div input {
  margin: 0;
  border: none;
}

.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(2)>div .fa,.signup-wrapper .signup-form-inputs>.row>.col-6:nth-child(10)>div .fa {
  color: black;
  font-size: 15px;
}

.signup-wrapper .signup-form-inputs>.row input,.signup-wrapper .signup-form-inputs>.row select {
  background: white;
  width: 100%;
  height: 37px;
  margin-bottom: 10px;
  padding-left: 5px;
}

.signup-wrapper .signup-form-inputs>.row input:focus,.signup-wrapper .signup-form-inputs>.row select:focus {
  outline: none !important;
}

.signup-wrapper .signup-form-inputs>.row select {
  appearance: none;
  border-radius: 0;
  border: 0;
}

.signup-wrapper .signup-form-inputs>.row select::-ms-expand {
  display: none;
}

.signup-wrapper .signup-form-inputs>.row input#captcha {
  border-right: 1px solid #ccc;
}

.signup-wrapper .sign-up-button {
  width: calc(100% + 10px);
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #219043;
  color: white;
  border: none;
  cursor: pointer;
  margin-left: -5px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.signup-wrapper .login-button {
  width: calc(100% + 5px);
  height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #fff;
  color: #625ba1;
  border: none;
  cursor: pointer;
  margin-right: -5px;
  border-bottom-right-radius: 6px;
}

.signup-wrapper [type="checkbox"]:checked+label:before {
  border-right-color: white;
  border-bottom-color: white;
}

.signup-wrapper .mat-error {
  text-shadow: 0 0 8px red, 0 0 8px red;
  padding-left: 15px;
  margin-bottom: 5px;
  color: white;
}

.signup-wrapper .error-item>* {
  border: 1px solid #f44336;
}

.signup-wrapper .error-item input {
  color: #f44336;
}

.signup-wrapper #agreeterms+label+a {
  color: black;
  text-decoration: underline;
}

.static-page h1 {
  font-family: "Open Sans",sans-serif;
  font-size: 30px;
  font-weight: 400;
}

.static-page p {
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  text-align: justify;
}

.static-page .icerik {
  padding: 30px;
  border: 1px solid #e9eaeb;
}

.static-page .p-text {
  font-size: 16px;
  text-align: justify;
  padding: 0 15px 0 15px;
}

.contact-page .icrow {
  border: 1px solid #e9eaeb;
  margin-bottom: 10px;
}

.contact-page .baslik {
  font-size: 14px;
  font-weight: 700;
}

.contact-page .form-group input,.contact-page .form-group textarea {
  font-size: 13px;
}

.contact-page .mb {
  margin-bottom: 30px;
}

.contact-page .iletmailimg {
  background: #f8f8f8;
  padding: 29px 27px;
}

.contact-page .iletmailimg .fa {
  font-size: 22px;
}

.contact-page .iletmail {
  padding-left: 30px;
  padding-top: 20px;
}

@media screen and (max-width: 992px) {
  .contact-page .iletmail {
    padding-left: 10px;
    padding-right: 0;
  }
}

.contact-page .iletmail p {
  margin-bottom: 0;
  font-weight: 700;
}

.contact-page .iletmail a {
  text-decoration: none;
  color: #505050;
  font-size: 20px;
}

@media screen and (max-width: 992px) {
  .contact-page .iletmail a {
    font-size: 16px;
  }
}

.contact-page .form-control {
  border-radius: 0 !important;
}

.contact-page .formlet {
  padding: 30px 30px 50px 30px;
  margin-bottom: 200px;
  border: 1px solid #e9eaeb;
  margin-left: 20px;
  font-size: 13px;
}

@media screen and (max-width: 992px) {
  .contact-page .formlet {
    margin-left: 0;
  }
}

.contact-page .formlet>span {
  color: #bbbbbb;
  margin-right: 20px;
  font-size: 12px;
}

.contact-page .formlet .fa {
  font-size: 20px;
  margin-right: 12px;
}

.contact-page .formlet .alert {
  border-radius: 0;
}

.contact-page .formlet .alert .close {
  font-size: 1.3rem;
}

.contact-page .btn-gndr {
  border-radius: 0;
  background: #7db971;
  font-weight: 400;
  color: #fff;
  height: 35px;
  font-size: 12px;
  padding: 0 20px;
}

.contact-page .submitbtn {
  position: absolute;
  right: 0;
  bottom: 0;
}

.wearehappy-page .alert {
  border-radius: 0;
}

.wearehappy-page .alert .close {
  font-size: 1.3rem;
}

.wearehappy-page .form-group input,.wearehappy-page .form-group textarea {
  font-size: 13px;
}

@media (min-width: 992px) {
  .wearehappy-page .form-group input#name,.wearehappy-page .form-group textarea#name {
    width: 98% !important;
    margin-right: 2% !important;
  }
}

.wearehappy-page .google-play-img {
  width: 168px !important;
  height: 50px !important;
}

.wearehappy-page .app-store-img {
  width: 189px !important;
  height: 50px !important;
}

.wearehappy-page .pr-site-img {
  width: 110px !important;
  text-align:center !important;
  height: 110px !important;
}

.wearehappy-page .form-control {
  border-radius: 0 !important;
}

.wearehappy-page .married-list>div {
  cursor: pointer;
}

.wearehappy-page .married-list .list-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.wearehappy-page .married-list a {
  cursor: pointer;
}

.wearehappy-page form .error-input input {
  border-color: #f44336;
}

.wearehappy-page form .error-input input:focus {
  border: 1px solid #f44336 !important;
}

.wearehappy-page form .error-input span {
  position: absolute;
  font-size: 9px;
  color: #f44336;
  background: #fff;
  border: 1px solid #f44336;
  border-bottom: none;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  top: -14px;
  left: 26px;
  padding: 1px 1px 0 1px;
}

.wearehappy-page form .btn-success {
  border-radius: 0;
  background-color: #7db971;
  border-color: #7db971;
}

.guide-page .content {
  border: 1px solid #e9eaeb;
  padding: 20px;
}

.guide-page .content ol {
  border-bottom: 1px solid #e9eaeb;
}

.guide-page .content-image {
  float: left;
  width: 300px;
  margin: 0 30px 20px 0;
  border-radius: 3px;
}

.guide-page .categories {
  border: 1px solid #e9eaeb;
  padding: 20px;
}

.guide-page .categories .title-box {
  width: 100%;
  padding-left: 20px;
  margin-bottom: 30px;
  color: #D20064;
  font-size: 18px;
  font-weight: 400;
  text-shadow: 1px 1px 0 #FFF;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.06);
  background-color: #F9F6F4;
  border-radius: 2px 2px 0 0;
}

.guide-page .categories .title-box span {
  display: inline-block;
  padding: 13px 0 12px 0;
  position: relative;
}

.guide-page .categories a {
  color: #337ab7;
}

.guide-page .categories div h1 {
  background-color: #f8f8f8;
  border-top: 1px solid #e9eaeb;
  border-bottom: 1px solid #e9eaeb;
}

.guide-page .categories div h1.first-child {
  border-top: none;
}

.help-page .mat-form-field-infix {
  padding: 0 !important;
  border-top: none !important;
}

.help-page .mat-form-field {
  display: block;
}

.help-page .page-header {
  margin-top: 40px;
}

.help-page .page-header h3 {
  font-size: 20px;
}

.help-page .page-header button {
  width: 100%;
  border-radius: 0;
  background: #7db971;
  font-weight: 400;
  color: #fff;
}

.help-page .page-header input {
  border-radius: 0;
  border-color: #e9eaeb;
}

.help-page .page-header input::placeholder {
  font-size: 14px;
  color: #e9eaeb;
}

.help-page .page-header .form-group {
  margin-bottom: 0;
}

.help-page .page-body {
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 250px;
}

.help-page .page-body .left-menu {
  border: 1px solid #e9eaeb;
  padding: 20px 20px 0 25px;
  height: 100%;
}

.help-page .page-body .left-menu ul {
  padding: 0;
}

.help-page .page-body .left-menu ul li {
  list-style: none;
  margin-bottom: 30px;
}

.help-page .page-body .left-menu a {
  color: #505050;
  margin-bottom: 30px;
  text-decoration: none;
}

.help-page .page-body .left-menu a.active {
  font-weight: 700;
}

.help-page .right {
  border-bottom: 1px solid #e9eaeb;
  border-right: 1px solid #e9eaeb;
}

@media screen and (max-width: 992px) {
  .help-page .right {
    border-left: 1px solid #e9eaeb;
  }
}

.help-page .right a {
  color: #505050;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
  border-top: 1px solid #e9eaeb;
}

.help-page .right .active {
  background: #f8f8f8;
  font-weight: 700;
  font-size: 14px;
}

.help-page .right .cevap h5 {
  font-size: 14px;
  font-weight: 700;
}
/*# sourceMappingURL=main.css.map */
