:root {
	font-family: "Montserrat", sans-serif;
	padding: 0px;
	margin: 0px;
	font-size: 62.5%;
	box-sizing: border-box;
	--primary-color: #21b0f2;
	--header-bg-light-color: #fff;
	--header-boxshadow-light-color: rgba(0, 0, 0, 0.3);
	--seperator: #8a8a8f;
	--code-highlight: #ffa07a;
	--disabled-background: rgba(0, 0, 0, 0.1);
	--disabled-text: rgba(0, 0, 0, 0.4);
	--primary-color-hover: #17a3e4;
	--secondary-color-hover: #ec6a37;
	--btn-boxshadow-light: rgba(0, 0, 0, 0.3) 0rem 0.4rem 1.2rem;
	--success-color: #47ffa9;
	--warning-color: #fde047;
	--error-color: #ff6666;
}
/* 
* {
	margin: 0px;
	padding: 0px;
} */

/* alert box */
.scl-alert {
	padding: 1rem;
	border: 1px solid black;
	margin: 4rem;
	width: 30%;
	font-size: 1.5rem;
	font-weight: 500;
	color: black;
	box-shadow: 0em 0.75em 1em 0.1em var(--header-boxshadow-light-color);
	display: flex;
	justify-content: space-between;
}

/* styling for alert boxes */

#scl-alert-primary {
	background-color: var(--primary-color);
}

#scl-alert-success {
	background-color: var(--success-color);
}

#scl-alert-warning {
	background-color: var(--warning-color);
}

#scl-alert-error {
	background-color: var(--error-color);
}

/* avatar design */
.scl-avatar {
	border-radius: 5rem;
	margin: 1rem;
}

/* avatar parameters */
.scl-avatar-lg {
	height: 10rem;
	width: 10rem;
}

.scl-avatar-md {
	height: 8rem;
	width: 8rem;
}

.scl-avatar-sm {
	height: 5rem;
	width: 5rem;
}

/* text avatar design */
.scl-avatar-txt {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--primary-color);
	font-size: 4rem;
}

.scl-badge {
	display: inline-block;
	height: 2rem;
	width: 2rem;
	border-radius: 99999rem;
	position: relative;
	bottom: 2rem;
	right: 4rem;
}

.scl-badge-online {
	background-color: var(--active-badge);
}

.scl-badge-offline {
	background-color: var(--offline-badge);
}

.scl-badge-away {
	background-color: rgb(255, 217, 0);
	right: 3.5rem;
}

.scl-badge-busy {
	background-color: var(--busy-badge);
	height: 1.5rem;
	width: 1.5rem;
	bottom: 1.5rem;
	right: 3rem;
}

.scl-badge-icon {
	height: 4rem;
	width: 4rem;
}

.scl-badge-number {
	background-color: red;
	font-size: 1.5rem;
	font-weight: 500;
	color: #fff;
	border-radius: 9999999rem;
	height: 2rem;
	width: 2rem;
	bottom: 5rem;
	left: 2.5rem;
	display: flex;
	justify-content: center;
}

.scl-badge-wrapper {
	margin-left: 2rem;
}

/* deafult button styling */
.scl-btn {
	padding: 1rem;
	margin: 1rem;
	border: none;
	box-shadow: var(--btn-boxshadow-light);
}

/* default button hover styling */
.scl-btn:hover {
	cursor: pointer;
}

/* primary btn styling */
.scl-btn-primary {
	background-color: var(--primary-color);
	color: white;
}

/* primary btn hover styling */
.scl-btn-primary:hover {
	background-color: var(--primary-color-hover);
	color: white;
}

/* secondary btn styling */
.scl-btn-secondary {
	background-color: var(--code-highlight);
}

/* secondary btn hover styling */
.scl-btn-secondary:hover {
	background-color: var(--secondary-color-hover);
}

/* disbaled btn styling */
.scl-btn-disabled {
	background-color: var(--disabled-background);
	color: var(--disabled-text);
}

/* disbaled btn hover styling */
.scl-btn-disabled:hover {
	cursor: default;
}

/* btn outline styling */
.scl-scl-btn-outline {
	background-color: #fff;
	border: 2px solid var(--primary-color);
	letter-spacing: 0.1rem;
}

/* btn outline hover styling */
.scl-btn-outline:hover {
	background-color: var(--primary-color);
	color: #fff;
}

/* small btn outline styling */
.scl-btn-outline-small {
	background-color: #fff;
	border: 2px solid var(--code-highlight);
	padding: 0.5rem;
}

/* small btn outline hover styling */
.scl-btn-outline-small:hover {
	background-color: var(--code-highlight);
}

/* btn text styling */
.scl-btn-text {
	background-color: transparent;
	box-shadow: none;
	text-decoration: underline;
	letter-spacing: 0.2rem;
	font-size: 1.5rem;
}

/* btn text hover styling */
.scl-btn-text:hover {
	background-color: #ececf6;
}

/* icon btn primary styling */
.scl-btn-icon-primary {
	background-color: var(--primary-color);
	display: flex;
	justify-content: baseline;
	font-size: 1.7rem;
	color: #fff;
}

/* icon btn primary hover styling */
.scl-btn-icon-primary:hover {
	background-color: var(--primary-color-hover);
}

/* icon btn secondary styling */
.scl-btn-icon-secondary {
	background-color: var(--code-highlight);
	display: flex;
	justify-content: baseline;
	font-size: 1.7rem;
}

/* icon btn secondary hover styling */
.scl-btn-icon-secondary:hover {
	background-color: var(--secondary-color-hover);
}

/* deafult icon btn styling */
.scl-icon {
	padding-right: 1rem;
}

/* primary btn float styling */
.scl-btn-float-primary {
	background-color: var(--primary-color);
	border-radius: 9999rem;
}

/* primary btn float hover styling */
.scl-btn-float-primary:hover {
	background-color: var(--primary-color-hover);
}

/* secondary btn float styling */
.scl-btn-float-secondary {
	background-color: var(--code-highlight);
	border-radius: 9999rem;
}

/* secondary btn float hover styling */
.scl-btn-float-secondary:hover {
	background-color: var(--secondary-color-hover);
}

.card-snippet {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 2rem;
}

/* card heading */
.card-heading {
	font-size: 3rem;
	font-weight: 500;
}

/* card description */
.card-description {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	width: 90%;
}

/* card wrapper */
#tom-basic {
	height: auto;
}

/* image in card */
#img-basic {
	height: 19.6rem;
	width: 35rem;
}

/* text in image */
#text {
	padding-left: 1rem;
	padding-right: 1rem;
}

/* text-container in image */
#tom {
	position: relative;
}

/* text styling in card */
#tom-text {
	position: absolute;
	bottom: 4rem;
	color: ivory;
	width: fit-content;
	font-size: 1.5rem;
}

#tom-textonly {
	position: absolute;
}

/* author text styling in card */
#tom-author {
	position: absolute;
	bottom: 1.5rem;
	color: ivory;
	width: fit-content;
	font-size: 1.2rem;
}

/* informative text styling in card */
#text-cont {
	font-size: 1.2rem;
	color: rgb(0, 0, 0);
}

/* card with dismiss styling */
#tom-basic {
	display: flex;
	flex-direction: column;
	background-color: antiquewhite;
	height: 31.5rem;
	width: 35rem;
}

/* icon buttons styling */
#icons-btn {
	height: 3.5rem;
	width: 3.5rem;
	border-radius: 100%;
	padding-left: 1rem;
	padding-right: 1rem;
}

#icons-btn:hover {
	background-color: var(--primary-color-hover);
}

/* badge icon styling */
/* .badge-icon {
	height: 10rem;
	width: 6rem;
	position: relative;
	left: 1rem;
	top: -1.5rem;
	filter: invert(32%) sepia(58%) saturate(2868%) hue-rotate(169deg)
		brightness(132%) contrast(91%);
	z-index: 1;
} */

/* badge styling */
#main {
	position: relative;
	top: -8.3rem;
}

#btns {
	position: relative;
	top: -8rem;
}

/* discount badge styling */
#discount {
	position: relative;
	left: 2.5rem;
	top: -5.5rem;
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	z-index: 1;
}

/* card with dismiss styling */
.badge-icon-close {
	height: 3rem;
	width: 3rem;
	position: relative;
	left: 30rem;
	top: 1rem;
	z-index: 2;
	filter: opacity(0.8);
}

.badge-icon-close:hover {
	background-color: var(--primary-color-hover);
	border-radius: 99999rem;
}

#main-close {
	position: relative;
	top: -3rem;
}

#btns-close {
	position: relative;
	top: -3rem;
	left: 2rem;
}

/* card with text overlay styling */
#text-overlay {
	padding-left: 1rem;
	padding-right: 1rem;
	position: relative;
	top: -12rem;
}

#text-cont-overlay {
	font-size: 1.2rem;
	color: white;
	position: relative;
	top: 5rem;
}

#btns-overlay {
	position: relative;
	top: -6rem;
	left: 2rem;
}

#tom-basic-overlay {
	display: flex;
	flex-direction: column;
	background-color: antiquewhite;
	height: 25.5rem;
	width: 35rem;
}

/* text only card styling */
#tom-basic-textonly {
	display: flex;
	flex-direction: column;
	background-color: antiquewhite;
	height: 15rem;
	width: 35rem;
	padding: 1rem;
	border-radius: 1rem;
}

#text-cont-textonly {
	color: black;
	position: relative;
	top: 8rem;
}

/* horizontal card styling */
#img-hr {
	max-width: 40%;
	height: auto;
}

#main-hr {
	display: flex;
}

#basic-hr,
#basic-hr-shadow {
	display: flex;
	flex-direction: column;
	background-color: antiquewhite;
	height: 41rem;
	width: 35rem;
	height: auto;
}

#btns-hr {
	position: relative;
	left: 10rem;
	top: 10rem;
	margin-left: 10rem;
}

/* horizontal card with shadow */
#basic-hr-shadow {
	box-shadow: var(--card-boxshadow);
}

.scl-grid-container-2 {
	display: grid;
	grid-template-columns: repeat(2, 0.1fr);
}

.scl-grid-cell {
	background-color: var(--primary-color);
	color: #fff;
	margin: 1rem;
	font-size: large;
	text-align: center;
}

.scl-grid-container-3 {
	display: grid;
	grid-template-columns: repeat(3, 0.15fr);
}

.image-snippet {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 1rem;
}

/* image heading */
.image-heading {
	font-size: 3rem;
	font-weight: 500;
}

/* image description */
.image-description {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	width: 90%;
}

.img-res {
	max-width: 100%;
	height: auto;
}

.round-image {
	border-radius: 9rem;
	width: 100px;
	height: 100px;
}

.scl-input {
	border: 0.2rem solid rgba(0, 0, 0, 0.3);
	width: 20rem;
	height: 3rem;
}

.scl-input:focus {
	border: 0.2rem solid black;
}

.scl-input-validation {
	border: 0.2rem solid rgba(255, 0, 0, 0.5);
	width: 20rem;
	height: 3rem;
}

.scl-input-validation-text {
	color: red;
	font-size: 1.2rem;
	font-weight: 500;
}

/* list item styling */
.scl-list-item {
	margin: 2rem;
	padding: 1rem;
	width: 10rem;
	cursor: pointer;
}

/* list item hover  */
.scl-list-item:hover {
	background-color: #f1f1f1;
}

/* various list styling */
.scl-list-numbers {
	list-style: decimal;
}

.scl-list-roman {
	list-style: lower-roman;
}

.scl-list-alphabet {
	list-style: lower-alpha;
}

.scl-list-none {
	list-style: none;
}

/* stacked list styling */
.scl-stacked-item {
	font-size: 1.5rem;
	list-style: none;
	padding: 1rem;
	width: 30rem;
	margin: 1rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

/* stacked list item styling */
.scl-primary {
	background-color: var(--primary-color);
	font-weight: 500;
}

.scl-success {
	background-color: var(--success-color);
	font-weight: 500;
}

.scl-warning {
	background-color: var(--warning-color);
	font-weight: 500;
}

.scl-error {
	background-color: var(--error-color);
	font-weight: 500;
}

img {
	cursor: pointer;
}

.slider-snippet {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 1rem;
}

/* slider-heading */
.slider-heading {
	font-size: 3rem;
	font-weight: 500;
}

/* slider description */
.slider-description {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	width: 90%;
}

.slider {
	-webkit-appearance: none;
	height: 25px;
	background: #d3d3d3;
	outline: none;
	opacity: 0.7;
}

.slider:hover {
	opacity: 1;
}

.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 25px;
	height: 25px;
	background: var(--primary-color);
	cursor: pointer;
}

.slider::-moz-range-thumb {
	width: 25px;
	height: 25px;
	background: var(--primary-color);
	cursor: pointer;
}

.vertical-sldier {
	padding: 8rem 0rem 8rem 0rem;
	transform: rotate(270deg);
}

#range-value {
	margin: -2.5rem 0rem 0rem 7rem;
	font-size: 1.5rem;
}

#volume-icon {
	margin: -2rem 0rem 0rem -10rem;
}

.scl-toast-btn-wrapper {
	display: flex;
	justify-content: space-between;
	width: 60%;
}

.scl-toast-btn {
	font-weight: 600;
	font-size: 1.5rem;
	padding: 1rem;
	background-color: var(--primary-color);
	color: #fff;
	box-shadow: var(--btn-boxshadow-light);
	cursor: pointer;
}

.scl-toast-wrapper {
	width: 20rem;
	font-size: 2rem;
	display: none;
	box-shadow: var(--btn-boxshadow-light);
	justify-content: space-around;
	padding: 0.8rem;
}

.scl-left {
	color: #fff;
	background-color: var(--primary-color);
	position: fixed;
	bottom: 2rem;
	left: 2rem;
}

.util-snippet {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 1rem;
}

/* util heading */
.util-heading {
	font-size: 3rem;
	font-weight: 500;
}

/* util description */
.util-description {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	width: 90%;
}

/* heading styles */
.heading-1 {
	font-size: 3rem;
	font-weight: 500;
}

.heading-2 {
	font-size: 2.5rem;
	font-weight: 400;
}

.heading-3 {
	font-size: 2rem;
	font-weight: 400;
}

/* small text style */
.small-text {
	font-size: 1rem;
}

/* grey text style */
.grey-text {
	font-size: 1.5rem;
	color: var(--grey-text);
}

/* align styles */
.left-text {
	text-align: left;
}

.center-text {
	text-align: center;
}

.right-text {
	text-align: right;
}

/* additional styles */
.warning-text {
	color: var(--warning-text);
}

.error-text {
	color: var(--error-text);
}

.wgt-900 {
	font-weight: 900;
}

.wgt-500 {
	font-weight: 500;
}

.wgt-200 {
	font-weight: 200;
}

.navigation-snippet {
	font-size: 2rem;
	font-weight: 500;
	margin-top: 1rem;
}

/* navigation heading */
.navigation-heading {
	font-size: 3rem;
	font-weight: 500;
}

/* navigation description */
.navigation-description {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 1.5rem;
	width: 90%;
}

.header-component {
	display: flex;
	justify-content: space-between;
	background-color: var(--navbar-color-lighttheme);
	width: 70%;
	box-shadow: 0.75em 0.75em 1em var(--header-boxshadow-light-color);
	color: var(--navbar-text-color-lighttheme);
	margin-bottom: 3rem;
}

.branding {
	display: flex;
	font-size: 2rem;
	margin: 1rem;
	padding: 1rem;
}
.header-component-more {
	display: flex;
	font-size: 2rem;
	margin: 1rem;
	padding: 1rem;
}

.more {
	margin-right: 2rem;
}

.header-component-logo {
	padding-right: 2rem;
}

.link {
	background-color: var(--navbar-color-lighttheme);
	color: var(--navbar-text-color-lighttheme);
	font-size: 2rem;
	border: none;
}

.subnav {
	position: relative;
	margin-right: 2rem;
}

.subnav-content {
	position: absolute;
	left: 0.25rem;
	color: var(--navbar-text-color-lighttheme);
	display: flex;
	flex-direction: column;
	margin-top: -0.2rem;
	padding: 1rem;
	display: none;
	background-color: var(--navbar-color-lighttheme);
	letter-spacing: 0.2rem;
}

.subnav > .link:focus + .subnav-content {
	display: block;
}

.subnav-content-hamburger {
	position: absolute;
	left: -1.45rem;
	color: var(--navbar-text-color-lighttheme);
	display: flex;
	flex-direction: column;
	margin-top: -0.2rem;
	padding: 1rem;
	display: none;
	background-color: var(--navbar-color-lighttheme);
	letter-spacing: 0.2rem;
}

.subnav > .link:focus + .subnav-content-hamburger {
	display: block;
}

/* Responsive navbar */

.scl-navbar-menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	background-color: var(--navbar-bg-color);
	width: 100%;
	box-shadow: 0.75em 0.75em 1em var(--header-boxshadow-light-color);
	color: var(--navbar-text-color);
	font-size: 2rem;
	padding: 2rem;
	position: sticky;
	top: 0;
}

.scl-dropdown-name {
	background-color: #fff;
	color: var(--navbar-text-color);
	font-size: 3rem;
	border: none;
	margin-right: 2rem;
	padding: 1rem;
}

.scl-navbar-content {
	position: relative;
}

.scl-dropdown-menu {
	display: flex;
	flex-direction: column;
	color: black;
	position: absolute;
	left: 0;
	top: calc(100%);
	background-color: white;
	border-radius: 0.25rem;
	box-shadow: 0 0.2rem 0.5rem 0 rgba(0, 0, 0, 0.1);
	width: max-content;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-1rem);
	transition: opacity 150ms ease-in-out, transform 150ms ease-in-out;
	z-index: 3;
}

.scl-navbar-content.active > .scl-dropdown-name + .scl-dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.scl-navbar-content.active > .scl-dropdown-name,
.scl-dropdown-name:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.scl-navbar-content.active > .scl-dropdown-name {
	background-color: rgba(0, 0, 0, 0.3);
}

.scl-dropdown-content {
	font-size: 2rem;
	padding: 1rem;
}

a {
	text-decoration: none;
	color: black;
}

.scl-dropdown-content:hover {
	background-color: rgba(0, 0, 0, 0.1);
}

.scl-dropdown-arrow {
	height: 2rem;
	width: 2rem;
}

.scl-dropdown-name-phone {
	background-color: var(--navbar-bg-color);
	color: var(--navbar-text-color);
	font-size: 3rem;
	border: none;
	margin: 1rem 0 0 1rem;
	display: flex;
	align-items: baseline;
	width: 100%;
}

.scl-dropdown-menu-phone {
	flex-direction: column;
	margin-left: 1rem;
	padding-left: 1rem;
	/* box-shadow: inset 0 0 1rem rgba(0, 0, 0, 0.3); */
	display: none;
}

.scl-dropdown-content-phone {
	font-size: 2rem;
	padding: 1rem;
}

.scl-navbar-content-phone.active-phone
	> .scl-dropdown-name-phone
	+ .scl-dropdown-menu-phone {
	display: flex;
}

.scl-hamburger-container {
	position: absolute;
	right: 5rem;
	margin-right: 1rem;
	padding-top: 1.3rem;
	height: 3.5rem;
	cursor: pointer;
	display: none;
}

.scl-hamburger {
	height: 0.4rem;
	width: 3rem;
	margin: 0.6rem;
	background: var(--primary-color);
	cursor: pointer;
	display: block;
}

.scl-hamburger1 {
	display: none;
	transition: 500ms ease-in-out;
}

.scl-hamburger2 {
	transform: translate(0px, 10px) rotate(45deg);
	transition: 300ms ease-in-out;
}

.scl-hamburger3 {
	transform: rotate(-45deg);
	transition: 300ms ease-in-out;
}

.scl-navbar-items {
	display: flex;
}

.scl-side-bar {
	position: fixed;
	display: none;
	top: 0;
	right: 0;
	bottom: 0;
	margin-top: 9rem;
	background-color: #fff;
	z-index: 2;
	width: 30rem;
	overflow-y: scroll;
	overflow-x: hidden;
	border-left: 0.2rem solid #d7d7d7;
	animation: speed 500ms ease-in-out;
	box-shadow: 0.75em 0.75em 6em var(--header-boxshadow-light-color);
}

@keyframes speed {
	0% {
		margin-right: -20vw;
	}
}

.scl-hide {
	display: block;
}

@media all and (max-width: 760px) {
	.scl-hamburger-container {
		display: block;
	}

	.scl-side-bar {
		overflow-y: scroll;
	}

	.scl-navbar-menu {
		height: 5rem;
	}

	.scl-navbar-items {
		display: none;
	}
	.scl-navbar-items-phone {
		flex-direction: column;
	}
}

@media all and (min-width: 760px) {
	.scl-side-bar {
		display: none;
	}
}
