/*===========================
THEME SLIDER
===========================*/

.theme-slider {

     margin-top: 20px;

}

.theme-slider-header {

     display: flex;

     justify-content: space-between;

     align-items: center;

     margin-bottom: 15px;

}

.theme-slider-header span {

     font-size: 14px;

     color: #7b8190;

}

.theme-slider-header strong {

     color: #2a4173;

     font-size: 15px;

     font-weight: 700;

}

/*===========================*/

.theme-control {

     display: flex;

     align-items: center;

     gap: 16px;

}

/*===========================*/

#themeRange {

     appearance: none;

     -webkit-appearance: slider-vertical;

     width: 6px;

     height: 150px;

     border-radius: 20px;

     background: linear-gradient(to bottom,
               #ffffff,
               #aeb4c2,
               #1f2937);

     outline: none;

}

/* Chrome */

#themeRange::-webkit-slider-thumb {

     -webkit-appearance: none;

     width: 22px;

     height: 22px;

     border-radius: 50%;

     background: #2a4173;

     border: 4px solid #fff;

     cursor: pointer;

     box-shadow: 0 0 18px rgba(11, 110, 79, .35);

}

/*===========================*/

.theme-icon {

     width: 42px;

     height: 42px;

     border-radius: 50%;

     border: none;

     background: #f4f5f8;

     display: flex;

     align-items: center;

     justify-content: center;

     font-size: 18px;

     color: #7b8190;

     transition: .3s;

}

.theme-icon.active {

     background: #fff7df;

     color: #ffb300;

     box-shadow: 0 8px 20px rgba(255, 179, 0, .25);

}

.theme-icon:hover {

     transform: translateY(-2px);

}

/*==================================
THEME SLIDER
==================================*/

.theme-slider {
     width: 100%;
}

.theme-slider-header {

     display: flex;
     justify-content: space-between;
     align-items: center;

     margin-bottom: 22px;

}

.theme-slider-header span {

     font-size: 16px;
     font-weight: 600;
     color: #6b7280;

}

.theme-slider-header strong {

     font-size: 18px;
     font-weight: 700;
     color: #2a4173;

}

/*==================================
LAYOUT
==================================*/

.theme-control {

     display: flex;

     justify-content: center;

     align-items: center;

     gap: 30px;

}

/*==================================
ICONS
==================================*/

.theme-icons {

     display: flex;

     flex-direction: column;

     justify-content: space-between;

     height: 180px;

}

.theme-icon {

     width: 48px;
     height: 48px;

     border: none;

     border-radius: 50%;

     background: #f5f6fa;

     color: #7a7f87;

     display: flex;

     justify-content: center;

     align-items: center;

     font-size: 20px;

     cursor: pointer;

     transition: .35s;

     box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

}

.theme-icon:hover {

     transform: scale(1.08);

}

.theme-icon.active {

     background: #fff4d8;

     color: #ffb400;

     box-shadow:
          0 0 0 5px rgba(255, 180, 0, .18),
          0 12px 25px rgba(255, 180, 0, .25);

}

/*==================================
SLIDER
==================================*/

.theme-slider-area {

     display: flex;

     justify-content: center;

     align-items: center;

}

#themeRange {

     appearance: none;
     -webkit-appearance: none;

     width: 8px;
     height: 180px;

     border-radius: 50px;

     background: linear-gradient(to bottom,
               #ffffff,
               #d6dce5,
               #7c828b,
               #202938);

     cursor: pointer;

     outline: none;

     writing-mode: vertical-lr;

}

#themeRange::-webkit-slider-thumb {

     appearance: none;
     -webkit-appearance: none;

     width: 22px;
     height: 22px;

     border-radius: 50%;

     background: #2a4173;

     border: 4px solid #fff;

     box-shadow:
          0 0 0 5px rgba(11, 110, 79, .18),
          0 10px 22px rgba(11, 110, 79, .30);

}

#themeRange::-moz-range-thumb {

     width: 22px;
     height: 22px;

     border: none;

     border-radius: 50%;

     background: #2a4173;

}

/*==================================
ANIMATION
==================================*/

.theme-icon,
#themeRange {

     transition: .35s cubic-bezier(.175, .885, .32, 1.275);

}

/* button title */
/*=========================================
THEME BUTTON
=========================================*/

.theme-icon {
     width: 50px;
     height: 50px;
     border: none;
     border-radius: 50%;
     background: #f6f7fb;
     color: #737b87;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 20px;
     cursor: pointer;
     position: relative;
     overflow: visible;
     transition: .35s ease;
     box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.theme-icon:hover {
     transform: translateY(-3px);
}

.theme-icon.active {
     background: #fff4d8;
     color: #ffb300;
     box-shadow:
          0 0 0 5px rgba(255, 179, 0, .18),
          0 15px 30px rgba(255, 179, 0, .22);
}

/*=========================================
RIGHT SIDE TOOLTIP
=========================================*/

.theme-icon::after {

     content: attr(data-title);

     position: absolute;

     left: 65px;
     top: 50%;

     transform: translateY(-50%) translateX(-8px);

     background: #1f2937;
     color: #fff;

     font-size: 13px;
     font-weight: 600;

     padding: 9px 14px;

     border-radius: 10px;

     white-space: nowrap;

     opacity: 0;
     visibility: hidden;

     transition: .25s ease;

     pointer-events: none;

     z-index: 999999;

     box-shadow: 0 15px 35px rgba(0, 0, 0, .18);

}

/* Arrow */

.theme-icon::before {

     content: "";

     position: absolute;

     left: 58px;
     top: 50%;

     transform: translateY(-50%) translateX(-8px);

     border: 7px solid transparent;
     border-right-color: #1f2937;

     opacity: 0;
     visibility: hidden;

     transition: .25s ease;

     z-index: 999999;

}

.theme-icon:hover::after,
.theme-icon:hover::before {

     opacity: 1;
     visibility: visible;

     transform: translateY(-50%) translateX(0);

}

.theme-wrapper,
.theme-dropdown,
.theme-control,
.theme-icons {
     overflow: visible !important;
}

.theme-dropdown {
     z-index: 999999;
}