/* 
Order -> base -> typography -> general layout -> grid -> page layout -> components
Breakpointss
0 - 600px: Phone screens
600px - 900px: tablet portrait
900px - 1200px: tablet landscape
[1200px - 1800px] normal code written
1800px ++: big desktop
*/
/* 
breakpoint choices
--phone
--tab-port
--tab-land
--big-screen
 */
 :root {
	--color-main: #007db8;
  --color-secondary: #e42022;
	--color-tertairy: #161614;
	--search-butt-hov: hsla(199, 100%, 36%, 0.541);
	--color-light-1: #fff;
	--color-light-2: #f1f1f1;
	--color-light-3: #eeeeee;
	--color-light-4: #dad6d6a1;
	--color-dark-1: #000;
	--color-dark-2: rgb(150, 148, 148);
	--color-dark-3: #2d3436;
	--color-danger: #f32013;
	--color-success: #8de02c;
	--color-pending: #f3ca3f;
	--color-active: #1795ce;
	--color-approved: #ee82ee;
	--gradient-color: linear-gradient(
		to right bottom,
		var(--color-main),
		var(--color-secondary)
	);
	--gradient-color-reverse: linear-gradient(
		to right bottom,
		var(--color-secondary),
		var(--color-main)
	);
	/* ************************************************************************************* */
	/* Headings */
	--heading-font-size: 4.5rem;
	--heading-font-size-ms-ml: 3rem;
	--heading-font-weigth: 700;
	--heading-font-family: Georgia, sans-serif, serif;
	--heading-font-transform: uppercase;
	--heading-font-spacing: 0.2rem;
	/* Subheadings */
	--subheading-font-size: 3.5rem;
	--subheading-font-size-ms-ml: 1.8rem;
	--subheading-font-weigth: 600;
	--subheading-font-family: Verdana, "Times New Roman", Times;
	--subheading-font-transform: capitalize;
	--subheading-font-spacing: 0.1rem;
	/* Body */
	--body-font-size: 1.9rem;
	--body-font-weigth: 500;
	--body-font-family: Tahoma, Arial, Helvetica;
	--body-font-transform: none;
	--body-font-spacing: 0rem;
	--body-font-color: var(--color-tertairy);

	/* Small */
	--small-font-size: 1.6rem;
	--small-font-weigth: 400;
	/* ************************************************************************************* */
	/* Buttomn Colors */
	--button-text-color-light: var(--color-light-1);
	--button-text-color-dark: var(--color-tertairy);
	--button-background-heading: var(--color-tertairy);
	--button-background-secondary: var(--color-main);
	--button-background-white: var(--color-light-2);
	--button-text-shadow-light: 2px 2px 0 var(--color-dark-2);
	--button-text-shadow-dark: 2px 2px 0 var(--color-light-1);
	/* Box shadow */
	--boxsh: 0 2rem 6rem rgba(var(--color-dark-2-1), 0.3);
	--box-shadow: 0 0.7rem 2.5rem rgba($color: #000, $alpha: 0.08);
	--border: 1px solid var(--border-color: );
	--form-text-color: #555353;
	/* Text shadows */
	--heading-shadow: -2.5px 2.5px #fff;
	--subheading-shadow: -2.5px 2.5px #fff;
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    box-shadow: none;
  }
  50% {
    transform: scale(1.05);
    box-shadow: var(--boxsh);
  }
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}
/* @keyframes moveInLeft{
    0%{
        opacity: 0;
        transform: translateX(-0.1rem);
    }
    80%{
        transform: translateX(1rem);
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes moveInRight{
    0%{
        opacity: 0;
        transform: translateX(10rem);
    }
    80%{
        transform: translateX(-0.1rem);
    }
    100%{
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes moveInBottom{
    0%{
        opacity: 0;
        transform: translateY(3rem);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
} */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-family: var(--body-font-family);
  /* Track */
  /* Handle */
}
html:hover {
  cursor: pointer;
}
html::before,
html::after {
  cursor: default;
}
html:active {
  cursor: grabbing;
}
html::-webkit-scrollbar {
  width: 1rem;
}
html::-webkit-scrollbar-track {
  box-shadow: inset 1px 1px 10px var(--color-main);
  border-radius: 1rem;
}
html::-webkit-scrollbar-track:hover {
  box-shadow: inset 1px 1px 10px var(--color-main);
}
html::-webkit-scrollbar-thumb {
  background-image: var(--gradient-color);
  border-radius: 1rem;
}
html::-webkit-scrollbar-thumb:hover {
  background-image: var(--gradient-color-reverse);
}
head {
  cursor: initial;
}
body {
    box-sizing: border-box;
  font-family: sans-serif, Arial, Helvetica;
  line-height: 1.6;
  color: var(--text-color-dark);
  cursor: default;
}
a:focus,
a:active,
button:active,
button:focus {
  outline: none;
  text-decoration: none;
}
::selection {
  background-color: var(--color-main);
  color: var(--color-light-1);
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.main-container {
  background-color: var(--color-light-2);
}
[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}
[data-title]:after {
  content: attr(data-title);
  position: absolute;
  bottom: -1em;
  font-size: var(--small-font-size);
  left: 70%;
  border-style: dashed double none;
  padding: 4px 4px 4px 8px;
  color: var(--color-light-1);
  white-space: nowrap;
  border-radius: 8px;
  box-shadow: 0px 0px 4px #666;
  background-color: var(--color-main);
  opacity: 0;
  z-index: 99999;
  visibility: hidden;
}
[data-title] {
  position: relative;
}
.heading-text {
  text-transform: var(--heading-font-transform);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weigth);
  font-family: var(--heading-font-family);
  color: var(--heading-font-color);
  letter-spacing: var(--heading-font-spacing);
  margin: 1rem;
  transition: all 0.2s;
  background-image: linear-gradient(to right, var(--color-main), var(--color-main));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
}
.heading-text--center-auto {
  text-align: center;
  margin: auto;
}
.heading-text--center-auto:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 37.25em) {
  .heading-text {
    text-align: center;
  }
}
.subheading-text {
  text-transform: var(--subheading-font-transform);
  font-size: var(--subheading-font-size);
  font-weight: var(--subheading-font-weigth);
  font-family: var(--subheading-font-family);
  color: var(--subheading-font-color);
  letter-spacing: var(--subheading-font-spacing);
}
@media only screen and (max-width: 37.25em) {
  .subheading-text {
    text-align: center;
  }
}
.body-text {
  text-transform: var(--body-font-transform);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  letter-spacing: var(--body-font-spacing);
}
.ad-text-light {
  text-transform: var(--body-font-transform);
  font-size: var(--body-font-size);
  font-weight: var(--subheading-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color-ligth);
  letter-spacing: var(--body-font-spacing);
}
.small-text {
  text-transform: var(--body-font-transform);
  font-size: var(--small-font-size);
  font-weight: var(--small-font-weigth);
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  letter-spacing: var(--body-letter-spacing);
}
.u-center-text {
  text-align: center !important;
}
.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-small {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 37.25em) {
  .u-margin-bottom-small {
    margin-bottom: 0.5rem !important;
  }
}
.u-margin-bottom-med {
  margin-bottom: 5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-med {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 37.25em) {
  .u-margin-bottom-med {
    margin-bottom: 5rem !important;
  }
}
.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-big {
    margin-bottom: 5rem !important;
  }
}
@media only screen and (max-width: 37.25em) {
  .u-margin-bottom-big {
    margin-bottom: 3rem !important;
  }
}
.u-margin-bottom-huge {
  margin-bottom: 10rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-bottom-huge {
    margin-bottom: 7rem !important;
  }
}
.u-margin-top-big {
  margin-top: 8rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-top-big {
    margin-top: 5rem !important;
  }
}
.u-margin-top-med {
  margin-top: 5rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-top-med {
    margin-top: 2rem !important;
  }
}
.u-margin-top-huge {
  margin-top: 10rem !important;
}
@media only screen and (max-width: 56.25em) {
  .u-margin-top-huge {
    margin-top: 7rem !important;
  }
}
.btn-center {
  text-align: center;
}
.float-right {
  float: right;
}
.float-left {
  float: left;
}
.alert-container {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 10px;
  margin-top: 5px;
}
.alert {
  transition: 0.5s ease-in-out;
  padding: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px var(--color-dark-1);
  width: 80%;
  background-color: var(--color-danger);
  color: var(--color-light-1);
}
.alert-two {
  transition: 0.5s ease-in-out;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem;
  text-shadow: 2px 2px 4px var(--color-dark-1);
  width: 80%;
  background-color: var(--color-success);
  color: var(--color-light-1);
}
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
.closebtn:hover {
  color: var(--color-danger);
}
.advert {
  height: 100px;
  display: flex;
  align-items: center;
  background-image: var(--gradient-color);
  justify-content: center;
  border-top-left-radius: 3.7rem;
  border-bottom-right-radius: 3.7rem;
}
/* Modal Buttons */
/* Modal Buttons */
.cta__btn-max {
	position: relative;
	background-color: var(--color-light-1);
	text-shadow: var(--button-text-shadow-light);
	border: 0;
	margin: 0.2rem;
	width: 90%;
	height: 5rem;
}
.cta__btn-max:before,
.cta__btn-max:after {
	content: "";
	position: absolute;
	inset: 0;
	transition: 0.5s;
	background: var(--color-main);
}
.cta__btn-max:nth-child(1):before,
.cta__btn-max:nth-child(1):after {
	background: linear-gradient(
		45deg,
		var(--color-main),
		var(--color-tertairy),
		var(--color-tertairy),
		var(--color-main)
	);
}
.cta__btn-max:hover:before {
	inset: -3px;
}
.cta__btn-max:hover:after {
	inset: -3px;
	filter: blur(1.6rem);
}
.cta__btn-max--text {
	cursor: pointer;
	position: absolute;
	color: var(--color-light-1);
	width: 100%;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--color-tertairy);
	z-index: 10;
	display: flex;
	justify-content: space-around;
	align-content: center;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	border: 1px solid var(--color-dark-2);
	overflow: hidden;
}
.cta__btn-max--text::before {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.2);
	transform: skew(25deg);
}
.cta__btn {
	position: relative;
	background-color: var(--color-light-1);
	text-shadow: var(--button-text-shadow-light);
	border: 0;
	margin: 0.2rem;
	width: 14rem;
	height: 4rem;
}
.cta__btn:before,
.cta__btn:after {
	content: "";
	position: absolute;
	inset: 0;
	transition: 0.5s;
	background: var(--color-main);
}
.cta__btn:nth-child(1):before,
.cta__btn:nth-child(1):after {
	background: linear-gradient(
		45deg,
		var(--color-main),
		var(--color-main),
		var(--color-main),
		var(--color-main)
	);
}
.cta__btn:hover:before {
	inset: -3px;
}
.cta__btn:hover:after {
	inset: -3px;
	filter: blur(1.6rem);
}
.cta__btn--text {
	cursor: pointer;
	position: absolute;
	color: var(--color-light-1);
	width: 100%;
	top: 0;
	left: 0;
	display: inline-block;
	height: 100%;
	background: var(--color-tertairy);
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	border: 1px solid var(--color-dark-2);
	overflow: hidden;
}
.cta__btn--text::before {
	content: "";
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.4);
	transform: skew(25deg);
}
.close-btn {
	background: transparent;
	font-size: 2.5rem;
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	border-radius: 0.5rem;
	color: var(--color-light-1);
	cursor: pointer;
	padding: 0.8rem 1.2rem;
}
button:focus {
	outline: none;
}
/* ******************************************************************************************************* */
/* Cards buttons */
.bttn,
.bttn:link,
.bttn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.2rem 1.5rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  font-size: var(--small-font-size);
  min-width: 12rem;
  min-height: 4rem;
  font-weight: var(--subheading-font-weigth);
  text-align: center;
  border: none;
  cursor: pointer;
}
.bttn__min {
  padding: 1rem 3rem !important;
  display: inline !important;
}
.bttn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.bttn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.bttn:active,
.bttn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.bttn--white {
  color: var(--color-main);
  background-color: var(--color-light-1);
}
.bttn--white::after {
  background-color: var(--color-light-1);
}
.bttn--main {
  color: var(--color-light-1);
  background-color: var(--color-main);
}
.bttn--main::after {
  background-color: var(--color-main);
}
.bttn--red {
  color: var(--color-light-1);
  background-color: var(--color-danger);
}
.bttn--red::after {
  background-color: var(--color-danger);
}
.bttn--blue {
  color: var(--color-light-1);
  background-color: var(--color-active);
}
.bttn--blue::after {
  background-color: var(--color-active);
}
.bttn--gradiant {
  color: var(--color-light-1);
  background-image: var(--gradient-color);
}
.bttn--gradiant::after {
  background-image: var(--gradient-color-reverse);
}
.bttn::after {
  content: "";
  height: 100%;
  width: 100%;
  display: inline-block;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.bttn--animated {
  animation: moveInBottom 1s ease-in-out 0.75s;
  animation-fill-mode: backwards;
}
.btn-inline,
.btn-inline-link {
  background-color: none;
  text-decoration: none;
  border: none;
  outline: none;
  color: var(--color-main);
  cursor: pointer;
}
.btn-inline span,
.btn-inline-link span {
  margin-left: 3px;
  transition: margin-left 0.3s;
}
.btn-inline:hover,
.btn-inline-link:hover {
  color: var(--dark-color-2);
}
.btn-inline:hover span,
.btn-inline-link:hover span {
  margin-left: 8px;
}
.btn-inline:focus,
.btn-inline-link:focus {
  outline: none;
  animation: pulsate 1s infinite;
}
.cta {
  text-align: center;
}
.cta__book-now {
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.card-btn {
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 10rem;
  border: none;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main));
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--color-light-1);
  text-align: center;
  width: 15rem;
  margin: 1rem auto;
  padding: 1rem;
}
.card-btn:hover {
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.button {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  border-radius: 10rem;
  border: none;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main));
  cursor: pointer;
  position: relative;
  overflow: hidden;
  color: var(--color-light-1);
}
.button > * {
  height: 100%;
  width: 100%;
  transition: all 0.2s;
  display: inline-block;
}
.button__visible {
  padding: 2rem 6.5rem;
}
.button__invisible {
  position: absolute;
  padding: 2rem 0;
  left: 0;
  top: -100%;
  transition: all 0.2s;
}
.button:hover {
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.button:hover .button__visible {
  transform: translateY(100%);
}
.button:hover .button__invisible {
  top: 0;
}
.button:focus {
  outline: none;
  animation: pulsate 1s infinite;
}
.submit-button {
  background-color: var(--color-main) !important;
  border-radius: 0px !important;
  color: var(--color-light-1) !important;
  box-shadow: 2px 2px 6px 3px var(--color-dark-2) !important;
  outline: none;
  font-weight: bold !important;
}
.submit-button:hover {
  text-shadow: 0 0 0 0 var(--color-light-1) !important;
  transition: 0 !important;
  background-color: var(--color-main) !important;
}
.submit-button:focus {
  opacity: 1;
  box-shadow: -2px -2px 6px 3px var(--color-dark-2) !important;
}
.btn--block {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media only screen and (max-width: 37.25em) {
  .btn--block {
    display: block;
    position: relative;
    bottom: 0;
    right: 0;
  }
}
/* Gradiant Button */
.btns-group {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 96%;
  position: absolute;
  bottom: 2%;
  right: 2%;
}
.btns-group.last {
  bottom: 0.25%;
}
.btns-group__one {
  display: block;
}
.btns-group.btn-bottom {
  position: relative;
  bottom: 0;
  right: 0;
}
.btns-group__btn {
  font-size: 1.7rem;
  padding: 0.75rem;
  margin-top: 1rem;
  display: block;
  text-decoration: none;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main)) !important;
  color: #f3f3f3 !important;
  text-align: center;
  min-width: 13rem;
  max-width: 13rem;
  height: 4rem;
  box-shadow: none !important;
  border-radius: 0.25rem !important;
  cursor: pointer;
  transition: 0.3s;
}
.btns-group__btn:active {
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.btns-group__btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-main);
}
.btns-group__btn:last-child {
  max-height: 25rem;
}
.btns-group__btn--one {
  margin-left: auto;
}
.user-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 1rem;
}
input[type="checkbox"] {
  cursor: pointer !important;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-appearance: none;
  background: #c6c6c6;
  outline: none;
  border-radius: 55rem;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
#remember{
  width: 8.5rem !important;
  height: 4.5rem !important;
}
input:checked[type="checkbox"] {
  background: var(--color-main);
}
input[type="checkbox"]:before {
  content: "";
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 2.3rem;
  top: 0;
  left: 0;
  background-size: cover;
  background-image: linear-gradient(to right bottom, var(--color-main), var(--color-main)),
    url(../../img/svg/spinner6.svg);
  transform: scale(1.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
input:checked[type="checkbox"]:before {
  left: 4.5rem;
}
/* Custom Selection  */
.custom-select {
  position: relative;
  font-family: sans-serif;
  float: left;
  width: 13%;
  z-index: 36;
}
@media only screen and (max-width: 56.25em) {
  .custom-select {
    display: none;
  }
}
.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}
.dropdown__icon {
  fill: var(--color-light-1);
  height: 2rem;
  width: 2rem;
}
.select-selected {
  background-color: var(--color-main);
  padding: 1rem;
  height: 42px;
  font-size: 1.5rem;
  box-shadow: 1px 0px 0px var(--color-main);
}
/*style the arrow inside the select element:*/
.select-selected:after {
  position: absolute;
  content: "";
  top: 1.7rem;
  right: 1rem;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: var(--color-light-1) transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
  border-color: transparent transparent var(--color-light-1) transparent;
  top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,
.select-selected {
  color: var(--color-light-1);
  padding: 1rem 4px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
  user-select: none;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: var(--color-main);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  font-size: 1.5rem;
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover,
.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
.dropdown {
  position: relative;
  margin: 0 1rem;
}
.dropdown__icon {
  height: 2rem;
  width: 2rem;
  fill: var(--color-main);
  margin-right: 1rem;
}
.dropbtn {
  font-weight: 600;
  top: -2.1rem;
  left: -8.4rem;
  transition: all 0.5s ease;
}
.dropbtn__user-img {
  margin-right: 1rem;
  width: 3.5rem;
  border-radius: 50%;
}
.dropbtn:hover {
  color: var(--color-main);
  text-shadow: 0px 0px 4px var(--color-light-1);
}
.dropbtn__user-img {
  cursor: default;
}
.dropdown-content {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  display: none;
  position: absolute;
  right: -70%;
  top: 115%;
  background-color: var(--color-light-1);
  color: #1e1e1e;
  min-width: 26rem;
  overflow: visible;
  box-shadow: 0px 8px 16px 0px #1e1e1e;
  z-index: 38;
  border-radius: 8px;
}
.dropdown-content::selection {
  background-color: var(--color-main);
  color: var(--color-light-1);
}
@media only screen and (max-width: 56.25em) {
  .dropdown-content {
    right: -100%;
  }
}
.dropdown-content a {
  color: var(--top-button);
  padding: 0.5rem 0.5rem;
  text-decoration: none;
  display: block;
}
.dropdown a:hover {
  background-color: #f3f3f3;
  border-radius: 8px;
  color: #333;
}
.show {
  display: block;
  max-height: 32rem;
  overflow-y: auto;
  overflow-x: auto;
  cursor: grab;
  /* Track */
  /* Handle */
}
.show:active {
  cursor: grabbing;
}
.show::-webkit-scrollbar {
  width: 1rem;
}
.show::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--color-main);
  border-radius: 1rem;
}
.show::-webkit-scrollbar-thumb {
  background: var(--color-main);
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
  border-radius: 1rem;
}
.show::-webkit-scrollbar-thumb:hover {
  background: var(--color-main);
  background-image: linear-gradient(to left bottom, var(--color-main), var(--color-main));
}
.show a {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.comment-info {
  display: flex;
  justify-content: stretch;
  align-content: center;
}
.author-img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  margin-right: 1rem;
}
.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader {
  opacity: 0;
  display: flex;
  position: fixed;
  bottom: 2rem;
  transition: opacity 0.3s ease-in;
}
.loader.show {
  opacity: 1;
}
.circle {
  background-color: var(--color-main);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  margin: 5px;
  animation: bounce 0.5s ease-in infinite;
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  .circle {
    background-color: var(--color-main);
    -webkit-mask-image: url(../../img/svg/mouse.svg);
    mask-image: url(../../img/svg/mouse.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
    filter: none;
  }
}
.circle:nth-of-type(2) {
  animation-delay: 0.1s;
}
.circle:nth-of-type(3) {
  animation-delay: 0.2s;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
input[type="submit"] {
  background-color: var(--color-light-1);
  border: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 5px var(--color-dark-1);
  color: var(--color-dark-1);
  font-weight: bolder;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
}
input[type="submit"]:hover {
  text-shadow: 0 0 4px var(--color-dark-1);
  transition: 0.5s ease-in-out;
}
input[type="button"] {
  background-color: var(--color-light-1);
  border: 0;
  border-radius: 5px;
  box-shadow: 0px 0px 5px #d85757;
  color: #d85757;
  font-weight: bolder;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
}
input[type="button"]:hover {
  text-shadow: 0 0 4px #d85757;
  transition: 0.5s ease-in-out;
}
.modal-container {
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  text-align: initial;
}
.modal-container.show-modal {
  display: block;
}
.modal {
  background-color: var(--color-light-1);
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  width: 40rem;
  animation-name: modalopen;
  animation-duration: 1s;
}
.modal__header {
  background-image: var(--gradient-color);
  color: var(--color-light-1);
  padding: 15px;
}
.modal__header h3 {
  font-size: 1.7rem;
  margin: 0;
}
.modal__content {
  padding: 1rem 1rem;
}
.modal__content--invite {
  font-size: 1.5rem;
  margin-top: 1rem;
  color: #333;
  text-align: center;
}
.modal__content--legal-remember {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 1.5rem;
}
.modal__form div {
  margin: 0.8rem 0;
}
.modal__form label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.modal__form .remember {
  cursor: pointer;
  font-size: 2rem;
  margin-left: 1rem;
  font-weight: 900;
}
.modal__form .form-input {
  border: none;
  box-shadow: 0 0 3px #333;
  padding: 0.8rem;
  width: 100%;
}
.modal__form .form-input:focus {
  border: none;
  box-shadow: 0 0 10px #333;
}
form > span {
  color: var(--color-danger);
  font-size: 1.2rem;
  display: block;
  text-align: center;
}
.modalX:before {
  content: "x";
  font-weight: bolder;
  text-decoration: none;
}
#username {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#uname {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#password {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#pass {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#password2 {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
#email {
  padding-left: 4rem;
  border: 1px solid #2196f3;
  outline: none !important;
}
.username-input {
  position: relative;
}
.username-input.success input {
  box-shadow: 0 0 0.6rem var(--color-success) !important;
}
.username-input.error > input {
  box-shadow: 0 0 0.6rem var(--color-danger);
}
.username-input small {
  visibility: hidden;
  display: block;
  font-size: 1.2rem;
}
.username-input.error small {
  visibility: visible;
  color: var(--color-danger);
}
.username-input.success small {
  visibility: visible;
  color: var(--color-success);
}
.username-input__user {
  position: absolute;
  left: 0;
  top: 0px;
  height: 3.3rem;
  width: 3.5rem;
  fill: var(--color-main);
  padding: 0.9rem 0.8rem;
  background-color: var(--color-light-4);
}
.username-input svg.icon-eye {
  position: absolute;
  left: 89%;
  fill: var(--color-main);
  top: 0px !important;
  width: 3.3rem;
  height: 3.29999999999rem;
  padding: 0.2rem;
  cursor: pointer;
  transition: all 0.5s ease;
}
.username-input svg.icon-eye:hover {
  fill: var(--color-main);
}
.username-input svg.icon-eye-slash {
  position: absolute;
  left: 89%;
  fill: var(--color-main);
  top: 0px !important;
  width: 3.3rem;
  height: 3.3rem;
  padding: 0.3rem;
  cursor: pointer;
}
.username-input svg.icon-eye-slash:hover {
  fill: var(--color-main);
}
.username-input > input:focus + .username-input__user {
  background-color: var(--color-main);
  fill: var(--color-light-4);
}
/* Post Cards */
.wrapper {
display: flex;
  flex-wrap: wrap;
  justify-content: center;

}

.card {
  overflow: hidden;
  box-shadow: 0px 2px 20px var(--clr-gray-dark);
  background: #eceff1;
  /*all 3 cards background color*/
  border-radius: 0.5rem;
  position: relative;
  width: 350px;
  margin: 1rem;
  transition: 250ms all ease-in-out;
  /*smooth effects*/
  cursor: pointer;
}

.card:hover {
  transform: scale(1.06);
  box-shadow: 0px 2px 40px var(--clr-gray-light);
}

.banner-img {
  position: absolute;
  height: 15rem;
  width: 100%;
}

.category-tag {
  font-size: 1rem;
  font-weight: bold;
  color: black;
  /*3 category text color, in the category box*/
  padding: 0.5rem 1.3rem 0.5rem 1rem;
  position: absolute;
  z-index: 1;
  /* class="category-tag popular" box size*/
  top: 1rem;
  /* class="category-tag popular" position the box to be lower*/
  border-radius: 0 2rem 2rem 0;
  /*curve the category box corners*/
}

.popular {
  background: var(--clr-popular);
  /*category-tag POPULAR box color*/
}

.tech {
  background: var(--clr-tech);
  /*category-tag TECH box color*/
}

.home {
  background: var(--clr-psyche);
  /*category-tag HOME box color*/
}

.city {
  background: grey;
  /*category-tag CITY box color*/
}

.cat {
  background: orange;
}

.art {
  background: violet;
}

.card-body {
  margin: 15rem 1rem 1rem 1rem;
}

.blog-hashtag {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-link);
}

.blog-title {
  line-height: 1.5rem;
  margin: 1rem 0 0.5rem;
}

.blog-description {
  color: var(--clr-gray-med);
  font-size: 1rem;
}

.card-profile {
  /*Include profile-img, profile-info, name & followers*/
  display: flex;
  /*Make image & text side by side*/
  margin-top: 1.5rem;
  /*space between description & profile-card*/
  align-items: center;
  /*make profile text position center in middle*/
  background: #c8e6c9;
  /*color bacnground contains image, name & followers*/
}

.profile-img {
  /*all 3 profile images*/
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  /*make image circle*/
}

.card-profile-info {
  margin-left: 1rem;
  /*make space between profile text & image*/
}

.profile-name {
  font-size: 1rem;
}

.profile-followers {
  color: var(--clr-gray-med);
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  font-size: var(--small-font-size);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.post {
  background-color: var(--color-light-1);
  display: table;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0.7rem 2.5rem #807878;
  width: 80%;
  margin: 2rem auto;
  padding: 1.5rem;
}
@media only screen and (max-width: 37.25em) {
  .post {
    display: block;
  }
}
.post__the-hero {
  display: table-cell;
  vertical-align: middle;
  width: 22rem;
  position: relative;
  overflow: hidden;
  /* @include respons(phone){ 
            width: 90%;
        }  */
}
@media only screen and (max-width: 37.25em) {
  .post__the-hero {
    display: block;
    margin: auto;
    width: 90%;
  }
}
.post__the-hero:hover > .post__the-img {
  filter: blur(3px) brightness(60%);
}
.post__the-hero:hover > .post__the-img-caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.post__the-img {
  height: 20rem !important;
  width: 20rem !important;
  cursor: pointer;
  border-radius: 50%;
  border: 0.5rem solid var(--color-main);
}
@media only screen and (max-width: 37.25em) {
  .post__the-img {
    width: 100% !important;
  }
}
.post__the-img-caption {
  color: var(--color-light-1);
  font-weight: 700;
  text-shadow: 0 0 2rem var(--color-main);
  text-align: center;
  font-size: 1.7rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 174%);
  text-transform: uppercase;
  opacity: 0;
  transition: all 1.3s;
}
.post__info {
  margin-left: 0.5rem;
  padding: 0.5rem;
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 37.25em) {
  .post__info {
    display: block;
  }
}
.post__category {
  font-weight: 600;
}
@media only screen and (max-width: 37.25em) {
  .post__category {
    text-align: center;
  }
}
.post__date {
  margin-top: 0.3rem;
}
@media only screen and (max-width: 37.25em) {
  .post__date {
    text-align: center;
  }
}
.post__date-icon {
  height: 1rem;
  width: 1.3rem;
  margin: 0 0.2rem;
  fill: var(--color-main);
}
.post__time-icon {
  height: 1rem;
  width: 1.3rem;
  margin: 0 0.2rem;
  fill: var(--color-main);
}
.post__details {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 37.25em) {
  .post__title {
    text-align: center;
  }
}
.post__title-link {
  text-decoration: none;
  font-weight: 900;
  color: var(--text-color-dark);
}
.post__title-link:hover {
  text-decoration: underline;
}
.post__description {
  overflow: hidden;
}
@media only screen and (max-width: 37.25em) {
  .post__description {
    text-align: center;
  }
}
.post__about {
  display: flex;
  margin: 0.5rem 0;
  font-weight: 600;
}
@media only screen and (max-width: 37.25em) {
  .post__about {
    justify-content: center;
  }
}
.post__use-case {
  color: var(--color-secondary);
  margin-right: 4rem;
}
.post__model {
  color: var(--color-main);
}
.post__stats-box {
  display: flex;
}
@media only screen and (max-width: 37.25em) {
  .post__stats-box {
    justify-content: center;
  }
}
.post__stats {
  display: flex;
  flex-direction: column;
}
.post__stats:not(:last-child) {
  margin-right: 4rem;
}
.post__stats-link {
  text-decoration: none;
}
.post__stats-link:hover .post__stat-value {
  color: var(--color-main);
}
.post__stat-value {
  align-self: center;
  font-size: 2rem;
  color: var(--color-main);
  font-weight: 600;
}
.post__stat-name {
  align-self: center;
  font-size: var(--small-font-size);
  color: var(--text-color-dark);
  text-transform: capitalize;
}
.post__btn-text {
  text-align: center;
  color: var(--color-light-1);
  font-weight: 600;
  align-self: center;
  text-transform: uppercase;
}

/* Filter For Pages */
#stickyNavbar {
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
.sticky {
  position: fixed;
  top: 0;
}
.sticky + .post-container {
  padding-top: 5rem;
}
.accordion {
  background-color: var(--color-main);
  position: relative;
  color: var(--color-light-1);
  cursor: pointer;
  cursor: pointer;
  font-weight: 800;
  padding: 1.8rem;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .accordion {
    padding: 1rem;
  }
}
.accordion > svg {
  position: absolute;
  width: 2rem;
  top: 33%;
  left: 12rem;
  height: 2rem;
  filter: invert(100%);
}
.active,
.accordion:hover {
  background-color: var(--color-main);
  opacity: 0.9;
}
.panel {
  position: relative;
  padding: 0px 4px;
  background-color: rgba(255, 255, 255, 0.93);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
}
.panel button {
  width: 10rem;
  padding: 0.5rem;
  outline: none;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: var(--color-light-1);
  margin: 1rem;
}
.panel a {
  width: 10rem;
  margin: 1rem;
  text-decoration: none;
  color: var(--color-light-1);
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .panel a {
    margin: 0.5rem;
  }
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-gap: 2px;
}
.grid div {
  margin-bottom: 1rem;
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .grid div {
    margin-bottom: 0rem;
  }
}
.grid div label {
  margin-left: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 5px;
  color: rgba(3, 3, 3, 0.6);
  text-transform: capitalize;
  border-bottom: 1px solid rgba(3, 3, 3, 0.1);
  border-top: 1px solid rgba(3, 3, 3, 0.1);
  border-right: 1px solid rgba(3, 3, 3, 0.1);
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .grid div label {
    padding: 0px;
  }
}
.grid div label:first-child {
  border: none;
}
/* The container */
.container {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  font-size: var(--small-font-size);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default radio button */
.container input {
  opacity: 0;
  cursor: pointer;
}
/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 2.5rem;
  width: 2.5rem;
  background-color: #ccc;
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .checkmark {
    height: 1.5rem;
    width: 1.5rem;
  }
}
/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #9b9999;
}
/* When the radio button is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: var(--color-main);
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}
/* Style the indicator (dot/circle) */
.container .checkmark:after {
  top: -1rem;
  left: -0.8rem;
  width: 3rem;
  height: 4rem;
  background-image: url(../../img/svg/check.svg);
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .container .checkmark:after {
    height: 3rem;
    width: 3rem;
  }
}
@supports (-webkit-mask-image: url()) or (mask-image: url()) {
  .container .checkmark:after {
    background-color: var(--color-main);
    -webkit-mask-image: url(../../img/svg/check.svg);
    mask-image: url(../../img/svg/check.svg);
    -webkit-mask-size: cover;
    mask-size: cover;
    background-image: none;
  }
}
.for-scroll {
  max-height: 9rem;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-color: var(--color-main) var(--color-main);
  scrollbar-width: thin;
  cursor: grab;
  /* Track */
  /* Handle */
}
@media screen and (max-height: 20.25em) and (max-height: 37.25em) and (orientation: landscape) {
  .for-scroll {
    max-height: 5rem;
  }
}
.for-scroll:active {
  cursor: grabbing;
}
.for-scroll::-webkit-scrollbar {
  width: 1rem;
}
.for-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--color-main);
  border-radius: 1rem;
}
.for-scroll::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 1rem;
}
.for-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-main);
}
/* Ajax Search Results  */
#search-layer {
  position: fixed;
  transition: all 0.3s;
  z-index: 34;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.9);
}
@supports (-webkit-backdrop-filter: blur()) or (backdrop-filter: blur()) {
  #search-layer {
    -webkit-backdrop-filter: blur(1rem);
    -moz-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }
}
/***********************************/
#livesearch {
  position: absolute;
  background: #595a5a;
  max-height: 27rem;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 35;
  width: 88.5%;
  left: 4.5%;
  box-shadow: 0px 2px 4px #444;
  margin-left: 1.2%;
  border-radius: 8px;
  cursor: grab;
  /* Track */
  /* Handle */
}
#livesearch:active {
  cursor: grabbing;
}
#livesearch::-webkit-scrollbar {
  width: 1.5rem;
}
#livesearch::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--color-main);
  border-radius: 1rem;
}
#livesearch::-webkit-scrollbar-thumb {
  background: var(--color-main);
  border-radius: 1rem;
}
#livesearch::-webkit-scrollbar-thumb:hover {
  background: var(--color-main);
}
/***********************************/
.live-outer {
  width: 100%;
  height: 8rem;
  display: flex;
  justify-content: center;
  z-index: 3;
  border-bottom: 1px solid #ccc;
  background: var(--color-light-1);
}
.live-outer:hover {
  background: #f3f3f3;
}
/***********************************/
.live-im {
  float: left;
  width: 10%;
  height: 6rem;
  margin: 8px;
}
@media only screen and (max-width: 37.25em) {
  .live-im {
    width: 25%;
  }
}
.live-im img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
/***********************************/
.live-product-det {
  float: left;
  width: 90%;
  height: 2.5rem;
}
/***********************************/
.live-product-name {
  width: 100%;
  height: 2.5rem;
  margin-top: 4px;
}
.live-product-name p {
  color: #333;
  text-shadow: 1px 1px 1px #dddddd;
  margin-left: 1rem;
}
.live-product-name p i {
  font-weight: 600;
}
.live-product-name p span {
  color: #2196f3;
}
/***********************************/
.live-product-price {
  width: 100%;
  height: 2.5rem;
}
.live-product-price-text {
  float: left;
  width: 50%;
}
.live-product-price-text p {
  margin-left: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  width: 200%;
}
.live-product-price-text p span {
  color: #2196f3;
}
/***********************************/
.link-p-colr {
  color: #333;
  text-decoration: none;
}
/* Styling  Search form, input and search button*/
.example {
  max-width: 100%;
  margin: auto;
  z-index: 35;
}
.example input[type="text"] {
  padding: 1rem 2rem;
  height: 4.2rem;
  font-size: 1.7rem;
  border: 0.5px solid #000;
  border-right: none;
  float: left;
  width: 100%;
  background-color: var(--color-light-1);
  transition: all 0.5s;
}
.example input[type="text"]:focus {
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.08);
  outline: none;
}
@media only screen and (max-width: 37.25em) {
  .example input[type="text"] {
    width: 60%;
  }
}
.example .btn {
  float: left;
  width: 33%;
  background-color: var(--color-main);
  color: white;
  z-index: 35;
  font-size: 4rem;
  border-left: none;
  cursor: pointer;
  border: none;
}
.example .btn:hover {
  background-color: var(-search-butt-hov);
}
.example .btn .search__icon {
  height: 3.5rem;
  width: 3rem;
  fill: var(--color-light-1);
}
.clear-fix {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.clear-fix::after {
  content: "";
  display: table;
}
.min-width-auto {
  width: 80%;
  margin: auto;
}
@media only screen and (max-width: 37.25em) {
  .min-width-auto {
    width: 90%;
  }
}
.textbox-clr {
  cursor: text;
  background-color: var(--color-light-1);
  border-bottom: 0.5px solid #000;
  border-top: 0.5px solid #000;
  width: 25%;
  float: left;
  z-index: 35;
  outline: none;
  border-left: none;
  border-right: none;
  text-align: center;
  height: 4.2rem;
  font-weight: 900;
  transition: all 0.5s;
}
@media only screen and (max-width: 37.25em) {
  .textbox-clr {
    width: 13%;
  }
}
.example input[type="text"]:focus + .textbox-clr {
  background-color: #fff;
  box-shadow: 0 0.7rem 2.5rem rgba(0, 0, 0, 0.08);
  cursor: pointer;
}
.example input[type="text"]:focus + .textbox-clr:hover {
  background-color: var(--color-danger);
}
/* layout */
.search-engine-container {
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.search {
  z-index: 35;
  border-radius: 0;
}
.slider-container {
  position: relative;
  width: 85%;
  margin: 0 auto;
}
.slider-header {
  font-size: 2rem;
  font-weight: 600;
}
.slider-wrapper {
  width: 100%;
  overflow-x: scroll;
  cursor: grab;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 0 auto;
  position: relative;
}
.slider-wrapper:active {
  cursor: grabbing;
}
.products ul {
  padding: 0 3rem;
}
.products ul li {
  display: inline-block;
  padding: 5px;
}
.product-container {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.post__hero {
  text-decoration: none;
}
.post__img-caption:hover {
  color: var(--color-main);
  text-shadow: 0 0 2rem var(--color-main);
}
/* Custom Nav Slider */
.slider-container {
  position: relative;
  /*width: 85%;*/
  margin: 0 auto;
}
.slider-header {
  font-size: 2rem;
  font-weight: 600;
}
.slider-wrapper {
  width: 100%;
  overflow-x: scroll;
  cursor: grab;
  overflow-y: hidden;
  white-space: nowrap;
  margin: 0 auto;
  position: relative;
}
.slider-wrapper:active {
  cursor: grabbing;
}
.products ul li {
  display: inline-block;
  padding: 5px;
}
.product-container {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.post__hero:hover > .post__img {
  filter: blur(0px) brightness(100%);
}
.post__hero:hover > .post__img-caption {
  transform: translate(-50%, -276%);
}
.post__img {
  background-color: var(--color-light-1);
  width: 10rem;
  height: 10rem;
  cursor: pointer;
  border-radius: 50%;
  border: 5px solid var(--color-secondary);
  filter: blur(1px) brightness(50%);
  transition: all 1.3s;
}
.post__img-caption {
  color: var(--color-light-1);
  font-weight: 700;
  text-shadow: 0 0 2rem var(--color-main);
  text-align: center;
  font-size: 1.55rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 174%);
  text-transform: uppercase;
  opacity: 1;
  transition: all 1.3s;
}
.slider-wrapper::-webkit-scrollbar {
  height: 7px;
}
.slider-wrapper::-webkit-scrollbar-track {
  background: #898d91;
  border: 4px solid transparent;
  background-clip: content-box;
}
.slider-wrapper::-webkit-scrollbar-thumb {
  background: var(--color-main);
}
#click2 {
  position: absolute;
  top: 47%;
  left: 0%;
  width: 38px;
  height: 35px;
  border-left: none;
  background-color: transparent;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
}
#click {
  position: absolute;
  top: 47%;
  background-color: transparent;
  right: 0%;
  width: 38px;
  height: 35px;
  border-right: none;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
}
#click:hover,
#click2:hover {
  opacity: 1;
}
.icon-circle-left {
  width: 4rem;
  height: 3.3rem;
  border-radius: 50%;
  background-color: var(--color-light-1);
  border: 3px solid var(--color-main);
  fill: var(--color-main);
}
.icon-circle-right {
  width: 4rem;
  height: 3.3rem;
  border: 3px solid var(--color-main);
  background-color: var(--color-light-1);
  border-radius: 50%;
  fill: var(--color-main);
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 95%;
  margin: auto;
  height: 5.3rem;
  border-bottom: 0.5px solid var(--color-light-2);
  padding: 2rem 1rem;
}
@media only screen and (max-width: 56.25em) {
  .header {
    flex-direction: column;
    height: 12.5rem;
  }
}
.header__logo {
  float: left;
}
@media only screen and (max-width: 56.25em) {
  .header__logo {
    display: block;
    float: none;
    text-align: center;
  }
}
.header__logo-text {
  position: relative;
}
.header__logo-text .logo {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--color-light-1);
  text-transform: uppercase;
}
.header .header__user-nav {
  display: flex;
  align-items: center;
  color: var(--color-light-1);
  fill: var(--color-light-1);
  float: right;
  /* signed in Navigation buttons */
}
@media only screen and (max-width: 56.25em) {
  .header .header__user-nav {
    float: none;
    text-align: center;
  }
}
.header .header__user-nav--sign-up {
  display: inline-block;
}
.header .header__user-nav--sign-in {
  margin-right: 3rem;
  display: inline-block;
}
@supports (display: flex) or (display: -webkit-flex) {
  .header .header__user-nav--sign-in {
    margin-top: 0;
  }
}
.header .header__user-nav .dash-btn a {
  text-decoration: none;
  color: var(--color-light-1);
  font-size: 1.5rem;
  text-shadow: 0px 0px 4px var(--color-light-1);
  padding: 1rem;
  transition: all 0.5s ease;
}
.header .header__user-nav .dash-btn a:hover {
  color: var(--color-main);
}
.header .header__user-nav .header-icon-wrapper {
  position: relative;
}
.header .header__user-nav .header-icon-wrapper:not(:last-child) {
  margin-right: 1rem;
}
.header .header__user-nav .header-icon-wrapper__svg {
  font-size: 3.25rem;
  text-shadow: 1px 1px 1rem var(--color-main);
  outline: none;
  transition: all 0.3s ease;
}
.header .header__user-nav .header-icon-wrapper__svg:hover {
  text-shadow: 1px 1px 1rem var(--color-main);
}
.header .header__user-nav .header-icon-wrapper__svg::selection {
  background-color: transparent;
  color: currentColor;
}
.header .header__user-nav .header-icon-wrapper__svg-2 {
  fill: var(--color-dark-3);
  height: 3.25rem;
  width: 3.25rem;
}

.header .header__user-nav .header-icon-wrapper__svg-2:hover {
  fill: var(--color-danger);
}

.header .header__user-nav .header-icon-wrapper__notification {
  position: absolute;
  top: -4px;
  right: -7px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-dark-2);
}
.header .header__user-nav .header-icon-wrapper__notification::selection {
  background-color: transparent;
  color: currentColor;
}
.header .header__user-nav .profile a {
  padding: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header .header__user-nav .profile a:hover > .profile__user-name {
  color: var(--color-main);
}
.header .header__user-nav .profile__user-photo {
  height: 3.75rem;
  width: 3.75rem;
  border-radius: 50%;
  margin-right: 0.5rem;
}
.header .header__user-nav .profile__user-name {
  font-size: 1.5rem;
  color: var(--color-light-1);
  transition: color 0.5s ease;
  text-shadow: 0px 0px 4px var(--color-light-1);
}
.navigation-container {
  clear: both;
}
.nav {
  /* All direct decendance of the nav class */
  width: 100%;
  margin: auto;
  /* Top navigation links */
}
.nav > * {
  width: 32.68%;
  position: relative;
  /* Top navigation links*/
}
@supports (display: flex) or (display: -webkit-flex) {
  .nav > * {
    width: initial;
  }
}
.nav > * a:link,
.nav > * a:visited {
  font-size: 1.3rem;
  text-decoration: none;
  color: var(--color-light-3);
  text-transform: uppercase;
  display: inline-block;
  padding: 1rem 1.5rem;
  position: relative;
}
.nav > * a:link::before,
.nav > * a:visited::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 5px;
  width: 3px;
  background-color: var(--color-main);
  transform: scaleY(0);
  transition: transform 0.3s, width 0.2s cubic-bezier(1, 0, 0, 1), background-color 0.1s;
}
.nav > * a:link:hover::before,
.nav > * a:visited:hover::before {
  transform: scaleY(1);
  width: 100%;
  color: var(--light-color-1);
}
.nav > * a:focus {
  outline: none;
  animation: pulsate 1s infinite;
}
.nav > * a .link {
  z-index: 33;
  position: relative;
}
@supports (display: flex) or (display: -webkit-flex) {
  .nav > * a .link {
    display: flex;
    align-items: center;
  }
  @media only screen and (max-width: 37.25em) {
    .nav > * a .link {
      flex-direction: column;
    }
  }
}
@supports (display: flex) or (display: -webkit-flex) {
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.nav__link-one {
  display: inline-block;
  text-align: left;
}
.nav__link-two {
  display: inline-block;
  text-align: center;
}
.nav__link-three {
  display: inline-block;
  text-align: end;
}
.nav__icon {
  height: 1.2rem;
  width: 1.2rem;
  margin-right: 4px;
  fill: var(--color-light-1);
}
@media only screen and (max-width: 37.25em) {
  .nav__icon {
    display: block;
    margin: auto;
  }
  @supports (display: flex) or (display: -webkit-flex) {
    .nav__icon {
      display: inline-block;
      margin: initial;
    }
  }
}
.post-details {
  display: flex;
  padding: 2rem;
}
.post-details__description {
  flex: 0 0 60%;
  margin-right: 4.5rem;
}
@media only screen and (max-width: 56.25em) {
  .post-details__description {
    margin: 1rem 3rem 1rem 1rem;
  }
}
@media only screen and (max-width: 37.25em) {
  .post-details__description {
    margin: 1rem;
  }
}
@media only screen and (max-width: 31.25em) {
  .post-details__description {
    margin: 0;
  }
}
.post-details__description-text {
  text-align: justify;
  max-height: 20rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .post-details {
    flex-direction: column;
  }
}
.post-container {
  min-height: 100vh;
}
.home-container {
  box-shadow: var(--boxsh);
}
@media only screen and (max-width: 68.75em) {
  .home-container {
    margin: 0;
    max-width: 100%;
    overflow: hidden;
  }
}
.header-container {
  padding: 0 1rem;
  background-color: var(--color-dark-1) !important;
}

.nav-container {
  background-color: var(--color-dark-1) !important;
}