/*

Tooplate 2127 Little Fashion

https://www.tooplate.com/view/2127-little-fashion

*/

/* upDesignr Custom fonts */
@font-face {
  font-family: 'InterstateMono-Blk';
  src: url('../fonts/InterstateMono-Blk.ttf');
}
@font-face {
  font-family: 'SpaceGrotesk-Bold';
  src: url('../fonts/SpaceGrotesk-Bold.ttf');
}
@font-face {
  font-family: 'SpaceGrotesk-Light';
  src: url('../fonts/SpaceGrotesk-Light.ttf');
}
@font-face {
  font-family: 'SpaceGrotesk-Medium';
  src: url('../fonts/SpaceGrotesk-Medium.ttf');
}
@font-face {
  font-family: 'SpaceGrotesk-Regular';
  src: url('../fonts/SpaceGrotesk-Regular.ttf');
}
@font-face {
  font-family: 'SpaceGrotesk-SemiBold';
  src: url('../fonts/SpaceGrotesk-SemiBold.ttf');
}


/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                #FFFFFF;
  --primary-color:              #11D8A4;
  --primary-light-color:        #e2faf4;
  --section-bg-color:           #f0f8ff;
  --dark-color:                 #030405;
  --grey-color:                 #d0d1d1;
  --p-color:                    #717275;

  --body-font-family:           'Inter', sans-serif;

  --h5-font-size:               24px;
  --p-font-size:                20px;
  --copyright-text-font-size:   16px;
  --product-link-font-size:     14px;
  --custom-link-font-size:      12px;

  --font-weight-thin:           100;
  --font-weight-light:          300;
  --font-weight-normal:         400;
  --font-weight-bold:           700;
  --font-weight-black:          900;
}

body,
html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
    background: var(--white-color);
    font-family: var(--body-font-family);    
    position: relative;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1,
h2 {
  font-weight: var(--font-weight-black);
}

h1 {
  font-size: 64px;
  line-height: normal;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

::selection {
  background: var(--primary-color);
  color: var(--white-color);
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

.custom-link i {
  position: absolute;
  opacity: 0;
  bottom: 0;
  left: 100%;
  transition: all 0.3s;
  line-height: normal;
}

.custom-link:hover i {
  opacity: 1;
  left: 101%;
}

.lead {
  font-size: 1.5rem;
  font-weight: var(--font-weight-thin);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

/*---------------------------------------
  PRE LOADER               
-----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  background: none repeat scroll 0 0 var(--white-color);
}

.spinner {
  border: 1px solid transparent;
  border-radius: 5px;
  position: relative;
}

.spinner::before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin-top: -10px;
  margin-left: -23px;
  border-radius: 50%;
  border: 1px solid #959595;
  border-top-color: var(--white-color);
  animation: spinner .9s linear infinite;
}

@keyframes spinner {
  to {transform: rotate(360deg);}
}

/*---------------------------------------
  CUSTOM BUTTON & ICON              
-----------------------------------------*/
.custom-btn {
  background: var(--dark-color);
  border-radius: 50px;
  color: var(--white-color);
  font-size: var(--copyright-text-font-size);
  text-transform: uppercase;
  padding: 16.50px 20px;
}

.social-btn {
  background: transparent;
  border: 1px solid var(--grey-color);
  color: var(--dark-color);
  text-transform: none;
}

.social-btn:hover {
  border-color: transparent;
}

.cart-form-select {
  border-radius: 0;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 20px;
  min-width: 130px;
  font-weight: 600;
  font-size: 14px;
}

.cart-btn {
  border-radius: 0;
  width: 100%;
  font-size: var(--product-link-font-size);
}

.custom-btn:hover,
.slick-slideshow .custom-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.custom-icon {
  color: var(--p-color);
  font-size: 24px;
}

.custom-icon {
  display: inline-block;
  vertical-align: middle;
}

.bi-bag.custom-icon {
  font-size: 17px;
}

.featured-icon {
  color: var(--grey-color);
  font-size: 52px;
}

/*---------------------------------------
  DIV SEPARATOR               
-----------------------------------------*/
.div-separator {
  position: relative;
}

.div-separator::before {
  content: "";
  height: 1px;
  background: var(--grey-color);
  display: block;
  width: 100%;
}

.div-separator span {
  position: absolute;
  top: 50%;
  margin-left: -22.5px;
  left: 50%;
  text-align: center;
  background: var(--white-color);
  margin-top: -11px;
  color: var(--dark-color);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  width: 35px;
  text-transform: uppercase;
}

/*---------------------------------------
  FULL IMAGE               
-----------------------------------------*/
.full-image-img {
  display: block;
  position: absolute;
  z-index: -1;
  right: 0;
  width: 100%;
  bottom: -120px;
  min-width: 650px;
}

@media (min-width: 1600px) {
  .full-image-img {
    bottom: -200px;
  }
}

/*---------------------------------------
  NAVIGATION               
-----------------------------------------*/
.navbar {
  background: var(--white-color);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding: 25px 0;
  z-index: 2;
  will-change: transform;
  transition: transform 300ms linear;
}

.navbar span, h2 span, h4 span {
	color: var(--primary-color);
}

.navbar.headroom--not-top {
  padding: 20px 0;
}

.headroom--pinned {
  transform: translate(0, 0);
}

.headroom--unpinned {
  transform: translate(0, -150%);
}

.navbar-brand {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-light);
  margin: 0;
  padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
  display: inline-block;
  padding: 0;
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--p-color);
  font-size: 16px;
  position: relative;
}

.navbar .nav-link::after {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--grey-color);
  content: '';
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  -moz-transition: opacity 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}

.navbar .nav-link.active::after, 
.navbar .nav-link:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  transform: translateY(0px);
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: var(--primary-color);
}

.nav-link:focus, 
.nav-link:hover {
  color: var(--p-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--dark-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--dark-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon:before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon:after {
  top: 8px;
}

/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background-color: var(--section-bg-color);
  background-color: var(--primary-light-color);
  position: relative;
  overflow: hidden;
  margin-top: 86px;
}

.site-header.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.site-header.section-padding-img {
  padding-top: 2rem;
/*   padding-bottom: 10rem; */
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------------------
  SLICK SLIDESHOW               
-----------------------------------------*/
@media (min-width: 992px) {
  .slick-slideshow {
    height: 100vh;
  }
}

.slick-slideshow {
  margin-top: 86px;
}

.slick-title {
  color: var(--white-color);
}

.slick-custom {
  position: relative;
}

.slick-custom img {
  width: 100%;
  object-fit: cover;
}

.slick-bottom {
  background: linear-gradient(to top, var(--dark-color), transparent 90%);
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-bottom .container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.slick-overlay {
  background: linear-gradient(to top, #000, transparent 120%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slick-slideshow .custom-btn {
  font-weight: var(--font-weight-bold);
  display: inline-block;
  padding-right: 32px;
  padding-left: 32px;
}

@media (min-width: 576px) {
  .slick-slideshow .slick-dots {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .slick-slideshow .slick-dots {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .slick-slideshow .slick-dots {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .slick-slideshow .slick-dots {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .slick-slideshow .slick-dots {
    max-width: 1320px;
  }
}

.slick-slideshow .slick-dots {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  margin: 0 auto;
  padding: 0;
}

.slick-slideshow .slick-dots li {
  background: transparent;
  border: 5px solid rgba(255, 255, 255, 0.35);
  border-radius: 100%;
  display: block;
  width: 30px;
  height: 30px;
  margin: 10px;
  padding: 5px;
  margin-left: auto;
  cursor: pointer;
}

.slick-slideshow .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  outline: none;
  height: 0;
}

.slick-slideshow .slick-dots li:hover,
.slick-slideshow .slick-dots .slick-active {
  background: var(--white-color);
}

/*---------------------------------------
  CUSTOM CIRCLE IMAGES               
-----------------------------------------*/

.custom-circle-image {
  border-radius: 100px;
  width: 55px;
  height: 55px;
}

.custom-circle-image.team-image {
  width: 85px;
  height: 85px;
}

/*---------------------------------------
  TESTIMONIAL               
-----------------------------------------*/
.slick-testimonial .slick-list,
.slick-testimonial .slick-track {
  height: 100%;
}

.slick-testimonial {
  margin: auto;
}

.slick-testimonial-caption {
  quotes: '❝' '❞';
  position: relative;
  padding: 5rem 7rem;
}

.slick-testimonial-caption::before {
  content: open-quote;
  display: inline-block;
  color: var(--primary-color);
  font-family: auto;
  font-size: 100px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-testimonial .slick-dots {
  text-align: center;
}

.slick-testimonial .slick-dots li {
  background: var(--grey-color);
  display: inline-block;
  vertical-align: top;
  width: 16%;
  height: 1px;
}

.slick-testimonial .slick-dots button {
  background: transparent;
  border: none;
  color: transparent;
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
}

.slick-testimonial .slick-dots li:hover,
.slick-testimonial .slick-dots .slick-active {
  background: var(--dark-color);
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
section {
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.featured {
  background: var(--section-bg-color);
}

/*---------------------------------------
  ABOUT               
-----------------------------------------*/
.about .nav-pills .nav-item {
  width: 100%;
}

.about .nav-pills .nav-link {
  color: var(--grey-color);
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  border-left: 1px solid var(--grey-color);
  border-radius: 0;
  padding-right: 0;
}

.about .nav-pills .nav-link:hover,
.about .nav-pills .nav-link.active, 
.about .nav-pills .show>.nav-link {
  background: transparent;
  border-left-color: var(--primary-color);
  color: var(--primary-color);
}

/*---------------------------------------
  FAQ ACCORDION               
-----------------------------------------*/
.accordion-item {
  background-color: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

.accordion-button {
  background-color: transparent;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

button:focus:not(:focus-visible) {
  border-color: transparent;
  box-shadow: none;
}

.accordion-body {
  border-top: 1px solid rgba(0,0,0,.125);
}

.accordion-button {
  font-size: 1.5rem;
  font-weight: var(--font-weight-normal);
  padding-top: 1.5rem;
  padding-right: 0;
  padding-bottom: 1.5rem;
  padding-left: 0;
}

.accordion-body {
  padding: 2rem 0;
}

/*---------------------------------------
  TEAM MEMBERS               
-----------------------------------------*/
.team {
  background: var(--grey-color);
}

.team-thumb {
  background: var(--white-color);
  position: relative;
  border-radius: .25rem;
  padding: 42px 32px;
}

.team-info {
  width: 100%;
}

.custom-modal-btn {
  background: var(--grey-color);
  color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 32px;
  width: 42px;
  height: 42px;
}

.modal-body {
  padding: 2rem 4rem;
}

.modal-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
}

.modal-header .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 24px;
  margin: 32px;
}

#cart-modal .modal-header .btn-close {
  z-index: 2;
  margin: 22px;
}

#cart-modal .modal-header {
  border-bottom: 0;
  padding: 0;
}

#cart-modal .modal-footer {
  padding: 2rem 4rem;
}

/*---------------------------------------
  SKILL - PROGRESS BAR               
-----------------------------------------*/
.skill-thumb strong {
  display: inline-block;
  margin-bottom: 6px;
}

.skill-thumb span {
  color: var(--dark-color);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
}

.skill-thumb .progress {
  background: var(--white-color);
  box-shadow: none;
  border-radius: 100px;
  height: 1px;
  margin-bottom: 16px;
}

.skill-thumb .progress .progress-bar-primary {
  background: var(--grey-color);
}

/*---------------------------------------
  PRODUCT               
-----------------------------------------*/
.front-product {
  background: var(--section-bg-color);
}

.product-thumb {
  background: var(--white-color);
  position: relative;
  transition: all 0.5s ease-out;
}

.product-image {
  transition: all 0.5s ease-out;
}

.product-thumb:hover .product-image {
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
}

.product-top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 20px;
}

.product-info {
  padding: 30px 20px;
}

.product-description,
.product-cart-thumb {
  padding: 0 20px;
}

.product-icon {
  color: var(--white-color);
}

.product-title-link {
  color: var(--dark-color);
}

.product-additional-link {
  display: inline-block;
  vertical-align: top;
  font-size: var(--product-link-font-size);
  margin-top: 32px;
  margin-right: 12px;
}

.product-alert {
  background: var(--white-color);
  color: var(--p-color);
  font-size: var(--custom-link-font-size);
  font-weight: var(--font-weight-bold);
  padding: 3px 10px;
}

.product-p {
  font-size: var(--product-link-font-size);
}

.view-all {
  text-transform: uppercase;
  color: var(--p-color);
  font-size: 13px;
  font-weight: var(--font-weight-bold);
  border-bottom: 2px solid var(--grey-color);
  padding-bottom: 6px;
}

/*---------------------------------------
  CONTACT              
-----------------------------------------*/
.contact-info {
  padding: 40px;
}

.contact-form .form-control {
  border-color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.form-floating>label {
  color: var(--grey-color);
  font-weight: var(--font-weight-normal);
}

.contact-form button[type='submit'] {
  background: var(--dark-color);
  border: none;
  border-radius: 100px;
  color: var(--white-color);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  padding: 16px;
}

.contact-form button[type='submit']:hover {
  background: var(--primary-color);
}

/*---------------------------------------
  SITE FOOTER               
-----------------------------------------*/
.site-footer {
  background: var(--dark-color);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.footer-menu {
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  display: block;
  width: 50%;
}

.footer-menu-link {
  color: #6c757d;
  font-weight: var(--font-weight-light);
  display: inline-block;
  vertical-align: top;
  margin-top: 4px;
  margin-bottom: 4px;
  font-size: 20px;
}

.site-footer .social-icon-link {
  margin-top: 4px;
}

.site-footer .social-icon-link:hover,
.footer-menu-link:hover {
  color: var(--white-color);
}

.copyright-text {
  font-size: var(--copyright-text-font-size);
}

/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon li {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: #6c757d;
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 4px;
  margin-right: 15px;
}

.social-icon-link:hover {
  color: var(--primary-color);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 42px;
    margin-bottom: 0;
  }

  h2 {
    font-size: 36px;
    font-size: 1.5rem;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 20px;
  }
  .text-right {
    text-align: right;
  }
  .lead {
    font-size: 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin-top: 1rem;
  }

  .site-header {
    background-position: bottom;
  }

  #cart-modal .modal-header .btn-close {
    margin: 22px 14px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 13.5px 20px;
  }

  .slick-slideshow .custom-btn {
    padding-right: 27px;
    padding-left: 27px;
  }

  .social-login,
  .div-separator {
    width: 75% !important;
  }

  #cart-modal .modal-footer .row {
    width: 100% !important;
  }

  .site-header.section-padding,
  .section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .site-header-image.section-padding {
    padding-bottom: 0;
  }

  .header-info {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .header-image {
    position: relative;
    top: auto;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
  }

  .slick-testimonial-caption {
    padding: 6rem 3rem 4rem 3rem;
  }

  .slick-slideshow .slick-dots li {
    width: 25px;
    height: 25px;
  }

  .modal-header {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .modal-body {
    padding: 2rem;
  }

  #cart-modal .modal-footer {
    padding-right: 0;
    padding-left: 0;
  }

  #cart-modal .modal-body {
    padding: 4rem 2rem 2rem 2rem;
  }

  .full-image-img {
    bottom: 0;
  }
}


/******************************************/
/* CUSTOM CSS */
/******************************************/

/* header */
  .navbar-brand img {
    height: 30px;
  }
  .nav-link {
    font-size: 18px;
    font-weight: 400;
  }
  .navbar-ownr {
    background: #11D8A4;
    padding: 18px 0;
  }
  .navbar-ownr .nav-link {
    color: #333;
  }
  .navbar-ownr .nav-link.active {
    color: #666;
  }
  .profile-img {
    height: 45px;
    border-radius: 50%;
    border: 1px solid #000;
  }
  .profile-link {
    color: var(--dark-color);
    margin-right: 5px;
  }
  .notification-icon {
    position: absolute;
    color: #ffffff;
    background-color: red;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 13px;
    margin-left: 6px;
    color: white;
  }
/* end header */


/* home */
/* end home */


/* register */
  .register-section {
    background: #030405;
  }
  .register-img {
    width: 100%;
    filter: brightness(60%);
    padding: 15px;
  }
/* end register */

/* UpOwnr */
  .upownr-header {
    background: var(--primary-color);
  }
  .updesignr-header {
    background: var(--white-color);
  }
  .upownr-container {
    background: #ffffff;
    background-image: url('../images/updesignr/bg-grid.png'); 
    background-repeat: repeat;
/*     background-size: 100% auto; */
    background-position: center top;
    background-attachment: fixed;
  }
  .upownr-container .list-img {
    border-radius: 50%;
    border: 2px solid #666;
  }
  .upownr-container h5 {
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin: 0;
    background: var(--white-color);
    margin-top: 4px;
  }
  .upownr-container h5.updesignr-name {
    font-size: 13px;
    margin: 0;
  }
  /* .upownr-container .design-item {
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding-top: 12px;
    border-radius: 1rem;
  } */
  .filter-container {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 15px;
    /* padding-left: 40px;
    padding-right: 40px; */
  }

  .filter-container select,
  .filter-container input {
    display: inline-block;
    width: auto;
    margin-left: 12px;
    border-radius: 30px;
  }
  .filter-container input[type=text] {
    display: inline-block;
    width: 130px;
    margin-left: 12px;
    border-radius: 30px;
    background-image: none;
  }
  .list-img {
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 6px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  }
  .updesignr-image {
    width: 100%;
    border-radius: 50%;
    border: 1px solid #000;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 6px 2px, rgba(0, 0, 0, 0.06) 1px 1px 1px 0px;
  }
  .updowner-profile-header .updesignr-image {
    object-fit: cover;
    max-width: 120px;
    max-height: 120px;
  }
  .profile-link .profile-img {
    object-fit: cover;
    max-width: 38px;
    max-height: 38px;
  }
  .text-number {
    font-size: 40px;
    font-weight: 700;
    margin: 0;
    color: var(--dark-color);
    line-height: 45px;
  }
  .subtext-number {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
  }
  .filter-btn {
    display: inline-block;
    width: auto;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 30px;
    padding-right: 30px;
    min-width: 130px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 15px;
    border-radius: 30px;
    box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.1)
  }
  .upownr-updsignr-name {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff; 
  }
  .upownr-updesignr-filters {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #ffffff; 
  }
  .upownr-request-fixed {
    position: sticky;
    bottom: 0;
    width: 100%;
  }
  .btn-back {
    background: #ffffff;
/*     border: 1px solid #000; */
    border-radius: 50%;
    font-size: 20px;
    padding: 10px 16px;
  }
  .upownr-profile-header .profile-img {
    height: auto;
  }
  #message {
    width: 100%;
    min-height: 400px;
  }
  .selected-design-img {
    border: 4px solid var(--primary-color) !important;
  }
  .upownr-request-fixed .container {
    background: #11D8A4;
  }
  .upownr-image-item {
    object-fit: cover;
    max-width: 100%;
    max-height: 200px;
  }
/* end UpOwnr */

/* UpDesignr */
.updesignr-container {
  background: #ffffff;
  background-image: url('../images/updesignr/bg-grid.png'); 
  background-repeat: repeat;
  /* background-size: 100% auto; */
  background-position: center top;
  background-attachment: fixed;
}
/* .updesignr-header .container {
  box-shadow: 15px 0 20px -20px rgba(0, 0, 0, 0.45), -15px 0 20px -20px rgba(0, 0, 0, 0.45);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
} */
/* end UpDesignr */



/* footer */
  .footer-logo {
    height: 30px;
  }
/* end footer */

/* splash screen */
  .splash-image {
    height: 100vh;
  }
  .splash {
    cursor : pointer;
    position : fixed;
    top : 50%;
    left : 50%;
    height : 100%;
    width : 100%;
    transform : translate(-50%,-50%);    
    background-color: rgba(0,0,0);
    transition : all ease-in-out 600ms;
    z-index: 10;
  }
  .hidden {
    transition : 0.5s;
    display : none;
  }
  .splash-header {
    height : 100%;
    color : white;
    font-family : consolas;
    font-size : 30px;
    display : flex;
    justify-content: center;
    align-items : center;
  }
/* end splash screen */

/* FAQs */
.faq-list {
  list-style-type: auto;
}
.accordion p {
  font-weight: 500;
    font-size: 1.3rem;
}
.faq-list li {
  padding-left: 5px;
}
.faq-list li::marker {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 900;
}
/* end FAQs */
  
/* cards */
  .card {
    padding: 0;
    border-radius: 0.7rem;
  }
  .card-header {
    padding: 1.2rem 2rem;
    background: var(--dark-color);
    color: var(--white-color);
    border-top-right-radius: 0.7rem !important;
    border-top-left-radius: 0.7rem !important;
  }
  .card-header h3 {
    color: var(--white-color);
    font-size: 24px;
  }
  .card-header p {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 4px;
  }
  .card-body {
    padding: 2rem 2.5rem;
  }
  .card-footer {
    padding: 2rem 2.5rem;
    background: var(--white-color);
    border-top: none;
    border-radius: 0.7rem;
    border-bottom-right-radius: 0.7rem !important;
    border-bottom-left-radius: 0.7rem !important;
  }

/* end cards */

/*ORDENAR*/
  h4 {
    font-family: 'SpaceGrotesk-Light';
    font-weight: 100;
    font-size: 40px;
  }
  h5 {
    font-family: 'SpaceGrotesk-Light';
    font-weight: 100;
    font-size: 25px;
  }
  .badge-dark {
    background-color: #000000;
    padding: 0.35em 0.65em;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: text-top;
    border-radius: 1.25rem;
    margin-right: 5px;
  }
  .custom-btn {
    font-weight: var(--font-weight-bold);
    display: inline-block;
    padding-right: 32px;
    padding-left: 32px;
    font-size: 14px;
    padding: 13.5px 20px;
  }
  .custom-btn-inv {
    background-color: var(--primary-color);
    color: var(--dark-color);
    text-transform: inherit;
  }
  .custom-btn-inv:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
  }
  .custom-btn-white {
    background: var(--white-color);
    color: var(--dark-color);
    text-transform: inherit;
  }
  .custom-btn-white:hover {
    background: var(--primary-color);
    color: #000;
  }
  .custom-btn .bi {
    font-size: 15px;
    vertical-align: text-top;
  }
  .custom-btn-2 {
    font-size: 30px;
    font-weight: 600;
  }
  .custom-btn-3 {
    font-size: 30px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--dark-color);
    text-transform: none;
  }
  .custom-btn-3:hover {
    background: var(--dark-color);
    color: var(--white-color);
  }
  .slim-btn {
    padding: 10px 20px;
    text-transform: inherit;
  }
  .logo-text-1 {
    font-family: 'InterstateMono-Blk';
    font-size: 80px;
  }
  .logo-text-2 {
    font-family: 'SpaceGrotesk-Bold';
  }
  .logo-img {
    height: 50px;
    padding-left: 8px;
  }
  .img-container {
    position: relative;
    width: 100%;
  }
  .img-container .btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    cursor: pointer;
    text-align: center;
  }
  .btn {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  }
  .modal-updesignr .modal-content {
    background: var(--dark-color);
    border-radius: 0.7rem;
  }
  .modal-updesignr .modal-content h3 {
    color: var(--white-color);
  }
  .btn-close {
    background: transparent;
  }
  .modal h3 {
    font-family: 'SpaceGrotesk-Light';
  }
  .modal p {
    font-weight: 500;
  }
  .bi-check-lg {
    position: relative;
    top: 52px;
    color: #000;
    background: #11D8A4;
    padding: 11px 13px;
    border-radius: 50%;
  }
  .bi-profile-img {
    position: relative;
    top: 135px;
    color: #000;
    background: #fff;
    padding: 9px 11px;
    font-size: 24px;
    border-radius: 50%;
    left: 32%;
  }
  .barcode-img {
    border-radius: 12px;
  }
  .modal-inv .modal-content {
    background: var(--primary-color);
  }
  .modal-inv .modal-content h3 {
    color: var(--dark-color);
  }
  .modal-inv .bi-check-lg {
    color: var(--white-color);
    background: var(--dark-color);
  }
  .modal-inv h5 {
    font-weight: 700;
  }
  .selected-design-img {
    border-radius: 50%;
    border: 5px solid var(--primary-color);
  }
  .flash_message {
      font-weight: 500;
      margin: 0 !important;
      animation: slide-up 1s forwards;
      animation-delay: 4s;
      -webkit-animation-delay: 4s;
  }

  @-webkit-keyframes slide-up {
    from {
      transition: translateY(0);
      opacity: 1;
    }
    to {
      transition: translateY(-150px);
      opacity: 0;
        margin: 0 !important;
      padding: 0;
      height: 0;
    }
  }
  @media (max-width: 772px) {
    .hero-image .card {margin: 250px 5%!important;width: 90%!important;} 
  }
/*end ORDENAR*/

/******************************************/
/* END CUSTOM CSS */
/******************************************/


/* Button shadow example https://codepen.io/seme332/pen/reJOwo */
/* .button {
  width: 140px;
  height: 45px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  }

.button:hover {
  background-color: #2EE59D;
  box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
  color: #fff;
  transform: translateY(-7px);
} */




/* html, body {
      max-width: 540px;
    margin: 0 auto;
    border-left: 1px solid #f0f0f0;
    border-right: 1px solid #f0f0f0;
} */

.form-floating>label {
 color: #666;
}
.modal textarea {
  height: 120px !important;
}


/* @media screen and (min-width: 320px) and (orientation: portrait)
{
    #demo1{ width: 100px;} 
    #demo2{ width: 100px;}
    body { width: 100px; }
} */

.hero-image {
  background-color: #000000;
  /*background-image: url("../images/updesignr/sustainable-urban-fashion-cloth-primary.jpg");  The image used */
  background-color: #11D8A450; /* Used if the image is unavailable */
  height: 800px; /* You must set a specified height */
  background-position: top; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.hero-image video {
  opacity: 0.5;
}
.manifest-block {
  background-image: url("../images/updesignr/primary-bg.png"); /* The image used */
  background-color: #11D8A4; /* Used if the image is unavailable */
/*   height: 300px;  You must set a specified height */ 
  background-position: bottom; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}
.upownr-header .container,
.upownr-container .container,
.updowner-profile-header .container,
.register-section .container,
.upownr-request-fixed .container-fluid,
/* .upownr-header .filter-container, */
.updesignr-header .container {
  max-width: 540px;
}
/* .upownr-header .filter-container {
  margin: .5rem auto;
} */
.filter-btn.active {
  color: var(--primary-color);
}
.form-floating>select.form-control:not(:placeholder-shown) {
  padding: 1rem .75rem;
}




.profile-card-4 {
    max-width: 300px;
    background-color: #FFF;
    border-radius: 35px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

.profile-card-4 img {
    transition: all 0.25s linear;
}

.profile-card-4 .profile-content {
    position: relative;
    padding: 15px;
    background-color: #FFF;
}

.profile-card-4 .profile-name {
    font-weight: bold;
    position: absolute;
    left: 0px;
    right: 0px;
    top: -70px;
    color: #FFF;
    font-size: 17px;
}

.profile-card-4 .profile-name p {
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.profile-card-4 .profile-description {
    color: #777;
    font-size: 14px;
    padding: 10px;
    padding-top: 15px;
}

.profile-card-4 .profile-overview {
    padding: 15px 0px;
}

.profile-card-4 .profile-overview p {
    font-size: 10px;
    font-weight: 600;
    color: #777;
}

.profile-card-4 .profile-overview h4 {
    color: #273751;
    font-weight: bold;
}

.profile-card-4 .profile-content::before {
    content: "";
    position: absolute;
    height: 20px;
    top: -10px;
    left: 0px;
    right: 0px;
    background-color: #FFF;
    z-index: 0;
    transform: skewY(3deg);
}

.profile-card-4:hover img {
/*     transform: rotate(5deg) scale(1.1, 1.1); */
    transform: rotate(0deg) scale(1.1, 1.1);
    filter: brightness(110%);
}
.card-container {
    padding: 100px 0px;
    -webkit-perspective: 1000;
    perspective: 1000;
}
.profile-overview h4 {
  font-size: 20px;
}
.profile-name p {
  margin-bottom: 10px;
}
.profile-name {
  background: #00000020;
  background: #00906C70;
  margin-top: 26px;
  padding-top: 8px;

}
.profile-description {
  text-align: left;
  padding-top: 18px;
}
.profile-overview .bi-plus {
  font-size: 22px;
  font-size: 33px;
  font-size: 40px;
  color: #9e9e9e;
}
.img-mini {
  border-radius: 50%;
}
.modal-updesignr .slick-testimonial-caption::before {
  content: '';
}
.modal-updesignr .slick-testimonial-caption {
  padding: 1rem 3rem 4rem 3rem;
}
.profile-card-4 {
  height: 96%;
}
.profile-content .row {
  padding: 0 10px;
}
.profile-card-design-right .profile-content {
/*   overflow: scroll; */
  height: 100%;
  margin-bottom: 10px;
}
.profile-card-design-left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.profile-card-design-left .profile-name {
  padding-bottom: 20px;
}
.profile-card-design-right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
/* .profile-card-design-left, .profile-card-design-right {
  height: 84%;
} */
.profile-card-6 {
/*     max-width: 300px; */
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor: pointer;
}

.profile-card-6 img {
    transition: all 0.15s linear;
}

.profile-card-6 .profile-name {
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 20px;
    font-weight: bold;
    color: #FFF;
    padding: 15px 10px;
    padding: 0 10px;
    background: linear-gradient(140deg, rgba(0, 0, 0, 0.4) 50%, rgba(255, 255, 0, 0) 50%);
    background: #11D8A490;
    /*color: #212529; */
    width: 100%;
    transition: all 0.15s linear;
    margin-top: 0;
}

.profile-card-6 .profile-position {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    left: 30px;
    top: 100px;
    transition: all 0.15s linear;

}

.profile-card-6 .profile-overview {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 10%, rgba(255, 255, 0, 0));
    color: #FFF;
    padding: 50px 0px 20px 0px;
    padding: 0;
    transition: all 0.15s linear;
}

.profile-card-6 .profile-overview h3 {
    font-weight: bold;
    font-size: 18px;
}

.profile-card-6 .profile-overview p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.profile-card-6 .profile-overview .badge {
  margin-left: 5px!important;
  margin-right: 0!important;
}

.profile-card-6 .profile-overview .profile-overview .row {
  line-height: 15px;
  padding-bottom: 5px;
}

.profile-card-6:hover img {
    filter: brightness(80%);
}

.profile-card-6:hover .profile-name {
  padding-left: 25px;
  padding-top: 20px;
  padding-left: 5px;
  padding-top: 0px;
}

.profile-card-6:hover .profile-position {
    left: 40px;
}

.profile-card-6:hover .profile-overview {
    padding-bottom: 10px;
}


.upownr-container .slick-testimonial-caption::before {
  content: '';
}
.upownr-container .slick-testimonial-caption {
  padding: 24px;
}
.upownr-container .slick-dots {
  padding-left: 0;
}
/* .upownr-container .row.list-img {
  margin-top: -30px;
} */
.upownr-container .profile-card-design-left {
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
  border-color: #f0f0f0;
}
.upownr-container .profile-card-design-right {
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
  border-color: #f0f0f0;
}
.upownr-container .selected-design-img .profile-card-design-left {
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  border-left: 3px solid var(--primary-color);
}
.upownr-container .selected-design-img .profile-card-design-right {
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  border-right: 3px solid var(--primary-color);
}
.profile-card-design-right .profile-description {
  padding-top: 0;
  font-size: 16px;
  line-height: 23px;
}
.profile-card-design-right {
  padding-top: 15px;
/*   padding-bottom: 15px; */
}
.upownr-container .selected-design-img {
  border: none !important;
}
.upownr-container .list-img {
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.upownr-footer .filter-btn {
  height: 100%;
  padding-top: 13px;
}
.upownr-container .slick-testimonial .slick-dots li:hover, .slick-testimonial .slick-dots .slick-active {
  background: var(--primary-color);
}
.upownr-container .slick-testimonial .slick-dots li {
  height: 2px;
}
.slim-btn-icon {
  padding: 4px 18px;
}
.slim-btn .bi-bookmark-star{
  font-size: 22px;
}
.slim-btn .bi-star-fill {
  font-size: 17px;
}
.upownr-request-fixed-top {
  position: fixed;
  top: 73px;
  width: 100%;
}
.send-btn-container i {
  font-size: 26px;
}
.back-btn-container i {
  font-size: 32px;
}
.send-btn-container {

}
.back-btn-container {
  padding-top: 5px;
  padding-left: 16px;
}
.sticky-row {
  position: sticky;
  top: 0;
  z-index: 1;
}
.navbar .nav-link.active, .navbar .nav-link:hover {
    color: var(--white-color);
}
.message-name {
  font-size: 16px;
}
.message-date {
  font-size: 14px;
}
.message-text {
  font-size: 16px;
  font-weight: 400;
}
.message-slim-btn {
  padding: 3px 16px;
  font-size: 14px;
  text-transform: inherit;
}



.pr-0 {
  padding-right: 0;
}
.pl-0 {
  padding-left: 0;
}
.pt-4-half {
  padding-top: 2rem!important;
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.bg-primary-light {
  background: var(--primary-light-color);
}
.text-primary-light {
  color: var(--primary-light-color);
}
.hv-100 {
  height: 100vh;
}



/* Ribbons */
.ribbon {
  position: absolute;
  right: -5px;
  top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 93px;
  height: 93px;
  text-align: right;
}
.ribbon span {
  font-size: 0.8rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  line-height: 32px;
  transform: rotate(45deg);
  width: 125px;
  display: block;
  background: var(--primary-color);
  /*background: linear-gradient(var(--primary-color) 0%, var(--dark-color) 100%);*/
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 17px; // change this, if no border
  right: -29px; // change this, if no border
}

.ribbon span::before {
   content: '';
   position: absolute; 
   left: 0px; top: 100%;
   z-index: -1;
   border-left: 3px solid #79A70A;
   border-right: 3px solid transparent;
   border-bottom: 3px solid transparent;
   border-top: 3px solid #79A70A;
}
.ribbon span::after {
   content: '';
   position: absolute; 
   right: 0%; top: 100%;
   z-index: -1;
   border-right: 3px solid #79A70A;
   border-left: 3px solid transparent;
   border-bottom: 3px solid transparent;
   border-top: 3px solid #79A70A;
}
.ribbon .bi {
  font-size: 20px;
}
.ribbon-recycled span {
  color: var(--white-color);
  background: var(--dark-color);
}
/* end Ribbons */


/* animations */
/* .updesignr-image:hover {
  -webkit-animation:spin 0.1s linear;
  -moz-animation:spin 0.11s linear;
  animation:spin 0.1s linear;
  animation-fill-mode: both;
  animation-iteration-count: 1;
} */
.collapse-row:hover .upownr-updsignr-name:hover {
  color: var(--dark-color);
}
.collapse-row:hover .updesignr-image {
  -webkit-animation:spin 0.1s linear;
  -moz-animation:spin 0.11s linear;
  animation:spin 0.1s linear;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}
.collapse-row:hover .upownr-updsignr-name,
.collapse-row:hover .updesignr-description {
  padding-left: 10px;
  transition: 0.15s all ease;
}
@-moz-keyframes spin { 
  100% { -moz-transform: rotate(10deg); } 
}
@-webkit-keyframes spin { 
  100% { -webkit-transform: rotate(10deg); } 
}
@keyframes spin { 
  100% { 
      -webkit-transform: rotate(10deg); 
      transform:rotate(10deg); 
  } 
}
/* end animations*/

.navbar .nav-link.active, .navbar .nav-link:hover {
  color: #000000;
}
.flex-align-middle {
  display: flex;
  align-items: center;
}
.collapse-row {
  cursor: pointer;
}
.collapse-row .bi {
  transition: .3s transform ease-in-out;
}
.collapse-row.collapsed .bi {
  transform: rotate(-90deg);
}
.flex-column ul li {
  font-family: var(--bs-font-monospace);
  list-style: circle;
}