html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", "Segoe UI";
}
.wrap {
  max-width: 1280px;
}
.text-shadow-white {
  text-shadow: 2px 2px #fff;
}
/* Font Color */
.text-black {
  color: #000000;
}
.text-shadow-red {
  text-shadow: 2px 2px rgb(203 255 181);
}
.text-blue {
  color: #1b1f50 !important;
}
.text-orange-light {
  color: #ffa500;
}

.text-orange {
  color: #ff681f;
}

.text-secondary {
  color: #707070;
}

/* Background Color */
.bg-primary {
  background-color: #efa86b !important;
}
.bg-secondary {
  background-color: #8dc21f !important;
}
.bg-yellow {
  background-color: #fff4a9;
}
.bg-gray {
  background-color: #edeff1;
}
.bg-blue {
  background-color: #2196f3;
}
.bg-white-50 {
  background-color: #fffffff0;
}
.bg-transparent {
  background-color: #00000000;
}

/* Image Size */
.square-50 {
  width: 50px;
  height: 50px;
}
.square-60 {
  width: 60px;
  height: 60px;
}
.img-60 {
  width: 60px;
  height: auto;
}

.img-70 {
  width: 70px;
  height: auto;
}

.img-80 {
  width: 80px;
  height: auto;
}

.img-90 {
  width: 90px;
  height: auto;
}

.img-120 {
  width: 120px;
  height: auto;
}

.img-150 {
  width: 150px;
  height: auto;
}
.store-image img {
  height: 50px;
  width: auto;
}

/* Font Size */
.font-small {
  font-size: 0.8rem !important;
}
.font-medium {
  font-size: 1.2rem !important;
  line-height: 30px;
}
.font-large {
  font-size: 1.5rem !important;
}
.font-1 {
  font-size: 1rem !important;
}
.font-2 {
  font-size: 2rem !important;
}
.font-3 {
  font-size: 3rem !important;
}
/* heights and width*/
.square-100 {
  height: 100px;
  width: 100px;
}

.h-250 {
  height: 250px;
}

.min-h-70 {
  min-height: 70px;
}

.mx-h-60 {
  max-height: 60px;
}

.mx-h-120 {
  max-height: 120px;
}

.mx-h-300 {
  max-height: 300px;
}
.mx-h-500 {
  max-height: 500px;
}
.mx-h-600 {
  max-height: 500px;
}
.min-w-200 {
  min-width: 200px;
}
.mx-w-100 {
  max-width: 100px;
}
.mx-w-250 {
  max-width: 250px;
}

.mx-w-500 {
  max-width: 500px;
}

/* Box Shadow */
.elevate-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.elevate-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.elevate-3 {
  box-shadow: 0 7px 25px 0 rgba(0, 0, 0, 0.05);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); */
}
.elevate-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.elevate-5 {
  box-shadow: 0 50px 60px 0 rgba(7, 116, 128, 0.2);
  /* box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); */
}

/* Parallax */

.parallax-container {
  position: relative;
  overflow: hidden;
  height: 600px;
}

.parallax-container .parallax {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.parallax-container .parallax img {
  opacity: 0;
  position: absolute;
  object-fit: cover;
  left: 50%;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.parallax-container .carousel-caption:first-child {
  top: 120px;
}

.banner-overlay {
  background-color: #00000060;
}

/* Navbar */
.navbar .nav-item:focus {
  outline: 2px solid #4500e7;
}
.navbar .nav-item {
  position: relative;
  overflow: hidden;
  will-change: color;
  -webkit-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
  white-space: nowrap;
}
.navbar .nav-item::after,
.navbar .nav-item::before {
  content: "";
  width: 0;
  height: 3px;
  background-color: #394894;
  will-change: width;
  -webkit-transition: width 0.1s ease-out;
  transition: width 0.1s ease-out;
  position: absolute;
  bottom: 0;
}
.navbar .nav-item::before {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.navbar .nav-item::after {
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
.navbar .nav-item:hover::after,
.navbar .nav-item:hover::before {
  width: 100%;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

/* User Profile Page */

.cover-image {
  width: 100%;
  max-height: 245px;
  object-fit: cover;
  filter: blur(2px);
}

.profile-header {
  bottom: -150px;
  left: 0;
  right: 0;
}

.change-profile-btn-container {
  position: absolute;
  top: 120px;
  right: 10px;
}

.file-upload {
  height: 40px;
  width: 40px;
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 4px solid #fff;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #2590eb 50%, #fff 50%);
  background-size: 100% 200%;
  transition: all 1s;
  color: #fff;
  font-size: 100px;
}
.file-upload input[type="file"] {
  cursor: pointer;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.img-170 {
  width: 170px;
  height: 170px;
}
.obj-fit-cover {
  object-fit: cover;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
  color: #6a6a6a;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: rgba(255, 0, 0, 0);
  border-bottom: 3px solid #f9826c !important;
  font-weight: bold;
  color: #313131;
}

/* SideNav */

.sidenav {
  position: fixed;
  width: 300px;
  left: 0;
  top: 0;
  margin: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  height: 100%;
  height: calc(100% + 60px);
  height: -moz-calc(100%);
  padding-bottom: 60px;
  background-color: #fff;
  z-index: 1001;
  overflow-y: auto;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
}
.sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
  display: none;
}

.seperator {
  background-color: #8dc21f;
  height: 2px;
  position: relative;
  width: 70px;
  display: block;
  margin: 10px auto 20px;
}

.line-h-32 {
  line-height: 32px;
}

.footer {
  background: #e7e1e1;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    color-stop(41%, #e7e1e1),
    color-stop(100%, rgba(255, 255, 255, 0.916387)),
    to(rgba(255, 255, 255, 0.01))
  );
  background: linear-gradient(
    0deg,
    #e7e1e1 41%,
    rgba(255, 255, 255, 0.916387) 100%,
    rgba(255, 255, 255, 0.01) 100%
  );
}

/* Inputs */

.label__checkbox {
  display: none;
}

.label__check {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: white;
  vertical-align: middle;
  width: 3.5rem;
  height: 3.5em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s ease;
}

.label__text {
  text-overflow: ellipsis;
  user-select: none;
}

.label__checkbox:checked + .label__text .label__check {
  animation: check 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) forwards;
}

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes icon {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes check {
  10% {
    opacity: 0.1;
    background: rgba(0, 0, 0, 0.2);
  }
  12% {
    opacity: 0.4;
    background: rgba(0, 0, 0, 0.1);
    border-width: 0;
  }
  50% {
    background: #00d478;
    color: #fff;
    border: 0;
    opacity: 0.6;
  }
  100% {
    background: #00d478;
    color: #fff;
    border: 0;
    opacity: 1;
  }
}

.rounded-custom {
  border-radius: 16px;
}
.nav-tabs .nav-link {
  border: none;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background-color: rgb(243, 243, 243);
}

#list-example .list-group-item.active {
  background-color: #fff;
  font-weight: bold;
  color: black;
  border-left: 2px solid black !important;
}

.custom-button {
  background: linear-gradient(-45deg, #ee7752, #008000, #23a6d5, #23d5ab);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  -webkit-box-shadow: -1px 9px 0px -3px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -1px 9px 0px -3px rgba(0, 0, 0, 0.75);
  box-shadow: -1px 9px 0px -3px rgba(0, 0, 0, 0.75);
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Material Select */
.input-field {
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.select-wrapper {
  position: relative;
}
.select-wrapper ul {
  padding: 0;
  outline: none;
}
.select-wrapper input.select-dropdown {
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border: 1px solid #9e9e9e;
  outline: none;
  height: 3rem;
  line-height: 3rem;
  width: 100%;
  font-size: 16px;
  margin: 0 0 8px 0;
  padding: 1rem;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 50px;
  z-index: 1;
}

.dropdown-content {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  background-color: #fff;
  margin: 0;
  display: none;
  min-width: 100px;
  overflow-y: auto;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1003;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}
.select-dropdown.dropdown-content li.selected {
  background-color: rgba(0, 0, 0, 0.03);
}
.dropdown-content li {
  list-style: none;
  clear: both;
  color: rgba(0, 0, 0, 0.87);
  cursor: pointer;
  min-height: 50px;
  line-height: 1.5rem;
  width: 100%;
  text-align: left;
  display: flex;
}
.dropdown-content li:hover {
  background-color: rgb(243, 243, 243) !important;
}

.select-dropdown li img {
  height: auto;
  width: auto;
  max-height: 90px;
  margin: 5px 15px;
  float: left;
}

.dropdown-content li > a,
.dropdown-content li > span {
  font-size: 16px;
  color: #26a69a;
  display: block;
  line-height: 22px;
  padding: 14px 16px;
}

.select-wrapper select {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  padding: 5px;
  border: 1px solid #f2f2f2;
  border-radius: 2px;
  height: 3rem;
  outline: none;
}

.select-wrapper select {
  display: none;
}

.select-wrapper .caret {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  z-index: 0;
  fill: rgba(0, 0, 0, 0.87);
}
.confetti-container {
  width: 100%;
  height: 100%;
}
.confetti {
  width: 15px;
  height: 35px;
  background-color: #f2d74e;
  position: absolute;
  left: 50%;
  animation: confetti 4s ease-in-out -2s infinite;
  transform-origin: left top;
}
.confetti:nth-child(1) {
  background-color: #f2d74e;
  left: 10%;
  animation-delay: 0;
}
.confetti:nth-child(2) {
  background-color: #95c3de;
  left: 20%;
  animation-delay: -1s;
}
.confetti:nth-child(3) {
  background-color: #ff9a91;
  left: 30%;
  animation-delay: -3s;
}
.confetti:nth-child(4) {
  background-color: #f2d74e;
  left: 40%;
  animation-delay: -2.5s;
}
.confetti:nth-child(5) {
  background-color: #95c3de;
  left: 50%;
  animation-delay: -4s;
}
.confetti:nth-child(6) {
  background-color: #ff9a91;
  left: 60%;
  animation-delay: -6s;
}
.confetti:nth-child(7) {
  background-color: #f2d74e;
  left: 70%;
  animation-delay: -1.5s;
}
.confetti:nth-child(8) {
  background-color: #95c3de;
  left: 80%;
  animation-delay: -2s;
}
.confetti:nth-child(9) {
  background-color: #ff9a91;
  left: 90%;
  animation-delay: -3.5s;
}
.confetti:nth-child(10) {
  background-color: #f2d74e;
  left: 90%;
  animation-delay: -4.5s;
}
.confetti:nth-child(11) {
  background-color: #6934ca;
  left: 15%;
  animation-delay: -5.5s;
}
.confetti:nth-child(12) {
  background-color: #ca240e;
  left: 25%;
  animation-delay: -6.5s;
}
@keyframes confetti {
  0% {
    transform: rotateZ(15deg) rotateY(0deg) translate(0, 0);
  }
  25% {
    transform: rotateZ(5deg) rotateY(360deg) translate(-5vw, 20vh);
  }
  50% {
    transform: rotateZ(15deg) rotateY(720deg) translate(5vw, 30vh);
  }
  75% {
    transform: rotateZ(5deg) rotateY(1080deg) translate(-10vw, 50vh);
  }
  100% {
    transform: rotateZ(15deg) rotateY(1440deg) translate(10vw, 70vh);
  }
}

.shape {
  width: 60px;
  height: 40px;
  background: #92a8c7;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
.shape.arrow-right {
  -webkit-clip-path: polygon(
    0% 20%,
    60% 30%,
    60% 0%,
    100% 50%,
    60% 100%,
    60% 80%,
    0% 80%
  );
  clip-path: polygon(
    0% 20%,
    60% 30%,
    60% 0%,
    100% 50%,
    60% 100%,
    60% 70%,
    0% 80%
  );
}

/* Login Page */

.login-container {
  width: 450px;
}

.login-background {
  background-color: rebeccapurple;
  height: 100%;
  min-height: 100vh;
}

.login-border-right {
  border-right: 1px solid #eaeaea;
}

.payment-selector input {
  position: absolute;
  z-index: 999;
}

.visa {
  background-image: url(https://i.imgur.com/lXzJ1eB.png);
}
.mastercard {
  background-image: url(https://i.imgur.com/SJbRQF7.png);
}
.jcb {
  background-image: url(https://www.jcbeurope.eu/about/emblem_slogan/images/index/logo_01.gif);
}

.payment-selector input:active + .payment-card {
  opacity: 0.9;
}
.payment-selector input:checked + .payment-card {
  -webkit-filter: none;
  -moz-filter: none;
  filter: none;
}
.payment-card {
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  width: 100px;
  height: 70px;
  -webkit-transition: all 100ms ease-in;
  -moz-transition: all 100ms ease-in;
  transition: all 100ms ease-in;
  -webkit-filter: brightness(1.8) grayscale(1) opacity(0.7);
  -moz-filter: brightness(1.8) grayscale(1) opacity(0.7);
  filter: brightness(1.8) grayscale(1) opacity(0.7);
}
.payment-card:hover {
  -webkit-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
  -moz-filter: brightness(1.2) grayscale(0.5) opacity(0.9);
  filter: brightness(1.2) grayscale(0.5) opacity(0.9);
}

.striped-blue .row:nth-child(even) {
  background: #e6f5ff;
  border-bottom: 1px solid #e6f5ff;
}

.list-style-number {
  list-style-type: decimal;
}
.footer-links a {
  transition: all 0.6s;
}

.footer-links a:hover {
  color: #9065e2 !important;
}

.trial-btn-container {
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 999;
}

@media only screen and (max-width: 992px) {
  .parallax-container {
    height: 500px;
  }
  .login-border-right {
    border-top: 1px solid #eaeaea;
  }
  .responsive-font {
    font-size: 2.4em !important;
  }
}

@media only screen and (max-width: 767px) {
  .shape {
    transform: rotate(90deg);
  }
  .responsive-font {
    font-size: 1.8em !important;
  }

  .trial-btn-container a {
    font-size: 1em !important;
    padding: 0.4rem !important;
  }
}
@media only screen and (min-width: 600px) {
  .bg-transparent {
    background-color: #fff;
  }
}

@media only screen and (max-width: 600px) {
  .parallax-container {
    height: 300px;
  }
  .parallax-container .carousel-caption:first-child {
    top: 0px;
  }
  .carousel-caption {
    right: 0;
    left: 0;
  }

  .store-image img {
    height: auto;
    max-height: 50px;
    max-width: 100px;
  }
  .parallax-container .carousel-caption:first-child h4 {
    font-size: 30px;
  }
  .h1 {
    font-size: 2rem;
  }
  .login-container {
    width: 100%;
  }
  .responsive-font {
    font-size: 1.5em !important;
  }
}
