@charset "UTF-8";
/* CSS Document */
/* Custom page CSS
-------------------------------------------------- */
/* Not required for template or sticky footer method. */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;200;300;500;600;700&family=Roboto:wght@100;300;400;500;700&display=swap');

main > .container {
  padding: 60px 15px 0;
}

body {
	color: #7e878d;
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

h1, h2,
.h1, .h2 {
  font-family: 'Public Sans', sans-serif;
	letter-spacing: -2px;
	font-weight: 300;
}

h3, h4, h5, h6,
.h3, .h4, .h5, .h6 {
  	font-family: 'Public Sans', sans-serif;
	letter-spacing: -0.05rem;
	font-weight: 300;
}

.navbar-brand {
	width: 220px;
}

.bg-white {
	background-color: #fff;
}

.p-10 {
  padding: 6rem !important;
}

.btn:focus, .btn.focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary.danger {
    background-color: #f70909 !important;
    border-color: #f70909 !important;
}

.dropdown-item:hover, .dropdown-item:focus {
    color: #048bfe!important;
    text-decoration: none;
    background-color: #f6f7f7;
}

.bg-login {
    background: #f3f7fd;
    position: absolute;
    width: 100%;
    height: auto;
    min-height: 100%;
}

.form-control-lg {
    padding: 0.5rem 1rem!important;
    border-radius: 0.5rem!important;
    font-weight: 300!important;
    font-size: 16px!important;
    height: calc(2em + 1rem + 2px)!important;
}

.input-group-append {
    z-index: 1;
    margin-top: 13px;
    position: relative;
    right: 30px;
    margin-right: -20px;
}

.btn-white {
  color: #222;
  background-color: #fff!important;
  border-color: #fff!important;
}

.btn-white:hover {
  color: #222;
  background-color: #f7f7f7!important;
  border-color: #f7f7f7!important;
}

.btn-link {
    font-weight: 400;
    color: #7a8691;
    text-decoration: none;
}

.btn-round-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 2px 0px;
}

.input-group-append {
    margin-left: -1px;
    z-index: 1;
}

@media (max-width: 767px) {
  h2.title {
    font-size: 26px;
    letter-spacing: -1px;
}
}

/* -=-=-=-=-=-=-=-=-=-=- LOADER -=-=-=-=-=-=-=-=-=-=-=- */
@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.rainbow {
    position: relative;
    z-index: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.rainbow::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  background-repeat: no-repeat;
  background-size: 50% 50%, 50% 50%;
  background-position: 0 0, 100% 0, 100% 100%, 0 100%;
  background-image: linear-gradient(#f5f8fd, #f5f8fd), linear-gradient(#377af5, #377af5), linear-gradient(#f5f8fd, #f5f8fd), linear-gradient(#377af5, #377af5);
  -webkit-animation: rotate 3s linear infinite;
          animation: rotate 3s linear infinite;
}
.rainbow::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  top: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background: #f5f8fd;
  border-radius: 5px;
}

.rainbow.dark {
    position: relative;
    z-index: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

.rainbow.dark::before {
      content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#343a40, #343a40), linear-gradient(#377af5, #377af5), linear-gradient(#343a40, #343a40), linear-gradient(#377af5, #377af5);
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
}
.rainbow.dark::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 9px;
  top: 9px;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  background: #343a40;
  border-radius: 5px;
}

.dot1 {
	width: 10px;
	height: 10px;
	background: #377af5;
	border-radius: 50%;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	position: absolute;
	animation: grow 2s infinite;
}

.dot2 {
	width: 10px;
	height: 10px;
	background: #377af5;
	border-radius: 50%;
	left: calc(50% - 5px);
	top: calc(50% - 5px);
	position: absolute;
	animation: grow 2s infinite;
	animation-delay: 1s;
}

@-webkit-keyframes grow {
0% {
    transform: scale(1);
	opacity: 1;
	border-radius: 50%;
}
	
100% {
    transform: scale(8);
	opacity: 0;
	border-radius: 0%;
}
}


/* -=-=-=-=-=-=-=-=-=-=- FIND PIC BOOTH -=-=-=-=-=-=-=-=-=-=-=- */
#my_camera {
    position: relative;
    left: -83px;
    top: 308px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.results {
    position: relative;
    top: 68px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    left: 257px;
    z-index: 0;
}

.take-shot {
    position: absolute;
    background: #049aff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid white;
    z-index: 1;
    bottom: 120px;
    left: calc(50% - 95px);
    transition: 0.4s;
}

.relative-camera .take-shot {
    position: absolute;
    background: #049aff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid white;
    z-index: 1500;
    bottom: 40px;
    left: 145px;
    font-size: 27px;
    color: #ffffff;
    transition: 0.4s;
}

.take-shot:hover {
    background: #0984d6;
	transition: 0.4s;
}

.reset-shot {
    position: absolute;
    background:#dc3545;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1500;
    bottom: 125px;
    left: 270px;
    font-size: 27px;
    color: #ffffff;
    transition: 0.4s;
}

.relative-camera .reset-shot {
    position: absolute;
    background: #dc3545;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1500;
    bottom: 40px;
    left: 240px !important;
    font-size: 27px;
    color: #ffffff;
    transition: 0.4s;
}

.reset-shot:hover {
	transform: scale(0.95);
	opacity: 0.8;
	transition: 0.4s;
}

.search-findpic {
    position: absolute;
    background: #17a2b8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1;
    bottom: 125px;
    right: 430px;
    font-size: 26px;
    color: #ffffff;
    float: right;
    padding-left: 7px;
    transition: 0.4s;
}

.relative-camera .search-findpic {
    position: absolute;
    background: #17a2b8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1500;
    bottom: 40px;
    left: 55px;
    font-size: 27px;
    color: #ffffff;
    transition: 0.4s;
}

.search-findpic:hover {
	transform: scale(0.95);
	opacity: 0.8;
	transition: 0.4s;
}

.photo-booth-container {
    width: 100%;
    height: 665px;
    padding: 308px 422px 0px 307px;
    border-radius: 10px;
    z-index: 9;
    position: relative;
    box-shadow: none;
    top: -70px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0px;
}

.relative-camera-container {
    display: flex;
    justify-content: center;
}

.relative-camera {
    position: relative;
    height: 250px;
    width: 333px;
}

.bg-camera {
    width: 1000px;
    height: 665px;
    z-index: 0;
    position: absolute;
    box-shadow: none;
    top: 10px;
    background-image: url(../img/camara.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: -110px;
}

.bg-bubbles {
    background-image: url(../img/map.png);
    background-size: cover;
    background-repeat: repeat-y;
    left: 0;
    position: absolute;
    animation: growIn 120s infinite;
    width: 110%;
    min-height: 2000px;
    z-index: -1;
    opacity: 0.2;
    top: -75px;
}

.photo-booth-container-bubble {
    width: 40px;
    height: 40px;
    background-color: #fff;
    position: absolute;
    top: -25px;
    left: calc(50% - 20px);
    content: '';
    transform: rotate(45deg);
    border-radius: 10px;
    z-index: -10;
	box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
}

.pbcb-container {
    position: absolute;
    height: 40px;
    left: calc(50% - 22px);
    overflow: hidden;
    top: 320px;
    width: 50px;
    z-index: 1;
}


.photo-booth {
    padding: 0px;
    max-height: 374px;
}

.photobooth-header {
    background: transparent;
    margin-bottom: -56px;
    z-index: 1;
    border-bottom: none;
}

.photobooth-logo {
    position: relative;
    height: 90px;
    margin-top: 14px;
    top: -45px;
    left: -10px;
	opacity: 0.8;
}

.photobooth-close {
    color: white!important;
    box-shadow: none;
    font-weight: 100!important;
    text-shadow: none;
    opacity: 0.8;
}

@keyframes growIn {
0% {transform: translate(0);}
100% {transform: translateY(-1500px);}
}

.takeSelfie {
    background-image: url(../img/takeselfie_mobile.png);
    position: absolute;
    left: 230px;
    height: 170px;
    width: 225px;
    z-index: 2;
    background-size: 80%;
    top: 535px;
    background-repeat: no-repeat;
}

.dismiss-selfie {
    position: absolute;
    top: 60px;
    font-size: 25px;
    left: -50px;
    color: #048bff;
    z-index: 1500;
}


@media (max-width: 767px) {
.relative-camera .search-findpic {
  padding-left: 0px;
  padding-top: 2px;
}
.relative-camera .reset-shot {
    padding-top: 2px;
}
}
/* -=-=-=-=-=-=-=-=-=-=-=-=- BUTTONS -=-=-=-=-=-=-=-=-=-=-=-=-*/
.rounded-pill-left {
	border-top-left-radius: 25px;
	border-bottom-left-radius: 25px
}

.rounded-pill-right {
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px
}

.rounded-xl {
    border-radius: 0.75rem !important;
}

/* -=-=-=-=-=-=-=-=-=-=- AVATAR DROPDOWN -=-=-=-=-=-=-=-=-=-=-=- */
.my-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.my-avatar-lg {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

@media (min-width: 992px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform:translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

li.disabled a {
    background-color: #f7faff;
    cursor: not-allowed;
    color: #dcdcdc!important;
}

.dropdown-item {
    color: #97a4ab!important;
    font-size: 15px;
	padding: 0.65rem 1.5rem!important;
}

.dropdown-menu.show {
    display: block;
    top: 50px;
    right: 0px;
}

/* -=-=-=-=-=-=-=-=-=-=- CARDS -=-=-=-=-=-=-=-=-=-=-=- */
a .card-home img {
    transition: 0.3s ease-in-out;
}

a .card-home:hover img {
    transition: 0.75s;
    transform: scale(1.15);
	opacity: 0.2;
}

.card-home-container {
    overflow: hidden;
    border-radius: 0.75rem;
	background-image: url(../img/bg-card-home.jpg);
	background-size: contain;
	background-position: center;
}

.card-home-all {
    border-radius: 0.75rem;
    padding: 117px;
    text-align: center;
    background-color: #f7f7f7;
    transition: 0.4s;
}

.card-home-all:hover {
    background-color: #fff;
	transition: 0.4s;
	color: gray;
}

/* -=-=-=-=-=-=-=-=-=-=- NAVBAR -=-=-=-=-=-=-=-=-=-=-=- */
.navbar {
    padding: 15px;
}

.fixed-top.scrolled {
    background-color: #fff !important;
    transition: background-color 200ms linear;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
}

.fixed-top.scrolled .nav-link {
    color: #88969d!important;
}

.fixed-top.scrolled .nav-link:hover {
    color: #b3c1c7;
}

.fixed-top a {
    color: #666;
    font-weight: 400;
}

.fixed-top .navbar-brand {
    background-image: url(../img/logo-gray.svg);
    background-repeat: no-repeat;
    position: absolute;
    width: 220px;
    top: -10px;
    height: 100px;
}

.fixed-top.scrolled .navbar-brand {
    background-image: url(../img/logo-color.svg);
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff!important;
    text-decoration: none;
    background-color: #007bff;
}

.join-team {
    position: absolute;
    right: 140px;
}

@media (max-width: 768px) {
	.join-team {
    position: relative;
    right: 0;
}
}

/* -=-=-=-=-=-=-=-=-=-=- FONTS -=-=-=-=-=-=-=-=-=-=-=- */
.font-12 {font-size: 12px;}
.font-13 {font-size: 13px;}
.font-14 {font-size: 14px;}
.font-15 {font-size: 15px;}
.font-16 {font-size: 16px;}
.font-17 {font-size: 17px;}
.font-18 {font-size: 18px;}
.font-19 {font-size: 19px;}
.font-20 {font-size: 20px;}
.font-21 {font-size: 21px;}
.font-22 {font-size: 22px;}
.font-24 {font-size: 24px;}
.font-30 {font-size: 30px;}
.font-32 {font-size: 32px;}
.font-48 {font-size: 48px;}
.font-64 {font-size: 64px;}

.ls-5 {letter-spacing: -5px;}
.ls-4 {letter-spacing: -4px;}
.ls-3 {letter-spacing: -3px;}
.ls-2 {letter-spacing: -2px;}
.ls-1 {letter-spacing: -1px;}
.ls-0 {letter-spacing: 0px;}

h1, .h1 {
    font-size: 3rem;
}

.h1-large {
    font-size: 4rem;
}

.lh-1 {
    line-height: 3rem;
}

.lh-2 {
    line-height: 2rem;
}

.lh-3 {
    line-height: 1.75rem;
}

.lh-4 {
    line-height: 1.5rem;
}

.lh-5 {
    line-height: 1.25rem;
}

.img-qty {
    color: #048bff!important;
    font-size: 13px;
    font-weight: normal;
}

/* -=-=-=-=-=-=-=-=-=-=- HOME -=-=-=-=-=-=-=-=-=-=-=- */
.bg-home-container {
    width: 100%;
    min-height: 750px;
    height: 75vh;
    padding: 0px;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
}

.bg-main {
    width: 100%;
    min-height: 750px;
    height: 75vh;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center right;
    padding: 150px 75px;
    color: black;
    background-color: #f7f7f7;
    position: relative;
}

.bg-home-fotos {
    background-image: url(../img/bg-home.jpg);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: skew(10deg, 10deg) scale(1.35);
    opacity: 0.05;
}

.home-text {
    position: relative;
    z-index: 1001;
	margin-top: 100px;
}


/* -=-=-=-=-=-=-=-=-=-=- FOOTER -=-=-=-=-=-=-=-=-=-=-=- */
.footer {
    background-color: #f5f5f5;
	font-weight: 400;
}

.footer > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.footer-dashboard {
    background-color: #eaeef6;
    z-index: 100;
    position: relative;
    width: 100%;
    bottom: 0px;
}

.footer-dashboard > .container {
  padding-right: 15px;
  padding-left: 15px;
}

.footerTitle {
    text-transform: none;
    letter-spacing: 0px;
    font-size: 16px;
    color: #88969d;
    font-weight: 600;
	margin-bottom: 0px;
	font-family: 'Public Sans', sans-serif;
}

footer {
    font-size: 13px;
    font-weight: 200;
    letter-spacing: 0px;
    line-height: 28px;
    margin-top: 60px;
	padding: 20px 0px;
}

.footerLink:hover {
    color: #9c8248!important;
    margin-left: 10px;
    transition: 0.4s;
}

.footerLink:before {
    content: '';
    background-image: url(../img/chevron-right.svg);
    background-size: contain;
    width: 8px;
    height: 8px;
    position: absolute;
    display: none;
    margin-top: 12px;
    left: 12px;
}

.footerLink:hover:before {
    animation: arrowIn 0.5s;
	margin-right: 2px;
	opacity: 1px;
	display: block;
}

li.footerLink a {
    color: #88969d!important;
}

@keyframes arrowIn {
  from {opacity: 0; margin-left:-10px;}
  to {opacity: 1;margin-left:0px;}
}

.footerLink {
    color: #fff!important;
    transition: 1s;
    font-size: 14px;
    line-height: 30px;
    padding: 5px 0px;
    font-weight: 400;
}

.legals {
    background-color: #e6ebf5;
    padding: 25px 0px 20px 0px;
    color: #676464;
    text-align: center;
    font-size: 13px;
    position: relative;
    width: 100%;
    bottom: 0px;
    z-index: 1500;
}

.logo-footer {
    margin-top: -15px;
    margin-left: -5px;
}

@media (max-width:768px) {
.logo-footer {
    margin-left: 20%;
    margin-right: 20%;
    position: relative;
    width: 60%!important;
    margin-bottom: 20px;
}
.footerBkg {
	background-size: 100%;
}
}


/* -=-=-=-=-=-=-=-=-=-=- SIDENAV STYLES -=-=-=-=-=-=-=-=-=-=-=- */
.nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #8C9BB7;
    cursor:pointer;
}

.nav-link-xs {
    width: 40px!important;
    height: 40px!important;
    padding: 9px 13px!important;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    height: 92px;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
    background: white;
}

.logo-full {
    width: 200px;
    left: -20px;
    position: relative;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 92px 0 0;
    box-shadow: inset -1px 0 0 rgb(0 0 0 / 10%);
}


@media (max-width: 767.98px) {
  .sidebar {
    top: -10px;
  }
	
.logo-full {
    width: 150px;
    left: 0px;
    position: relative;
    top: 0px;
}
	
.navbar-brand {
    width: 190px;
    position: absolute;
    left: 0px;
}
	
.sticky-top {
	height: 80px;
}
	
.fixed-top .navbar-brand {
    background-repeat: no-repeat;
    position: absolute;
    width: 160px;
    top: 0px;
    height: 100px;
    left: 10px;
	z-index: 10;
}
	
.navbar-collapse {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 0px!important;
    margin-top: 70px!important;
    background-color: rgba(0,0,0,0.85);
    width: 100%;
    height: 100vh;
    padding: 100px 10px 0px 10px;
    left: 0px;
    position: absolute;
    top: -70px;
    z-index: 0;
}
	
}

.sidebar-sticky {
  position: relative;
  top: 0;
  height: calc(100vh - 48px);
  padding-top: .5rem;
  overflow-x: hidden;
  overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
  }
}

.sidebar .nav-link {
  font-weight: 400;
  color: #88969d;
}

.sidebar .nav-link:hover {
  color: #b3c1c7;
}

.sidebar .nav-link.active {
  color: #007bff;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
  color: inherit;
}

.sidebar-heading {
  font-size: .75rem;
  text-transform: uppercase;
}

/*
 * Navbar
 */
.navbar .navbar-toggler {
    top: 20px;
    right: 1rem;
    font-size: 30px;
}


/* -=-=-=-=-=-=-=-=-=-=- DASHBOARD STYLES -=-=-=-=-=-=-=-=-=-=-=- */
.myNotificationsNav {
    position: relative;
    margin-left: auto;
    margin-right: 20px;
    margin-top: 0px;
}

.myNotificationsNav.active:after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: red;
    position: absolute;
    border-radius: 50%;
    z-index: 1505;
    display: block;
    top: 12px;
    left: 25px;
}
main.col-md-9.ml-sm-auto.col-lg-10.p-md-4.h-100.mt-3 {
    min-height: 100vh;
}

.imgSelector {
	width: 30px;
}

.bootstrap-table .fixed-table-container .table tbody tr .card-view .card-view-value .imgSelector {
	width: 180px;
}

.file-container {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    
}

.file-container.cart {
    position: relative;
    height: 60%;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    
}


.file-container:hover .file-img-container {
    opacity: 1;
    transition: 0.3s;
}

.file-img-container {
    float: left;
    font-size: 0;
    text-align: center;
    width: 100%;
    margin-left: 0%;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: flex-end;
}

.file-img-container.cart {
    float: left;
    font-size: 0;
    text-align: center;
    width: 100%;
    margin-left: 0%;
    display: block;
    flex-direction: column;
    height: 90%;
    align-items: center;
    justify-content: flex-end;
}

.file-img {
    display: inline-block;
    vertical-align: middle;
    max-height: 250px;
    border-radius: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
}

.file-img2 {
    display: inline-block;
    vertical-align: middle;
    max-height: 250px;
    max-width: 100%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}

.file-options {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 998;
}

.file-doc-info {
    position: relative;
    width: 90%;
    margin-left: 5%;
    margin-top: 5%;
}

.file-name {
    font-size: 15px;
    color: #048bfe;
    position: relative;
    width: 100%;
    text-align: left;
    bottom: 0px;
}

.file-price {
    text-align: right;
    font-weight: bold;
    color: #048bfe;    
}

.folderContainer {
    background-image: url(../img/folder-full.svg);
    width: 240px;
    height: 270px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 0px;
    margin-right: auto;
}

.folderContainerList {
    width: auto;
    height: 60px;
    position: relative;
    background-size: contain;
    background-repeat: no-repeat;
}

.imgContainer {
    width: 180px;
    top: 42px;
    position: absolute;
    left: 18px;
    border-radius: 5px;
    overflow: hidden;
    height: 155px;
}

.folderTextContainer {
    width: 94%;
    height: auto;
    margin-bottom: 40px;
    margin-left: 3%;
}

.folderTextContainer.empty {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    margin-left: 0px;
}

.folderImg {
    width: 100%;
    height: auto;
    transition: 0.4s;
}

.folderImg:hover {
    opacity: 0.5;
	transition: 0.4s;
}

.folderImgEmpty {
    width: 94%;
    height: auto;
    transition: 0.4s;
    left: 0px;
    position: relative;
    max-height: 250px;
}

.folderImgEmpty:hover {
    opacity: 0.5;
	transition: 0.4s;
}

.folderImgContainer {
    width: 100%;
    min-height: 215px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.imgContainerList {
    width: 100%;
    top: 0px;
    position: relative;
    left: 0px;
    border-radius: 3px;
    overflow: hidden;
    height: 100%;
}

.folder-container {
    position: relative;
    height: 300px;
    margin-top: 20px;
}

.folder-container:hover .folder-img-container {
    opacity: 0.5;
    transition: 0.3s;
}

.folder-img-container {
    float: left;
    font-size: 0;
    text-align: center;
    width: 100%;
    height: 124.44444px;
    min-height: 270px;
    margin-left: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.folder-img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0px;
    margin-right: 0px;
    max-height: 100%;
    object-fit: cover;
}

.folder-options {
    position: absolute;
    top: 5px;
    width: 100%;
}

.image-options-container {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    align-content: flex-end;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 1;
    transition: 0.4s;
    bottom: 50px;
}


.file-container:hover .image-options-container {
    opacity: 1;
  transition: 0.4s;
}



.image-options-container.album::before {
    content: '';
    width: 86%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 5px;
    border-left: 1px solid rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.6);
    border-right: none;
    border-bottom: none;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: 0.4s;
}

.image-options-container.album::after {
    content: '';
    width: 86%;
    height: 90%;
    position: absolute;
    top: 25%;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    border-right: 1px solid rgba(255,255,255,0.6);
    border-bottom-right-radius: 5px;
    transition: 0.4s;
}

.file-container:hover .image-options-container.album::before {
    content: '';
    width: 76%;
    height: 80%;
    position: absolute;
    top: 4%;
    left: 3%;
    border-top-left-radius: 5px;
    border-left: 1px solid rgba(255,255,255,0.6);
    border-top: 1px solid rgba(255,255,255,0.6);
    border-right: none;
    border-bottom: none;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.file-container:hover .image-options-container.album::after {
    content: '';
    width: 76%;
    height: 80%;
    position: absolute;
    top: 16%;
    right: 3%;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    border-right: 1px solid rgba(255,255,255,0.6);
    border-bottom-right-radius: 5px;
}

.image-options-btn {
    border-radius: 50%;
    background-color: #048bff;
    margin: 0px 10px 0px 10px;
    transition: 0.3s;
    top: 0px;
    position: relative;
    z-index: 1;
    min-width: 35px;
    min-height: 35px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: white;
}

.image-options-btn:hover {
    opacity: 1;
    transition: 0.3s;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.5);
    background-color: #0055af;
}

.image-options-btn a {
    color: white;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-options-btn a:hover {
    color: #fff;
}

.image-options-btn.delete {
  background-color: #dc3545;
}

.image-options-btn.addtocart {
    background-color: #048bff;
}


button.addtocart.image-options-btn {
    border: none;
    color: white;
    width: 40px;
    height: 40px;
}

button.addtocart.image-options-btn.disarmed {
    background-color: #1ec5ae;
}

.arm {
   display: none;   
}
.disarmed .arm {
   display: inline;   
}
.disarmed .disarm {
   display: none;   
}


.image-options-container.album {
    height: 215px;
    top: 20px;
}

.image-options-container.cart {
    position: relative;
    height: 215px;
    top: 20px;
    content: '';
    height: 90%;
    top: 0;
    left: 0;
    border-top-left-radius: 5px;
    border-left: 1px solid rgba(255,255,255,0);
    border-top: 1px solid rgba(255,255,255,0);
    border-right: none;
    border-bottom: none;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: 0.4s;
    align-content: space-between;
}

.file-container.album {
    height: 280px;
    margin-top: 30px;
    position: relative;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.image-options-container.album::before {
    content: '';
    width: 86%;
    height: 90%;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 5px;
    border-left: 1px solid rgba(255,255,255,0);
    border-top: 1px solid rgba(255,255,255,0);
    border-right: none;
    border-bottom: none;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    transition: 0.4s;
}

.image-options-container.album::after {
    content: '';
    width: 86%;
    height: 90%;
    position: absolute;
    top: 25%;
    right: 0;
    border-left: none;
    border-top: none;
    border-bottom: 1px solid rgba(255,255,255,0);
    border-right: 1px solid rgba(255,255,255,0);
    border-bottom-right-radius: 5px;
    transition: 0.4s;
}

.checkbox-lg {
    width: 20px;
    height: 20px;
    margin-top: 5px;
}

.file-select {
    max-width: 100%;
    position: relative;
    cursor: pointer;
    transition: 0.4s;
    border: 2px solid white;
}

.file-title-list {
    padding-left: 100px;
}

.file-list-img-container {
    height: auto;
    width: 90px;
}

.file-img-list {
    vertical-align: middle;
    max-height: 55px;
    width: auto;
    border-radius: 4px;
    max-width: 55px;
	transition: 0.4s;
}

.file-img-list:hover {
    opacity: 0.5;
	transition: 0.4s;
}


th {
    font-weight: 400;
}


.img-modal-close {
    position: absolute;
    right: 8px;
    top: 5px;
}

.dashboard-direct {
    height: 200px;
    padding: 20px;
    border-radius: 0.75rem !important;
    width: 100%;
    position: relative;
    color: white;
    text-align: left;
    transition: 0.4s;
    margin: 0px;
}

.dd-icon {
    width: 100%;
    position: absolute;
    top: -8px;
    margin-bottom: 0px;
    transition: 0.4s;
    left: 0px;
}

a .dashboard-direct:hover {
    opacity: 0.9;
	transition: 0.4s;
}

a .dashboard-direct img {
    transition: 0.3s ease-in-out;
}

a .dashboard-direct:hover img {
    top: -20px;
	transition: 0.75s;
}

.dd-color1 {
    background: rgb(66,117,156);
background: linear-gradient(45deg, rgba(66,117,156,1) 0%, rgba(60,142,205,1) 68%);
}
.dd-color2 {
   background: rgb(104,114,154);
background: linear-gradient(45deg, rgba(104,114,154,1) 0%, rgba(91,110,189,1) 68%);
}

.dd-color3 {
    background: rgb(130,104,176);
background: linear-gradient(45deg, rgba(130,104,176,1) 0%, rgba(127,84,203,1) 68%);
}

@media (max-width: 767px) {
.folderImgContainer {
    width: 100%;
    height: 240px;
}
	
.folder-img-container {
	min-height: 160px;
}
	
.file-name {
    bottom: 0px;
}

.file-price {
    margin-top: 0px;
 }
	
.folder-name-input {
	width: 80%;
}
	
.folder-container {
    height: 180px;
}
.dd-icon {
    display: none;
}
	
.folderContainer {
    background-image: url(../img/folder-full.svg);
    width: 270px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
}
	
.imgContainer {
    width: 203px;
    top: 47px;
    position: absolute;
    left: 20px;
    border-radius: 5px;
    overflow: hidden;
    height: 175px;
}
}

.folders-container {
    height: 100%;
    width: 100%;
    transition: 0.4s;
    margin-bottom: 0px;
}

.folders-container:hover {
    opacity: 0.5;
	transition: 0.4s;
}

.folders-info {
    color: #95a2a9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-left: 15px;
}

.folder-name {
    text-align: left;
    color: #95a2a9;
    position: relative;
    width: 80%;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-left: 15px;
    top: -20px;
}

.folder-name-input {
    border: none;
    text-align: left;
    color: #7c868c;
    font-size: 16px;
}

.folder-name-input:focus {
    border: none;
    text-align: left;
    color: #000;
	background-color: #f7f7f7;
}

.folder-name-list-input {
    border: none;
    text-align: left;
    color: #768287;
    background-color: transparent;
}

.folder-name-list-input:focus {
    color: #048bff;
}



/* -=-=-=-=-=-=-=-=-=-=-=- DATA TABLES -=-=-=-=-=-=-=-=-=-=- */
body {
	color: #768287;
}

select {
    background-color: transparent;
    border-radius: 6px;
    padding: 5px;
    border: 1px solid #a8b3b9;
    color: #848f94;
    margin: 0px 5px;
}

div.dataTables_wrapper div.dataTables_filter {
    width: auto;
    float: right;
    margin-top: 0px;
    font-size: 14px;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;
    background-color: transparent;
    border: 1px solid #95a2a9;
    border-radius: 6px;
    padding: 3px 15px;
}

table.dataTable > thead .sorting:before, table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_desc:before, table.dataTable > thead .sorting_asc_disabled:before, table.dataTable > thead .sorting_desc_disabled:before {
    right: 1em;
    content: "↑";
    top: 10px;
	font-weight: 200;
	    margin-right: 5px;
}

table.dataTable > thead .sorting:after, table.dataTable > thead .sorting_asc:after, table.dataTable > thead .sorting_desc:after, table.dataTable > thead .sorting_asc_disabled:after, table.dataTable > thead .sorting_desc_disabled:after {
    right: 0.5em;
    content: "↓";
    top: 10px;
	font-weight: 200;
}

div.dataTables_wrapper div.dataTables_info {
    float: left;
    font-size: 14px;
}

.dataTables_length {
    float: left;
    font-size: 14px;
}

div.dataTables_wrapper div.dataTables_paginate {
    margin: 0;
    white-space: nowrap;
    text-align: right;
    float: right;
    top: 10px;
    position: relative;
}


.previous {
    margin-left: 20px;
    color: #889398;
	font-size: 14px;
}

.previous:before {
    content: '';
    background-image: url(icons/chevron-left.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 5px;
    margin-left: -19px;
}

.next {
    margin-left: 0px;
    color: #889398;
    font-size: 14px;
}

.next:after {
    content: '';
    background-image: url(icons/chevron-right.svg);
    width: 15px;
    height: 15px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    top: 5px;
    margin-left: 4px;
}

.current {
    background-color: #95a2a9;
    min-width: 80px;
    position: relative;
    padding: 6px 12px;
    margin: 0px 20px;
    border-radius: 28%;
    color: white!important;
}

th {
    padding: 10px;
    font-weight: 400;
    font-size: 14px;
}

td {
    padding: 10px;
	font-size: 13px;
}

tr.odd {
    background-color: #f9fafd;
}

.dt-button {
    border: 1px solid #1d85e8!important;
    border-radius: 5px!important;
    background-color: #1d85e8!important;
    background-image: none!important;
    color: #fff!important;
    transition: 0.4s;
    font-family: 'Public Sans', sans-serif!important;
    font-size: 1rem!important;
	line-height: 1.2em!important;
}

.dt-button:hover {
    border: 1px solid #0069d9!important;
    background-color: #0069d9!important;
	transition: 0.4s;
}

.btn-list-delete {
    background-color: #a1aeb4;
    border: none;
    padding: 3px 10px;
    border-radius: 8px;
    position: relative;
    right: 0px;
    top: 0px;
    color: white;
    font-size: 20px;
	transition: 0.4s;
}

.btn-list-delete:hover {
    background-color: #ff0047;
	transition: 0.4s;
}

tr.selected {
    background-color: #c6cdd1;
    transition: 0.4s;
}


td.details-control {
    background: url('../resources/details_open.png') no-repeat center center;
    cursor: pointer;
}
tr.shown td.details-control {
    background: url('../resources/details_close.png') no-repeat center center;
}



/*--Otro--*/

.owl-theme .owl-dots .owl-dot.active span {
    width: 30px;
	transition: 0.4s;
}

.myLabel {
    font-size: 12px;
    position: relative;
    top: 22px;
    left: 11px;
    padding: 5px;
    background-color: white;
    font-weight: 100;
    z-index: 99;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch-sm {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.switch-xs {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 18px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-sm {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider-sm:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.rounded-xl {
	border-radius: 20px;
}

.profile-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
}

.payment-logos {
    width: auto;
    max-height: 50px;
}

.social-media-logos {
    width: 30px;
    height: 30px;
}

.social-media-logos-sm {
    width: 20px;
    height: 20px;
}

.picture-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/*--Profile Pic --*/
.picture {
    background-color: #ffffff;
    border: 1px solid #CCCCCC;
    color: #FFFFFF;
    border-radius: 50%;
    margin: 0px 0px 0px 30px;
    overflow: hidden;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.picture:hover{
    border-color: #2ca8ff;
	opacity: 0.6;
}
.content.ct-wizard-green .picture:hover{
    border-color: #05ae0e;
}
.content.ct-wizard-blue .picture:hover{
    border-color: #3472f7;
}
.content.ct-wizard-orange .picture:hover{
    border-color: #ff9500;
}
.content.ct-wizard-red .picture:hover{
    border-color: #ff3b30;
}
.picture input[type="file"] {
    cursor: pointer;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
}

.picture-src {
    width: 100%;
    background-repeat: no-repeat;
    top: -10px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
.picture {
    margin: auto;
	text-align: center;
}
.profile-name {
	text-align: center;
}	
}

/* -=-=-=-=-=-=-=-=-=-=-=- KRAJEE FILE INPUT - OVERIDES -=-=-=-=-=-=-=-=-=-=- */
.kv-fileinput-caption {
    top: 13px;
}

.file-drop-zone {
	border: none!important;
}

.file-preview .fileinput-remove {
    top: 8px!important;
    right: 8px!important;
}

.krajee-default.file-preview-frame {
    border: none!important;
    border-radius: 8px;
}

.file-preview-image {
	border-radius: 4px;
}

.krajee-default .file-drag-handle, .krajee-default .file-upload-indicator {
    display: none!important;
}

.select2-results {
    display: block;
    position: relative;
    z-index: 1500;
}

.select2-container--default .select2-selection--multiple {
    border: solid 1px #d8dde1!important;
    outline: 0;
    border-radius: 8px!important;
    padding: 8px 20px 18px 20px!important;
    min-width: 467px;
}

.gj-datepicker-bootstrap [role=right-icon] button {
    width: 31px!important;
    position: relative;
    border: 1px solid #ced4da;
    height: 50px;
    top: -13px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.gj-datepicker-bootstrap [role=right-icon] button .gj-icon, .gj-datepicker-bootstrap [role=right-icon] button .material-icons {
    position: absolute!important;
    font-size: 21px!important;
    top: 14px!important;
    left: 0px!important;
}

.gj-picker-bootstrap table tr td.selected.gj-cursor-pointer div {
    color: #fff;
    background-color: #048bff!important;
    border-color: #048bff!important;
    border-radius: 16px!important;
}

.gj-picker-bootstrap table tr td.focused div, .gj-picker-bootstrap table tr td.gj-cursor-pointer div:hover {
    background: #EEE!important;
    border-radius: 16px!important;
}


/* -=-=-=-=-=-=-=-=-=-=-=- WATERMARK -=-=-=-=-=-=-=-=-=-=-=-*/
.custom-file-container__image-preview {
    background-image: none!important;
    margin-top: 0px!important;
    min-height: 593px!important;
    width: 100%!important;
    border-radius: 0px!important;
    background-size: contain!important;
    overflow: hidden!important;
    background-color: transparent!important;
    position: relative;
    left: 0px;
    top: 15px;
    min-width: 875px;
}

.custom-file-container__image-multi-preview {
    position: relative;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border-radius: 0px!important;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    float: left;
    margin: 10px 0px 0px 0px!important;
    box-shadow: none!important;
    width: 100%!important;
    height: 100%!important;
}

.custom-file-container__custom-file__custom-file-control {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5;
    height: calc(2.25rem + 2px);
    padding: .5rem .75rem;
    overflow: hidden;
    line-height: 1.75!important;
    color: #95a2a9!important;
    background-color: #fff;
    background-clip: padding-box;
    float: left;
    border: 1px solid #d8dde1!important;
    border-radius: 8px!important;
    min-height: 48px!important;
    text-align: left;
}

.custom-file-container__image-clear {
    width: 18%;
    position: absolute;
    top: 0px;
    right: 0px;
    height: 46px;
    border-radius: 8px;
    line-height: 1.9;
}

.custom-file-container__custom-file__custom-file-control__button {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 6;
    display: block;
    height: calc(2.25rem + 2px);
    padding: .5rem .75rem;
    line-height: 1.75!important;
    color: #fff!important;
    background-color: #049aff!important;
    border-left: 1px solid #9da9af!important;
    min-height: 48px!important;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    min-width: 20%;
    text-align: center;
}

.custom-file-container__custom-file {
    width: 80%!important;
    position: absolute!important;
    left: 0!important;
    top: 0px;
    margin-top: 0px!important;
}

.opacity-slider {
    margin-top: 50px;
}

.w-90 {width: 90%;}

.opacity-number {
    position: relative;
    top: -3px;
}

.custom-file-container__image-multi-preview__single-image-clear {
    display: none!important;
}

.custom-file-container__image-multi-preview__single-image-clear__icon {
   display: none!important;
}

.base-img {
    background-image: url(../img/watermark-base.jpg);
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 600px;
    position: absolute;
    top: 130px;
    background-repeat: no-repeat;
    z-index: -1;
}


.table-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

button.btn.btn-primary.dropdown-toggle:after {
    display: none;
}

.fixed-table-toolbar {
    margin-right: 51px;
}

.btn-delete-table {
    position: absolute;
    top: 10px;
    float: right;
    right: 15px;
}

.bootstrap-table .fixed-table-container .table thead th .both {
    background-image: url(../img/sortable.svg)!important;
}

.bootstrap-table .fixed-table-container .table thead th .desc {
    background-image: url(../img/sortable-desc.svg)!important;
}

.bootstrap-table .fixed-table-container .table thead th .asc {
    background-image: url(../img/sortable-asc.svg)!important;
}

input.form-control.search-input {
    right: 4px;
    position: relative;
    border: 1px solid #d8dde1;
    border-radius: 8px;
}

.float-right.search.btn-group {
    left: 16px!important;
    float: left!important;
    position: absolute!important;
}


.box {
    background-color: #f7f7f7;
    border-radius: 10px;
    width: 100%;
    height: auto;
    padding: 0px 20px 10px 20px;
    margin-top: 20px;
}

.box .myLabel {
	background-color: #f7f7f7;
}

.box .form-control-lg {
	background-color: #f7f7f7;
}

button.btn.btn-link.button-remove {
    position: relative;
    top: -10px;
    background-color: white;
    border-radius: 50%;
    right: -24px;
    box-shadow: 0 0 5px 0 rgb(0 0 0 / 25%);
    font-size: 22px;
    padding: 0px 5px;
}

.table-borderless {
	border: none!important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f9fafd;
}

.table-hover tbody tr:hover {
    color: #212529;
    background-color: #e6e9f3;
}

tr.selected {
    background-color: #c6cdd1;
    transition: 0.4s;
}

.table th, .table td {
    padding: 1.25rem 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}



/* -=-=-=-=-=-=-=-=-=-=- MASONRY -=-=-=-=-=-=-=-=-=-=-=- */
.filtering span {
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
    border: 1px solid #95a2a9;
    border-radius: 8px;
    padding: 8px 15px;
	transition: 0.4s;
}

.filtering span:last-child {
    margin: 0;
}

.filtering .active {
    background-color: #048bff;
	border-color: #048bff;
	color: #fff;
	transition: 0.4s;
}

.filtering:hover .active {
    background-color: #0069d9;
	border-color: #0069d9;
	color: #fff;
	transition: 0.4s;
}

.filtering span:hover {
    background-color: #f7f7f7;
}

.portfolio-wrapper {
    position: relative;
    overflow: hidden;
	border-radius: 8px;
}
.portfolio-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 500ms ease;
}
.portfolio-wrapper .portfolio-image img {
    transform: scale(1.2);
    will-change: transform;
    transition: all 0.5s ease;
    width: 100%;
}
.portfolio-wrapper:hover .portfolio-image img {
    transform: none;
}
.portfolio-overlay:before {
    position: absolute;
    display: inline-block;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(0, 0, 0, 0.36);
    content: "";
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.85);
}
.portfolio-overlay .portfolio-content {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    padding: 0 35px;
}
.portfolio-content h4 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.portfolio-content p {
    color: #000;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}
.portfolio-content > a {
    line-height: 42px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    display: inline-block;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
}
.portfolio-wrapper:hover .portfolio-overlay {
    background-color: transparent;
}
.portfolio-wrapper:hover .portfolio-overlay:before {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.portfolio-wrapper:hover .portfolio-overlay .portfolio-content {
    transform: translateY(50%);
    transition: transform 0.5s ease;
    opacity: 1;
}

.file-options-user {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1500;
	opacity: 0;
	transition: 0.4s;
}

.portfolio-wrapper:hover .file-options-user {
    opacity: 1;
	transition: 0.4s;
}

.dd-user-photos.show {
    min-width: 40px!important;
    padding: 10px;
    left: -5px!important;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    align-items: center;
    margin: 5px 0px!important;
    max-width: 40px;
	animation: fadeInDown 1s forwards;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 1199px) {
    .portfolio-content h4 {
        font-size: 18px;
    }
}
@media screen and (max-width: 991px) {
    .portfolio-content h4 {
        margin-bottom: 10px;
    }
    .portfolio-content p {
        font-size: 15px;
    }
    .portfolio-content > a {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .portfolio-content h4 {
        font-size: 17px;
    }
    .portfolio-content p {
        font-size: 14px;
    }
}
@media screen and (max-width: 575px) {
    .portfolio-content h4 {
        font-size: 16px;
    }
}
.grid .grid-item {
    position: relative;
    overflow: hidden;
}
.grid .grid-item .portfolio-wrapper {
    position: relative;
    overflow: hidden;
}
.grid .grid-item .portfolio-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transition: all 500ms ease;
}
.grid .grid-item .portfolio-wrapper .portfolio-image img {
    transform: none;
    will-change: transform;
    transition: none;
    width: 100%;
}
.grid .grid-item .portfolio-wrapper:hover .portfolio-image img {
    transform: none;
}
.grid .grid-item .portfolio-overlay:before {
    position: absolute;
    display: inline-block;
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    content: "";
    opacity: 0;
    transition: all 0.5s ease;
    transform: scale(0.85);
	border-radius: 4px;
}
.grid .grid-item .portfolio-overlay .portfolio-content {
    position: absolute;
    bottom: 5%;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    padding:0px
}
.grid .grid-item .portfolio-content h3 {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0px;
    font-size: 26px;
    margin-bottom: 10px;
}
.grid .grid-item .portfolio-content h5 {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0px;
    font-size: 18px;
    margin-bottom: 0px;
}
.grid .grid-item .portfolio-content p {
    color: #fff;
    font-weight: 300;
    letter-spacing: 0px;
    margin-bottom: 0;
}
.grid .grid-item .portfolio-content a {
    display: inline-block;
    text-align: center;
    width: 100%;
}
.grid .grid-item .portfolio-wrapper:hover .portfolio-overlay {
    background-color: transparent;
}
.grid .grid-item .portfolio-wrapper:hover .portfolio-overlay:before {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.grid .grid-item .portfolio-wrapper:hover .portfolio-overlay .portfolio-content {
    transform: translateY(-50%);
    transition: transform 0.5s ease;
    opacity: 1;
}
@media screen and (max-width: 1199px) {
    .grid .grid-item .portfolio-content h4 {
        font-size: 18px;
    }
}
@media screen and (max-width: 991px) {
    .grid .grid-item .portfolio-content h4 {
        margin-bottom: 10px;
    }
    .grid .grid-item .portfolio-content p {
        font-size: 15px;
    }
    .grid .grid-item .portfolio-content a {
        margin-bottom: 10px;
    }
}
@media screen and (max-width: 767px) {
    .grid .grid-item .portfolio-content h4 {
        font-size: 17px;
    }
    .grid .grid-item .portfolio-content p {
        font-size: 14px;
    }
}
@media screen and (max-width: 575px) {
    .grid .grid-item .portfolio-content h4 {
        font-size: 16px;
    }
    .grid .grid-item .portfolio-overlay:before {
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
    }
}




/* -=-=-=-=-=-=-=-=-=-=- UPPY PHOTO EDITOR -=-=-=-=-=-=-=-=-=-=-=-*/
.uppy-Dashboard-inner {
    width: calc(100vw - 350px)!important;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-progress {
    background-color: #048bff!important;
}

.uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
    background-color: #048bff!important;
}

.uppy-StatusBar.is-complete .uppy-StatusBar-statusIndicator {
    color: #048bff!important;
}



/* -=-=-=-=-=-=-=-=- CART -=-=-=-=-=-=-=-=-=-=- */
.payment-info {
    background: #048bff;
    padding: 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold
}

.product-details {
    padding: 10px
}

.cart {
    background: #fff
}

.p-about {
    font-size: 12px
}

.table-shadow {
    -webkit-box-shadow: 5px 5px 15px -2px rgba(0, 0, 0, 0.42);
    box-shadow: 5px 5px 15px -2px rgba(0, 0, 0, 0.42)
}

.type {
    font-weight: 300;
    font-size: 14px
}

label.radio {
    cursor: pointer
}

label.radio input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none
}

label.radio span {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.5);
    display: inline-block;
    background-color: rgba(255,255,255,0.5);
    border-radius: 6px;
    transition: 0.4s;
    margin: 0px 5px;
}

label.radio input:checked+span {
    border-color: #fff;
    background-color: #fff;
	box-shadow: 0 0 10px 0 rgb(14 88 138);
}

.credit-inputs {
    background: #0480ea;
    color: #fff !important;
    border-color: #0480ea;
}

.credit-inputs::placeholder {
    color: #fff;
    font-size: 13px
}

.credit-card-label {
    font-size: 9px;
    font-weight: 300
}

.form-control.credit-inputs:focus {
    background: rgb(102, 102, 221);
    border: rgb(102, 102, 221)
}



.payment-info {
    background: #048bff;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    min-height: 430px;
}


.card-checkout {
    min-width: 80px;
    border: 1px solid #f7f7f7;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
}

.img-card-checkout {
    width: auto;
    max-height: 60px;
    position: relative;
    border-radius: 6px;
}

.spec {
    font-size: 14px
}

.payment-total {
    position: relative;
    width: 100%;
    top: 20px;
}


/* -=-=-=-=-=-=-=-=- PASSWORD STRENGTH -=-=-=-=-=-=-=-=-=-=-*/
.passtrengthMeter{
  position: relative;
  width: 100%;
}

.passtrengthMeter > input {
    width: 100%;
    display: inline-block;
    padding: 5px 15px;
    box-sizing: border-box;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border-radius: 0.5rem!important;
    border: 1px solid #ced4da;
    height: calc(2em + 1rem + 2px)!important;
    color: #7b848b;
    font-weight: lighter;
}

.passtrengthMeter > input:focus {
    outline-width: 0;
}

.passtrengthMeter::after {
    content: '';
    height: 5px;
    overflow: hidden;
    width: 0%;
    transition: width .5s;
    position: absolute;
    left: 0px;
    bottom: 0px;
    border-radius: 6px;
    top: 55px;
}

.passtrengthMeter.weak::after{
  background-color: #ff0067;
  width: 25%;
}

.passtrengthMeter.medium::after{
  content: '';
  background-color: #ffb300;
  width: 50%;
}

.passtrengthMeter.strong::after{
  content: '';
  background-color: #4bce7a;
  width: 75%;
}

.passtrengthMeter.very-strong::after{
  content: '';
  background-color: limegreen;
  width: 100%;
}

.passtrengthMeter .showPassword{
  position: absolute;
  width: 20px;
  top: calc(50% - 10px);
  right: 10px;
}

.passtrengthMeter .showPassword.active {
    opacity: 1;
    background-image: url(../icons/eye-slash.svg);
    background-repeat: no-repeat;
    position: absolute;
}

.passtrengthMeter .showPassword img{
  display: block;
  width: 100%;
  height: auto;
}

.passtrengthMeter .showPassword:hover{
  cursor: pointer;
}

.passtrengthMeter .tooltip {
  background: #54595e;
  top: 100%;
  color: #fff;
  font-family:Arial;
  font-size: 12px;
  display: block;
	border-radius: 6px;
  left: 50%;
  margin-bottom: 15px;
  opacity: 0;
  padding: 5px 10px;
  pointer-events: none;
  position: absolute;
  min-width: 70px;
  box-sizing: border-box;
  text-align: center;
  z-index: 10;
  -webkit-transform: translateY(5px);
     -moz-transform: translateY(5px);
      -ms-transform: translateY(5px);
       -o-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
     -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
      -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
       -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
          box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

.passtrengthMeter.weak .tooltip{
  background-color: #ff0a75;
	border-radius: 6px;
}
.passtrengthMeter.weak .tooltip:after{
  border-left: solid transparent 7px;
  border-right: solid transparent 7px;
  border-bottom: solid #ff0a75 7px;
  top: -7px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 0;
}

.passtrengthMeter.medium .tooltip {
    background-color: #ffb300;
    border-radius: 6px;
}

.passtrengthMeter.medium .tooltip:after{
  border-left: solid transparent 7px;
  border-right: solid transparent 7px;
  border-bottom: solid #ffb300 7px;
  top: -7px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 0;
}

.passtrengthMeter.strong .tooltip{
  	background-color: #4bce7a;
	border-radius: 6px;
}
.passtrengthMeter.strong .tooltip:after{
  border-left: solid transparent 7px;
  border-right: solid transparent 7px;
  border-bottom: solid #4bce7a 7px;
  top: -7px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 0;
}

.passtrengthMeter.very-strong .tooltip{
 	background-color: limegreen;
	border-radius: 6px;
}
.passtrengthMeter.very-strong .tooltip:after{
  border-left: solid transparent 7px;
  border-right: solid transparent 7px;
  border-bottom: solid limegreen 7px;
  top: -7px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 0;
}

.passtrengthMeter.weak .tooltip:before {
  top: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.passtrengthMeter .tooltip:after {
  border-left: solid transparent 7px;
  border-right: solid transparent 7px;
  border-bottom: solid #54595e 7px;
  top: -7px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  width: 0;
  -webkit-transition: all .25s ease-out;
     -moz-transition: all .25s ease-out;
      -ms-transition: all .25s ease-out;
       -o-transition: all .25s ease-out;
          transition: all .25s ease-out;
}

.passtrengthMeter:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(10px);
     -moz-transform: translateY(10px);
      -ms-transform: translateY(10px);
       -o-transform: translateY(10px);
          transform: translateY(10px);
}

.lte8 .passtrengthMeter .tooltip {
  display: none;
}

.lte8 .passtrengthMeter:hover .tooltip {
  display: block;
}


.select2-container--default .select2-selection--single {
    border: 1px solid #d8dde1!important;
    border-radius: 8px!important;
}

.select2-container .select2-selection--single {
    height: 50px!important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #969da3!important;
    line-height: 50px!important;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 14px!important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: -15px!important;
    margin-top: 8px!important;
}

.text-danger {
    color: #e03b6f !important;
}

.text-warning {
    color: #ffbe85 !important;
}

.text-success {
    color: #1ec5af !important;
}

.badge-success {
    background-color: #1ec5af !important;
}

.avatar {
    border-radius: 50%;
    overflow: hidden;
    width: 100%;
}

tr.detail-view {
    background-color: #f3f4f9;
}

.table-hover tbody tr.detail-view:hover {
    background-color: #f3f4f9;
}

tr.detail-view td {
    padding: 20px 30px!important;
}

.fixed-table-pagination {
    font-size: 14px!important;
}


#myGrid h6 {
    width: 100%;
    position: absolute;
    left: 14px;
    margin-top: 70px;
    font-size: 15px;
}

#myGridCart h6 {
    width: 100%;
    position: absolute;
    margin-top: 70px;
    font-size: 15px;
    font-weight: bold;
}

#myGridCart h5 {
    width: 100%;
    position: absolute;
    margin-top: 70px;
    font-size: 15px;
}

#examples {
    padding: 40px;
}

#discover {
    padding: 40px;
}

.card-facerecognition {
	padding: 20px;
}

#featured {
    padding: 40px;
}

#join {
    padding: 40px;
}

@media screen and (max-width: 991px) {
.navbar {
    padding: 20px;
}
	
.avatar {
    border-radius: 50%;
    overflow: hidden;
    width: 50%;
    margin-bottom: 20px;
}
#examples {
    padding: 20px;
}
#discover {
    padding: 20px;
}
h1, .h1 {
    font-size: 2rem;
}
.lh-1 {
    line-height: 2rem;
}
.card-facerecognition {
    padding: 0px 30px;
}
	
#featured {
    padding: 20px;
}
	
#join {
    padding: 10px;
}
.bg-main {
	padding: 0px 25px;
}
.h1-large {
    font-size: 3rem;
}
	
.bg-camera {
    width: 880px;
    height: 485px;
    z-index: 0;
    position: absolute;
    box-shadow: none;
    top: 40px;
    background-image: url(../img/camara.png);
    background-size: contain;
    background-repeat: no-repeat;
    right: 0px;
}
	
#my_camera {
    position: relative;
    left: -136px;
    top: 223px;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
    max-height: 180px;
}
	
.dismiss-selfie {
    position: absolute;
    top: 60px;
    font-size: 25px;
    left: 150px;
    color: #048bff;
    z-index: 1500;
}
	
.takeSelfie {
    background-image: url(../img/takeselfie_mobile.png);
    position: absolute;
    left: 140px;
    height: 160px;
    width: 300px;
    z-index: 2;
    background-size: 60%;
    top: 380px;
    background-repeat: no-repeat;
}
	
.reset-shot {
    position: absolute;
    background: #dc3545;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1500;
    bottom: 90px;
    left: 195px;
    font-size: 27px;
    color: #ffffff;
    transition: 0.4s;
    padding-top: 2px;
}

.search-findpic {
    position: absolute;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1;
    bottom: 90px;
    right: 465px;
    font-size: 26px;
    color: #ffffff;
    float: right;
    padding-left: 0px;
    transition: 0.4s;
    padding-top: 4px;
}
	
.take-shot {
    position: absolute;
    background: #049aff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid white;
    z-index: 1;
    bottom: 85px;
    left: calc(50% - 160px);
    transition: 0.4s;
}
	
.results {
    position: relative;
    top: 43px;
    display: inline-flex;
    margin-left: auto;
    margin-right: auto;
    left: 184px;
    z-index: 0;
}
	
.resultsBox {
    width: 425px;
    height: 223px;
    overflow: hidden;
}
	
.bg-home-container {
	height: 875px;
}

.contact-box {
	opacity: 1;
}

.contact-box.disabled {
	opacity: 0.2;
	cursor: not-allowed;
}
	
}

@media (min-width: 768px) {
  #join .card {
    background-position: 0px;
}
#join .card-body {
    text-align: right!important;
}
}
  
@media (max-width: 767px) {
  #join .card {
    background-position: -710px;
}
  
#join .card-body {
    text-align: left!important;
}
}

/* -=-=-=-=-=-=-=-=-=-=-=- APEX CHARTS -=-=-=-=-=-=-=-=-=-=- */
.apexcharts-zoom-icon, .apexcharts-zoomin-icon, .apexcharts-zoomout-icon, .apexcharts-reset-icon, .apexcharts-pan-icon, .apexcharts-selection-icon, .apexcharts-menu-icon, .apexcharts-toolbar-custom-icon {
    width: 30px!important;
    height: 30px!important;
    position: relative!important;
    top: -20px!important;
    padding: 0px 20px;
    right: 0px;
}

.apexcharts-toolbar {
	max-width: 300px!important;
}

.toolbar {
    margin-left: 10px;
	margin-bottom: 0px;
}

.apexcharts-menu-item {
    font-size: 15px!important;
    color: #95a2a9!important;
    padding: 6px 30px!important;
}

.apexcharts-menu.apexcharts-menu-open {
    opacity: 0.9!important;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%)!important;
}

.apexcharts-menu {
    top: 60%!important;
    border: none!important;
    border-radius: 8px!important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(244 248 253);
}

.chart-subtitle {
    margin-bottom: -5px;
    margin-left: 20px;
}

.apexcharts-legend-series {
    cursor: pointer;
    line-height: 22px!important;
	padding: 0px 30px!important;
}


/* The side navigation menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1000;
    top: 90px;
    right: 0;
    background-color: #f9fafb;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 25%);
}

.sidenavContent {
	padding: 20px;
	margin-bottom: 150px;
}

/* The navigation menu links */
.sidenav a {
  text-decoration: none;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #0e7bd8;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
  transition: margin-left .5s;
  padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}


/*-=-=-=-=-=-=- RATING -=-=-=-=-=-=-*/
.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 22px;
    color: #048bff;
    cursor: pointer;
	margin: 0px 5px;
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}

.sidebarDivider {
    width: 94%;
    border-top: 1px solid #d3d3d3;
    margin-left: 3%;
    margin-top: 5px;
    margin-bottom: 10px;
}


.myAvatarNav {
    top: 25px;
    position: absolute;
    right: 15px !important;
}

.myCartNav {
    float: right;
    top: 20px;
    position: absolute;
    right: 50px;
}

.picturesOfMeNav {
    float: right;
    top: 20px;
    position: absolute;
    right: 100px;
}

.photographerRegBtn {
    margin-left: auto;
    position: relative;
    top: 0px;
    margin-right: 50px;
}

.choose-language {
    position: relative;
    top: 0px;
    right: 30px;
}

@media (max-width: 768px) {

    .listAvatar{
        display: none;
    }

    .photographerRegBtn {
        display: none;
    }

    .choose-language {
        position: relative;
        top: 5px;
        right: 90px;
        margin-left: auto;
    }
}



/*-=-=-=-=-=-=-=- WATERMARK -=-=-=-=-=-=-=-=-*/
.file {
  visibility: hidden;
  position: absolute;
}

.base-watermark {
    position: absolute;
    left: 0px;
    height: 100%;
    width: 100%;
		user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.img-watermark {
    padding: 0px;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    /* width: 100%; */
    height: auto;
    position: relative;
    z-index: 1;
    left: 0px;
    max-width: 400px;
    max-height: 400px;
	/* opacity: 0.5; */
}

.draggable {
    max-width: 400px;
    max-height: 400px;
    padding: 0px;
    float: left;
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#containment-wrapper {
    width: 100%;
    height: 600px;
    border: none;
    padding: 0px;
    position: relative;
    margin: 0px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.opacitySlider {
    position: relative;
    top: 3px;
    width: 60%;
}

.twoFaHide {
	display: visible;
}


/*-- Img Modal --*/
.detailContainer {
    padding: 0px;
}

.detailImgMainContainer {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1500;
    margin-left: 15px;
    cursor: pointer;
}

.detailImgMainContainer:hover .detailTextContainer {
    opacity: 1;
}

.detailTextContainer {
    height: auto;
    overflow: hidden;
    padding: 20px 40px 20px 40px;
    z-index: 1499;
    margin-left: 0px;
    max-width: 100%;
    margin-bottom: 0px;
    background-color: rgba(0,0,0,0.75);
    position: absolute;
    bottom: 0px;
    color: white;
    opacity: 0;
    transition: 0.4s;
}

.detailImgContainer {
    border-radius: 4px;
    overflow: hidden;
    left: 0px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    padding: 0px;
}

.detailImg {
    transform: scale(1.6);
}

.detailImgViewer {
    width: 90vw;
    margin-top: 8vh;
    max-width: 90vw;
    overflow: visible;
    border-radius: 10px;
    margin-left: 5vw;
}

.detailContent {
    max-height: 85vh;
    border: none;
    height: 85vh;
}

#imageDetail {
}

.closeDetailImg {
    position: absolute;
    top: 14px;
    right: 10px;
    z-index: 1500;
}

.carouselDetail {
    min-height: 85vh;
}

.carouselInnerDetail {
    height: 85vh;
}

.nextDetailIcon {
    background-image: url(../img/carouselNext.svg);
    position: absolute;
    right: -50px;
}

.prevDetailIcon {
    background-image: url(../img/carouselPrev.svg);
    position: absolute;
    left: -50px;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 35px;
    height: 35px;
}

.detailBtnContainer {
    position: absolute;
    right: 0px;
    bottom: 0px;
    background-color: white;
    padding: 20px;
    z-index: 1501;
    width: 25%;
    margin-left: 75%;
    border-bottom-right-radius: 5px;
}

.fill {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fill img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    height: auto;
    pointer-events: none;
    object-fit: contain;
}

.modalImg {
    opacity: 1;
    transition: 0.4s;
  }
  
.modalImg:hover {
    opacity: 0.6;
    transition: 0.4s;
}

.divider {
    border-bottom: 1px solid #c7cfdc;
    width: 100%;
    margin: 20px 15px 30px 15px;
}


.date-img-container {
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.date-img {
    display: flex;
    margin-bottom: 20px;
    opacity: 1;
    transition: 0.4s;
    flex-direction: row;
    align-content: center;
    justify-content: center;
}

.date-img:hover {
    opacity: 0.7;
    transition: 0.4s;
}

#my_camera_userSelfie {
    position: relative;
    left: 0px;
    top: 0px;
    margin-left: auto;
    margin-right: auto;
}

.take-shot-modal {
    position: absolute;
    background: #049aff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid white;
    z-index: 1;
    bottom: -55px;
    left: calc(50% - 35px);
    transition: 0.4s;
}

.reset-shot-modal {
    position: absolute;
    background: #dc3545;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border: none;
    z-index: 1500;
    left: 285px;
    font-size: 27px;
    color: #000000;
    transition: 0.4s;
    bottom: -50px;
}

.resultsBox.resultsBoxModal {
    position: absolute;
    top: -52px;
    left: -168px;
}

a.search-findpic-modal {
    position: absolute;
    left: 50px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: black;
    font-size: 28px;
    text-align: center;
    bottom: -50px;
    left: 150px;
}

.homeWebcamStyle {
    position: relative;
    object-fit: cover;
    height: 250px;
    top: 300px;
    left: 250px;
    width: 335px;
}

.homePictureWebcamStyle {
    position: relative;
    object-fit: cover;
    height: 250px;
    top: 179px;
    right: 85px;
    width: 335px;
}

@media (max-width: 991px) {
    .homeWebcamStyle {
        position: relative;
        height: 183px;
        top: 221px;
        left: 184px;
        width: 243px;
    }
    
    .homePictureWebcamStyle {
        position: relative;
        height: 183px;
        top: 135px;
        right: 59px;
        width: 243px;
    }
}

.webcamStyle {
    position:relative;
    height:250px;
    width: 100%;
    object-fit: cover;
}

.defaultWebcamClassname {
    position:relative;
    height:250px;
    top:300px;
    left:250px;
}

.relativePictureWebcamStyle{
    position:absolute;
    height:250px;
    left:0PC;
    width: 100%;
    object-fit: cover;
}

.defaultPictureClassname{
    position:relative;
    height:250px;
    top:300px;
    left:250px;
}

.modal-dialog-slideout {
    min-height: 100%; 
    margin: 0 0 0 auto;
    background: #fff;
}

.modal.fade .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(100%,0)scale(1);
    transform: translate(100%,0)scale(1);
}

.modal.fade.show .modal-dialog.modal-dialog-slideout {
    -webkit-transform: translate(0,0);
    transform: translate(0,0);
    display: flex;
    align-items: stretch;
    -webkit-box-align: stretch;
    height: 100%;
}

.modal.fade.show .modal-dialog.modal-dialog-slideout .modal-body{
    overflow-y: auto;
    overflow-x: hidden;
}

.modal-dialog-slideout .modal-content{
    border: 0;
}

.modal-dialog-slideout .modal-header, .modal-dialog-slideout .modal-footer {
    height: 69px; 
    display: block;
} 

.modal-dialog-slideout .modal-header h5 {
    float:left;
}

.lateralPopUpMessage hr{
    margin-top: 10px;
    margin-bottom: 10px;
}

.show-password{
    pointer-events: all !important;
    /* z-index: 10 !important; */
    cursor: pointer;
}

/*Loader*/
.preloader-it {
    background: #fff;
    position: fixed;
    z-index: 10001;
    height: 100%;
    width: 100%;
    overflow: hidden; 
}
.loader-pendulums-container{
    position:absolute;
    height: 100%;
    width: 100%;
    background: white;
    z-index: 1000;
}

.loader-pendulums-container-overlay{
    position:fixed;
    background: transparent;
    opacity: 0.6;
    height: 100%;
    width: 100%;
    z-index: 999999;
    padding:0;
    margin:0;
    top:0;
    left:0;
}

.loader-pendulums {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    margin: 0 auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 4rem;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    border: 0.1em solid #e0e3e4; 
}

.loader-pendulums:before, .loader-pendulums:after {
    content: '';
    width: 1em;
    height: 1em;
    left: -.1em;
    top: -.1em;
    padding: .1em;
    display: block;
    border-radius: 50%;
    position: absolute;
    -webkit-transform-origin: center center;
    transform-origin: center center;
    border: .1em solid;
    border-color: #adb3b6 transparent transparent transparent;
    -webkit-animation: pendulum infinite 2s cubic-bezier(0.3, 1.65, 0.7, -0.65);
    animation: pendulum infinite 2s cubic-bezier(0.3, 1.65, 0.7, -0.65); 
}

.loader-pendulums:before {
    border-color: #324148 transparent transparent transparent;
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
    -webkit-animation-name: pendulum2;
    animation-name: pendulum2; 
}
  
@-webkit-keyframes pendulum {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); 
    }
    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg); 
    } 
}

@keyframes pendulum {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg); 
    }
    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        transform: rotate(359deg); 
    } 
}

@-webkit-keyframes pendulum2 {
    from {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); 
    }
    to {
        -webkit-transform: rotate(520deg);
        -moz-transform: rotate(520deg);
        -ms-transform: rotate(520deg);
        -o-transform: rotate(520deg);
        transform: rotate(520deg); 
    } 
}

@keyframes pendulum2 {
    from {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg); 
    }
    to {
        -webkit-transform: rotate(520deg);
        -moz-transform: rotate(520deg);
        -ms-transform: rotate(520deg);
        -o-transform: rotate(520deg);
        transform: rotate(520deg); 
    } 
}

span.deleteCartItem {
    color: #048bff;
    text-decoration: none!important; 
    transition: 0.4s;
    cursor: pointer;
}

span.deleteCartItem:hover {
    color: #0056b3;
    text-decoration: none!important; 
    transition: 0.4s;
}

.text-link {
    color: #048bff;
}

.text-link:hover {
    color: #0056b3;
    text-decoration: none!important; 
    cursor:pointer;
    transition: 0.4s;
}

.paymentMethod{
    position: relative;
    z-index: 1;
}

.modal-70w{
    max-width: 70%;
}

.filepond--credits{
    display: none;
}

.filepond--item-panel{
    height: 60px !important;
}

.filepond--item{
    height: 60px !important;
}

.filepond--image-clip{
    display: none;
}

.filepond--image-preview-wrapper{
    border-radius: 16px;
}

.filepond--panel-top.filepond--item-panel{
    border-radius: 16px !important;
}

.filepond--panel-top.filepond--item-panel::after{
    background-color: transparent;
}

.filepond--drop-label{
    background-color: #f1f0ef !important;
}

.filepond--list{
    position: relative !important
}

.filepond--panel-center.filepond--panel-root,
.filepond--panel.filepond--panel-root{
    height: 0px !important;
}

.filepond--root.filepond--hopper{
    position: relative !important
}

.filepond--panel-center.filepond--item-panel,
.filepond--panel-bottom.filepond--item-panel,
.filepond--panel-bottom.filepond--panel-root{
    display: none;
}

#singlePrice {
    background: #f7f7f7;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 10px 20px;
    align-items: center;
    align-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

#singlePrice .myLabel {
    background-color: #f7f7f7;
    top: -8px;
}

#singlePrice .form-control {
    background-color: #f7f7f7;
    margin-top: -30px;
}

#variablePrice {
    position: relative;
    width: 100%;
    background-color: #f7f7f7;
    z-index: 99;
    padding: 26px 20px;
    align-items: center;
    align-content: center;
    border-radius: 10px;
}

#variablePrice .myLabel {
    background-color: #f7f7f7;
    top: -8px;
}

#variablePrice .form-control {
    background-color: #f7f7f7;
    margin-top: -30px;
}

.add {
    margin-top: 50px;
    position: absolute;
    width: 85%;
}

.col-remove {
    margin-top: 40px;
}

.form-holder {
    display: flex;
    background-color: transparent;
    align-items: center;
    width: 100%;
    flex-direction: row;
}

.form-holder .col-auto.form-group.item-form {
    width: 25%;
}

.form-holder-append .col-auto.form-group.item-form {
    width: 25%;
}

.form-holder .col-remove {
  display: none;
}

.form-holder-append .col-remove {
    display: block;
    width: 25%;
}

.form-holder-append {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.input-field input {
  width: 100px;
}

.remove {
  display: none;
}

.form-holder-append .remove {
    display: block;
    margin-top: -45px;
    width: 96%;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    margin: 3px;
}

.btn-license {
    width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bg-success {
    background-color: #42b6a0 !important;
}


.authCodeForm {
    width: 80%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-left: 10%;
}

input.authCodeInput {
    width: 25%;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    margin: 10px 5px;
    height: 50px;
    text-align: center;
    font-size: 22px;
    color: #078bff;
}

.btn-checkout {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: white;
}

.img-grid {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.img-grid-pics {
    width: 40%;
    height: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    border-radius: 2px;
    margin: 5%;
    float: left;
}

.img-grid-pics img {
    object-fit: cover;
}

.cardSuccess-overlay {
    background-color: rgb(30 197 174 / 90%);
    position: absolute;
    width: 100%;
    border-radius: 5px;
    z-index: 1;
    height: 100%;
}

.cardSuccess-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    height: 100%;
    text-align: center;
    color: white;
}

.image-options-btn.disarmed {
    background-color: #1ec5ae;
}

.Toastify__toast--success{
    background: #048bff !important;
}

.dropdown-menu-right .nav-item{
    display: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; 
}

input[type=number] {
    -moz-appearance:textfield;
}



/*-=-=-=-=-=-=-=- ADDITIONAL STYLES - 24.02 -=-=-=-=-=-=-=-=-*/
.css-s9zi6b-control {
    margin-right: 10px;
}

@media (max-width: 767px) {
  .css-s9zi6b-control {
    margin-right: 0px;
}
}