/* .logo img{
    object-fit: contain;
    display: block;
    width: 130px;
    height: 80px;
}
.user_setting{
    object-fit: contain;
    display: block;
    width: 130px;
    height: 80px;
}
.profileImage{
    object-fit: contain;
    display: block;
    width: 130px;
    height: 220px;
} */

.owl-dots {
    display: none !important;
}

/* The switch - this will create the toggle button */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }

  /* Hide the default checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 50px;
  }

  /* The circle inside the slider */
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
  }

  /* When the checkbox is checked, change the slider's background color */
  input:checked + .slider {
    background-color: #4CAF50;
  }

  /* Move the slider's circle when checked */
  input:checked + .slider:before {
    transform: translateX(26px);
  }
