/*!
Theme Name: UnhydLam
Theme URI: http://unhyd.me/
Author: Unhyd Team
Author URI: https://unhyd.com/
Description: a custom theme for limitless media
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: unhydlam
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

UnhydLam is based on unhyd https://unhyd.me/, (C) 2012-2020 Automattic, Inc.
unhyd is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */


/* Pill container */
.peptides-pagination {
  display: inline-flex;
  /* so the pill hugs the bullets */
  gap: 10px;
  /* space between dots */
  padding: 8px 14px;
  /* pill padding */
  border-radius: 9999px;
  /* full round pill */
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .08);
  /* ensure it never hides behind the slider */
  position: relative;
  z-index: 5;
  width: auto !important;
}

/* Dots */
.peptides-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .35);
  opacity: 1;
  /* override Swiper’s dimming */
  margin: 0;
  /* we use gap on the container */
  transition: transform .2s ease, background-color .2s ease;
}

.peptides-pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.1);
}


/* safari double arrow issue on accordian */

summary {
  list-style: none !important;
}

summary::-webkit-details-marker {
  display: none !important;
}


/* for scrolling invesible */

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}