/*
 * Caledros Basic Blocks - Easy to use Gutenberg blocks
 * Copyright (C) 2025  David Arnado
 * 
 * This file is part of Caledros Basic Blocks.
 * 
 * Caledros Basic Blocks is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.

 * Caledros Basic Blocks is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License along
 * with Caledros Basic Blocks; if not, see <https://www.gnu.org/licenses/>.
 */

/*Switcher slider image for light theme*/
.cbb-dark-light-switcher__slider::before {
  position: absolute;
  height: 28px;
  width: 28px;
  left: 4px;
  bottom: 2.5px;
  border-radius: 50%;
  transition: all 0.5s;
  content: url("./assets/sun.svg");
}
/*Switcher slider background for light theme*/
.cbb-dark-light-switcher__slider {
  background: linear-gradient(
    83deg,
    rgba(104, 209, 224, 1) 11%,
    rgba(68, 189, 214, 1) 56%,
    rgba(31, 169, 203, 1) 98%
  );
}

/* Hide the switcher checkbox */
.cbb-dark-light-switcher__checkbox {
  display: none !important;
}
