.bold-my-labels label{font-weight:bold;}


@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-30px);
  }
  30% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(-4px);
  }
  70% {
    transform: translateY(-2px);
  }
  90% {
    transform: translateY(-1px);
  }
}

@keyframes bounceOut {
  0%, 20%, 40%, 60%, 80%, 100% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(-4px);
  }
  30% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(-1px);
  }
  70% {
    transform: translateY(-15px);
  }
  90% {
    transform: translateY(-30px);
  }
}

.error-container{
  
  z-index: 999;
  right:35%;
  position: fixed;
  bottom: 50%;
  animation: bounceIn 2s infinite; /* Sürekli bounce animasyonu */
 
}


.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  
}

.my-card:hover{
    transform: scale(1.1);
    transition: 0.2s ease-in-out;
  }
  
  
  :root {
    font-size: 16px;
    font-family: 'Open Sans';
    --text-primary: #b6b6b6;
    --text-secondary: #ececec;
    --bg-primary: #23232e;
    --bg-secondary: #141418;
    --transition-speed: 600ms;
  }
  
  body {
    /* color: black; */
    background-color: rgb(255, 255, 255);
    margin: 0;
    padding: 0;
  }
  
  body::-webkit-scrollbar {
    width: 0.70rem;
  }
  
  body::-webkit-scrollbar-track {
    background: #1e1e24;
  }
  
  body::-webkit-scrollbar-thumb {
    background: #008b8b;
  }
  
  main {
    margin-top: 2rem;
    margin-left: 5rem;
    padding: 1rem;
    display : none;
  }
  
  #loader {
    position: absolute;
    left: 50%;
    top: 50%;
    /* transform: translate(-50%,-50%); */
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #008B8B;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  #loader-img {
    width: 100%;
    height: auto;
    animation: spinlogo 2s linear infinite;
    -webkit-animation: spinlogo 2s linear infinite;
  }
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes spinlogo {
    0% {
        transform: rotate(360deg);
    }
  
    100% {
        transform: rotate(0deg);
    }
  }
  
  @-webkit-keyframes spinlogo {
  0% {
    -webkit-transform: rotate(360deg);
  }
  
  100% {
    -webkit-transform: rotate(0deg);
  }
  }
  
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }

  .sidebar {
    position: fixed;
    z-index: 999 !important;
    background-color: #035050;
    transition: width 600ms ease;
   
    /* overflow: scroll; */
  }

  
  .sidebar-nav {
    list-style: none;
    
    
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* align-items: center;  */
    height: 100%;
    z-index: 999999 !important;
  }
  
  .nav-item {
    width: 100%;
    margin-left: -1rem;
    z-index: 999999 !important;
  }
  
  /* .nav-item:last-child {
    margin-top: auto;
  } */
  
  .nav-link {
    display: flex;
    align-items: center;
    height: 3rem;
    color: #e4e4e4;
    text-decoration: none;
    /* filter: grayscale(100%) opacity(0.7); */
    transition: var(--transition-speed);
    z-index: 999999 !important;
  }
  
  .nav-link:hover {
    filter: grayscale(0%) opacity(1);
    background: var(--bg-secondary);
    color: var(--text-secondary);
  }
  
  .link-text {
    display: none;
    margin-left: 1rem;
  }
  
  .nav-link svg {
    width: 2rem;
    min-width: 2rem;
    margin: 0 1.5rem;
  }
  
  .fa-primary {
    color: #0a0a0a;
  }
  
  .fa-secondary {
    color: #eff5f5;
  }
  
  .fa-primary,
  .fa-secondary {
    transition: var(--transition-speed);
  }
  
  .logo {
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-secondary);
     background: #008b8b;
    /* var(--bg-secondary); */ 
    font-size: 1.5rem;
    letter-spacing: 0.3ch;
    width: 100%;
  }
  
  .logo svg {
    transform: rotate(0deg);
    transition: var(--transition-speed);
  }
  
  .logo-text
  {
    display: inline;
    position: absolute;
    left: -999px;
    transition: var(--transition-speed);
  }
  
  .sidebar:hover .logo svg {
    transform: rotate(-180deg);
  }
  
  /* Small screens */
  /* @media only screen and (max-width: 600px) {
    .sidebar {
      bottom: 0;
      width: 100vw;
      height: 4rem;
      overflow-x: auto;
    }
  
    .logo {
      display: none;
      
    }
  
    .sidebar-nav {
      flex-direction: row;
      width: 10rem;
      
     
    }
  
    .nav-link {
      justify-content: center;
      width: 4rem;
      min-width: 2rem;
      margin: 1rem 1rem;
      
      
    }
  
    main {
      margin: 0;
    }
  }
   */
  
    /* Small screens */
  @media only screen and (max-width: 600px) {
    .sidebar {
      bottom: 0;
      width: 100vw;
      height: 4rem;
      overflow-x: auto;
    }
    .nav-item {
     
      margin-top: 0rem;
    }
    .sidebar .link-text {
      display: inline;
      margin-left: -3.5rem;
      margin-top:3rem;
      font-size: 10px;
          justify-content: center;
    }
    .nav-link {
      justify-content: center;
      width: 4rem;
      min-width: 2rem;
      height: 1rem;
     
      margin: 0.3rem 1rem;

    }
   
    .nav-link svg {
      width: 1.5rem;
      min-width: 1.5rem;  
      height: 1.5rem;
    }

    
    .logo {
      display: none;
      
    }
  
    .sidebar-nav {
      flex-direction: row;
      width: 10rem;
      
     
    }
  
  
    .submenu-link {
      justify-content: center;
  
    }
    .submenu-link svg {
      display: none;
    }
    .submenu-text {
     font-size: 11px !important;
    }


    main {
      margin: 0;
    }

    #submenu_icon{
      display :none;
    }
    
    .submenu {
      position: fixed; 
      left: 30%;
      bottom: 60px;
      display: none;
      background-color:#6B4028 ;
      
      border-radius: 10px;
      box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
     
      z-index: 9999;
      
  }



  }
  


  
   /* Large screens */
  @media only screen and (min-width: 600px) {
    .sidebar {
      top: 0vh;
      width: 6rem;
      height: 100vh;
      overflow-y: auto;
      /* scrollbar-color: red yellow; */
    }
    ::-webkit-scrollbar{width:6px;border-left:1px solid #E6ECF8;}
    ::-webkit-scrollbar-thumb{background-color:#035050;}

    .sidebar-nav{
      margin-top: 3rem;
    }
  
    .sidebar:hover {
      width: 12rem;
    }
  
    .sidebar:hover .link-text {
      display: inline;
      margin-left: 0;
    }
  
    .sidebar:hover .logo svg
    {
      margin-left: 6rem;
    }
  
    .sidebar:hover .logo-text
    {
      left: 2rem;
    }
  }
  
  .dark {
    --text-primary: #b6b6b6;
    --text-secondary: #fffafa;
    --bg-primary: #23232e;
    --bg-secondary: #008b8b;
  }
  
  .light {
    --text-primary: #1f1f1f;
    --text-secondary: #000000;
    --bg-primary: #ffffff;
    --bg-secondary: #e4e4e4;
  }
  
  .solar {
    --text-primary: #576e75;
    --text-secondary: #35535c;
    --bg-primary: #fdf6e3;
    --bg-secondary: #f5e5b8;
  }
  
  .theme-icon {
    display: none;
  }
  
  .dark #darkIcon {
    display: block;
  }
  
  .light #lightIcon {
    display: block;
  }
  
  .solar #solarIcon {
    display: block;
  }
  
  
  /* -----
  SVG Icons - svgicons.sparkk.fr
  ----- */
  

  
  .wrapper{
    display: inline-flex;
    
    
    background: #fff;
    height: 100px;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    border-radius: 5px;
    padding: 10px 15px;
    box-shadow: 5px 5px 30px rgba(0,0,0,0.2);
  }
  .wrapper .option{
    background: #fff;
    height: 50%;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 5px 10px;
    border-radius: 10px;
    cursor: pointer;
    padding: 0px 10px ;
    border: 2px solid lightgrey;
    transition: all 0.3s ease;
  }
  .wrapper .option .dot{
    height: 20px;
    width: 20px;
    background: #d9d9d9;
    border-radius: 50%;
    position: relative;
  }
  .wrapper .option .dot::before{
    position: absolute;
    content: "";
    top: 4px;
    left: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    background: #008b8b;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  input[type="radio"]{
    display: none;
  }
  #option-1:checked:checked ~ .option-1,
  #option-2:checked:checked ~ .option-2,
  #option-3:checked:checked ~ .option-3,
  #option-4:checked:checked ~ .option-4{
    border-color: #008b8b;
    background: #008b8b;
  }
  #option-1:checked:checked ~ .option-1 .dot,
  #option-2:checked:checked ~ .option-2 .dot,
  #option-3:checked:checked ~ .option-3 .dot,
  #option-4:checked:checked ~ .option-4 .dot{
    background: #fff;
  }
  #option-1:checked:checked ~ .option-1 .dot::before,
  #option-2:checked:checked ~ .option-2 .dot::before,
  #option-3:checked:checked ~ .option-3 .dot::before,
  #option-4:checked:checked ~ .option-4 .dot::before{
    opacity: 1;
    transform: scale(1);
  }
  .wrapper .option span{
    font-size: 16px;
    color: #008b8b;
  }
  #option-1:checked:checked ~ .option-1 span,
  #option-2:checked:checked ~ .option-2 span,
  #option-3:checked:checked ~ .option-3 span,
  #option-4:checked:checked ~ .option-4 span{
    color: #fff;
  }
  @media only screen and (max-width: 700px) {
    .wrapper {
      height: 200px;
      flex-direction: column;
      
    }
  }
  