
html,
body{
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}


/*Header*/

.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;
    background-color: #301934;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .logo {
    margin-right: auto;
    width: 300px;
    height: 50px;
  }
  
  .nav__links {
    list-style: none;
    display: flex;
    margin-top: 12px;
  }
  
  .nav__links a,
  .overlay__content a {
    font-family: "Montserrat", sans-serif;
    font-weight: 1500;
    color: #E6E6FA;
    text-decoration: none;
  }
  
  .nav__links li {
    padding: 0px 20px;
  }
  
  .nav__links li a {
    transition: all 0.3s ease 0s;
  }
  
  .nav__links li a:hover {
    color: #EE82EE;
  }

  
  .cta {
    margin-left: 20px;
    padding: 9px 25px;
    background-color: #DA70D6;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    color: #93E1D8;
    text-decoration: none;
  }
  
  .cta:hover {
    background-color: #9932CC;
  }
  
  /*Doktor Button*/
  
  .button_container{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 70%;
    left: 30%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container a .button_on,
  .button_container a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }
  
  /*Kayıt Button*/
  
  .button_container1{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 70%;
    left: 60%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container1 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container1 a .button_on,
  .button_container1 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container1 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container1 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container1 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container1 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container1 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container1 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container1 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }
  

  .button_container4{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 40%;
    left: 45%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container4 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container4 a .button_on,
  .button_container4 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container4 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container4 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container4 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container4 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container4 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container4 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container4 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }

  .button_container5{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 55%;
    left: 45%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container5 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container5 a .button_on,
  .button_container5 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container5 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container5 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container5 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container5 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container5 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container5 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container5 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }

  .button_container6{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 70%;
    left: 45%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container6 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container6 a .button_on,
  .button_container6 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container6 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container6 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container6 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container6 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container6 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container6 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container6 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }
  



  .button_container3{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 70%;
    left: 45%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container3 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container3 a .button_on,
  .button_container3 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container3 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container3 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container3 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container3 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container3 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container3 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container3 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }


  .button_container11{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 42.5%;
    left: 45%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container11 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container11 a .button_on,
  .button_container11 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container11 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container11 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container11 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container11 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container11 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container11 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container11 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }


  .button_container10{
    position: absolute;
    width: 320px;
    height: 48px;
    perspective: 500px;
    top: 57.5%;
    left: 45%;
    margin: -24px 0 0 -80px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .button_container10 a{
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: translateZ(-25px);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .button_container10 a .button_on,
  .button_container10 a .button_arka{
    margin: 0;
    width: 320px;
    height: 48px;
    line-height: 48px;
    position: absolute;
    text-align: center;
    letter-spacing: .4em;
  }
  
  .button_container10 a .button_on{
    background-color: #E6E6FA;
    color: #301934;
    transform: rotateY(0) translateZ(24px);
  }
  
  .button_container10 a .button_arka{
    background-color: #301934;
    color: #E6E6FA;
    transform: rotateX(90deg) translateZ(24px);
    overflow: hidden;
  }
  
  .button_container10 a .button_arka:after{
    content: '';
    position: absolute;
    top: -32%;
    left: -10%;
    width: 120%;
    height: 50%;
    background: #E6E6FA;
    transform: rotate(8deg);
    transition: all .5s ease;
    transition-delay: .15s;
  }
  
  .button_container10 a:hover{
    transform: translateZ(-24px) rotateX(-90deg);
  }
  
  .button_container10 a:hover .button_on{
    background: #E6E6FA;
    transition: all .8s ease;
  }
  
  .button_container10 a:hover .button_arka{
    color: #E6E6FA;
    transition: color .4s linear;
    background: #301934;
  }
  
  .button_container10 a:hover .button_arka:after{
    transform: rotate(6deg)
    translate(100px,-25px);
  }
  
  /* Image Cards */
  
  .imagecard{
    position: absolute;
    width: 320px;
    height: auto;
    perspective: 500px;
    margin-left: 25%;
    margin-top: 8%;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .imagecard a{
    cursor: pointer;
  }

  .imagecard1{
    position: absolute;
    width: 320px;
    height: auto;
    perspective: 500px;
    margin-left: 55%;
    margin-top: 7%;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .imagecard1 a{
    cursor: pointer;
  }

  .imagecard2{
    position: absolute;
    width: 320px;
    height: auto;
    perspective: 500px;
    margin-left: 55%;
    margin-top: 8%;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .imagecard2 a{
    cursor: pointer;
  }



  
  /*Footer*/
  
  .footer
  {
    padding:15px 0 15px;
    font-size:15px;
    line-height:24px;
    color:#737373;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-weight: normal;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .footer a
  {
    padding-left: 4px;
    color:#737373;
    text-decoration: none;
    font-weight: 600;
  }
  .footer a:hover
  {
    color:#301934;
    text-decoration:none;
  }
  .footer__text
  {
    margin:0
  }
  
  /*Login Page*/

  
@font-face {
    font-family: Poppins-Regular;
    src: url('fonts/poppins/Poppins-Regular.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf'); 
  }
  
  @font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf'); 
  }
  
  @font-face {
    font-family: Montserrat-Bold;
    src: url('../fonts/montserrat/Montserrat-Bold.ttf'); 
  }

  .login100__form__btn button {
      outline: none !important;
      border: none;
      background: transparent;
  }
  
  .login100__form__btn button:hover {
      cursor: pointer;
  }
  
  .limiter {
    width: 100%;
    margin: 0 auto;
  }
  
  .container__login100 {
    width: 100%;  
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #fff;

  }
  
  .wrap__login100 {
    width: 640px;
    background: #301934;
    border-radius: 10px;
    overflow: hidden;

    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 13px 33px 95px;
  }

  .login100__form {
    width: 600px;
  }
  
  .wrap__input100 {
    position: relative;
    width: 100%;
    z-index: 1;
    margin-bottom: 10px;
    margin-left: 7%;
    margin-top: 20px;;
  }
  
  .input100 {
    font-family: Poppins-Medium;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    outline: none;
  
    display: flex;
    width: 85%;
    background: #E6E6FA;
    height: 50px;
    border-radius: 25px;
    padding: 0 25px 0 25px;
  }
  
  .container__login100__form__btn {
    width: 250px;
    display: flex;

    justify-content: center;
    padding-top: 40px;
    margin-left: 90px;
  }
  
  .login100__form__btn {
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
  }
  
  .login100__form__btn:hover {
    background: #0077b6;
  }
  
  .login100__form__title {
    font-family: Poppins-Bold;
    font-size: 24px;
    color: #E6E6FA;
    line-height: 1.2;
    text-align: center;
  
    width: 100%;
    display: block;
    padding-bottom: 40px;
    padding-right: 100px;
  }
  
  /* Modal */

  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
  }
  
  .modal-content {
    background-color: #301934;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 30%;
    border-radius: 25px;
  }

  .modal-content h3{
    text-align: center;
    color: #e6e6fa;
    margin-left: 15px;
    text-transform: uppercase;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .close-container{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .close-containerd{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .closebtn{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .closebtn1{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .closebtn2{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .closegiris{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .closegiris1{
    position: relative;
    margin: auto;
    width: 20px;
    height: 20px;
    float: right;
    cursor: pointer;
    margin-top: 9px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .leftright{
    height: 4px;
    width: 20px;
    position: absolute;
    background-color: #00b4d8;
    border-radius: 2px;
    transform: rotate(45deg);
    transition: all .3s ease-in;
  }
  
  .rightleft{
    height: 4px;
    width: 20px;
    position: absolute;
    background-color: #00b4d8;
    border-radius: 2px;
    transform: rotate(-45deg);
    transition: all .3s ease-in;
  }
  
  .close-container:hover .leftright{
    transform: rotate(-45deg);
    background-color:#9932CC;
  }
  .close-container:hover .rightleft{
    transform: rotate(45deg);
    background-color:#9932CC;
  }

  .closebtn:hover .leftright{
    transform: rotate(-45deg);
    background-color:#9932CC;
  }
  .closebtn:hover .rightleft{
    transform: rotate(45deg);
    background-color:#9932CC;
  }

  .closebtn1:hover .leftright{
    transform: rotate(-45deg);
    background-color:#9932CC;
  }
  .closebtn1:hover .rightleft{
    transform: rotate(45deg);
    background-color:#9932CC;
  }

  .closebtn2:hover .leftright{
    transform: rotate(-45deg);
    background-color:#9932CC;
  }
  .closebtn2:hover .rightleft{
    transform: rotate(45deg);
    background-color:#9932CC;
  }

  .closegiris:hover .leftright{
    transform: rotate(-45deg);
    background-color:#9932CC;
  }
  .closegiris:hover .rightleft{
    transform: rotate(45deg);
    background-color:#9932CC;
  }

  .closegiris1:hover .leftright{
    transform: rotate(-45deg);
    background-color:#9932CC;
  }
  .closegiris1:hover .rightleft{
    transform: rotate(45deg);
    background-color:#9932CC;
  }

  /*Modal Buttons*/

  .container_form_btn{
    width: 80%;
    display: flex;

    justify-content: center;
    margin: 20px 40px 20px 40px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .form_btn{
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;

    text-decoration: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .form_btn:hover{
    background: #0077b6;
  }

  .container_form_btn1{
    width: 80%;
    display: flex;

    justify-content: center;
    margin: 20px 40px 20px 40px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .form_btn1{
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;

    text-decoration: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .form_btn1:hover{
    background: #0077b6;
  }

  .container_form_btn2{
    width: 80%;
    display: flex;

    justify-content: center;
    margin: 20px 40px 20px 40px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .form_btn2{
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;

    text-decoration: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .form_btn2:hover{
    background: #0077b6;
  }

  .tcinputdiv{
    position: relative;
    width: 100%;
    z-index: 1;
    margin-top: 30px;
    margin-left: 12%;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .tcinput{
    font-family: Poppins-Medium;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
    outline: none;
    
  
    display: flex;
    width: 75%;
    background: #E6E6FA;
    height: 50px;
    border-radius: 25px;
    padding: 0 25px 0 25px;
  }
  
  .container_tc_btn{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 40px 20px 30%;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .tc_btn{
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .tc_btn:hover{
    background: #0077b6;
  }

  .container_giris_btn{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 40px 20px 30%;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .admin_container_giris_btn{
    width: 2%;
    margin: 2px 4px 2px 85%;

    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .admin_giris_btn{
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .giris_btn{
    font-family: Montserrat-Bold;
    font-size: 16px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;
  
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #00b4d8;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .giris_btn:hover{
    background: #0077b6;
  }

  .admin_btn{
    font-family: Montserrat-Bold;
    font-size: 8px;
    line-height: 1.5;
    color: #301934;
    text-transform: uppercase;
    outline: none;
  
    width: 50%;
    height: 20px;
    border-radius: 25px;
    background: #47254d;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
  
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .admin_btn:hover{
    background: #0077b6;
  }

  .arrow {
    border: solid #00b4d8;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding-top: 0px;
    padding: 5px;
    cursor: pointer;
    margin-left: 5px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }

  .left {
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  
  .left:hover {
    border: solid #0077b6;
    border-width: 0 3px 3px 0;
  }

  .arrow1 {
    border: solid #00b4d8;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding-top: 0px;
    padding: 5px;
    cursor: pointer;
    margin-left: 5px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .left1 {
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  
  .left1:hover {
    border: solid #0077b6;
    border-width: 0 3px 3px 0;
  }

  .arrow2 {
    border: solid #00b4d8;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding-top: 0px;
    padding: 5px;
    cursor: pointer;
    margin-left: 5px;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .left2 {
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
  }
  
  .left2:hover {
    border: solid #0077b6;
    border-width: 0 3px 3px 0;
  }

  /*Form*/

  .form h1{
    text-align: center;
    margin-top: 20px;
    color: #301934;
    text-transform: uppercase;
    -moz-user-select: none; 
    -webkit-user-select: none; 
    -ms-user-select: none; 
    user-select: none;
    -o-user-select: none;
  }
  
  .form form{
    background-color: #301934;
    width: 80%;
    margin-left: 10%;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 80px;
    
  }

  .profile {
    font-weight: 600;
    font-size: x-large;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    margin-left: 150px;
    border-spacing: 5px;
  }
  .profile a{
    padding-left: 4px;
    color:#737373;
    text-decoration: none;
    font-weight: 600;
  }

  .hastatable{
    margin-top: 15px;
    margin-left: 120px;
    margin-bottom: 85px;
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 85%;
    text-align: left;

    -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
      -moz-user-select: none; 
      -webkit-user-select: none; 
      -ms-user-select: none; 
      user-select: none;
      -o-user-select: none;
  }

  .hastatable td, .hastatable th {
    padding: 8px;
    text-align: left;

    -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
      -moz-user-select: none; 
      -webkit-user-select: none; 
      -ms-user-select: none; 
      user-select: none;
      -o-user-select: none;
  }

  .hastatable tr:nth-child(even){
  }

  .hastatable tr:hover {
    background-color: #ddd;
  }

  .hastatable th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #6a2975;
    color: white;
    padding-left: 15px;
    padding-right: 15px;

    -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
      -moz-user-select: none; 
      -webkit-user-select: none; 
      -ms-user-select: none; 
      user-select: none;
      -o-user-select: none;
  }

  .hastatable th a
  {
    padding-left: 2px;
    color:#fff;
    text-decoration: none;
    font-weight: 600;
  }
  .hastatable th a:hover
  {
    color:#6EFAFB;
    text-decoration:none;
  }

  .hastatable td a
  {
    padding-left: 4px;
    color:#6a2975;
    text-decoration: none;
    font-weight: 600;
  }
  .hastatable td a:hover
  {
    color:#301934;
    text-decoration:none;
  }


  .searchbar{
    margin-left: 74%;
  }

  .searchbar input[type=number]{
      width: 130px;
      height: 30px;
      border: 3px solid #6a2975;
      border-radius: 25px 0 0 25px;
      padding: 5px;
      float: left;
      border-right: none;
      outline: none;

      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
      -moz-user-select: none; 
      -webkit-user-select: none; 
      -ms-user-select: none; 
      user-select: none;
      -o-user-select: none;
  }

  .searchbar button[type=submit]{
      width: 30px;
      height: 30px;
      border: 1px solid #6a2975;
      background: #6a2975;
      text-align: center;
      color: #fff;
      border-radius: 0 25px 25px 0;
      cursor: pointer;
      font-size: 16px;

      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      -moz-transition: all 0.4s;
      transition: all 0.4s;
      -moz-user-select: none; 
      -webkit-user-select: none; 
      -ms-user-select: none; 
      user-select: none;
      -o-user-select: none;
      cursor: pointer;
  }

  /* Pano */

  .hastacardwrap{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
  }

  .hastacard{
    display: inline-block;
    margin-left: 1em;
    margin-right: 1em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    padding-bottom: 1em;
    width: 20em;
    background: #301934;
    border-radius: 1em;
  }

  .hastacard h1{
    padding-top: 0.5em;
    padding-left: 1.5em;
    text-align: center;
    color: #bddfef;
    text-transform: capitalize;
  }

  .hastacard h4{
    color: #bddfef;
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }

  .hastacard h4 a{
    color: #6ab2d4;
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-decoration: none;
  }

  .hastacard span{
    font-size: 200%;
    color: #bddfef;
    float: right;
    padding-right: 0.5em;
    cursor: pointer;
  }

  .randevusil{
    color: darkred;
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    text-decoration: none;
    display: inline-block;
    float: right;
    font-weight: bold;
    padding-right: 1em;
  }