.card-block {
  min-height: 400px;

}

.card-block:hover {
  transition: all 0.1s;
  transform: scale(1.00);
}

.card-block:not(:hover) {
  transition: all 0.1s;
  transform: scale(0.97);
}

::-webkit-scrollbar {
  width: 17px;
  height: 17px;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d1d7e0;
  border-radius: 20px;
  border: 6px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #4c495d;
}

.welcome-header {
  font-size: 5rem;
  text-align: center;
  margin-top: 4rem;
}

.guide-desc {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.app-header {
  padding: 1rem;
  margin-top: 2rem;
}

.post-card {
  position: fixed;
  bottom: 0;
  left: 10%;
  right: 10%;
  max-width: 80%;
  height: 70%;
  margin: 0 auto;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .5);
  background-color: #343a40;
  border-radius: 30px 30px 0px 0px;
  color: #fff;
  overflow-y: auto;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}

.post-card.show {
  transform: translateY(0%);
}

.close {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 50px;
  background: none;

}

.post-card.form-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 1rem;
}

.post-card input[type=text] {
  font-size: 20px;
}

.post-card .card-header {
  padding: 10px 20px;
  background-color: #212529;
  color: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.post-card .card-title {
  margin-top: 0;
  padding: 0.75rem;
  font-size: 50px;
}

.post-card .form-group label {
  margin-top: 10px;
  font-size: 24px;
  display: block;
  color: #fff;
}

.post-card .form-control {
  margin-bottom: 20px;
  background-color: #f2f2f2;
  color: #495057;
}

.post-card textarea.form-control {
  font-size: 20px;
  resize: vertical;
  background-color: #f2f2f2;
  color: #495057;
}

.post-card .card-footer {
  background-color: #343a40;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 10px 20px;
}

.post-card .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.post-card .btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

.post-card .btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.post-card .text-light {
  color: #f8f9fa;
}

.add-button {
  display: inline-block;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #4C495D;
  color: #D1D7E0;
  font-size: 24px;
  width: 100px;
  height: 60px;
  border-radius: 20%;
  text-align: center;
  line-height: 48px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.add-button:hover {
  background-color: #D1D7E0;
  color: #802BB1;
}

.add-button:active {
  background-color: #007bff;
  color: #802BB1;

}

.add-button:focus {
  outline: none;
  color: #802BB1;

}

.add-button:hover,
.add-button:active,
.add-button:focus {
  text-decoration: none;
  color: #802BB1;
}



.add-button:before {
  content: "+";
  display: block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  line-height: 1;
}

.add-button:hover:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #6c757d;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s ease;
}

.add-button:active:after {
  width: 120%;
  height: 120%;
  opacity: 0.2;
}

.modal-content {
  background-color: black;
  color: white;
}

.rating {
  border: none;
  float: left;
}

.rating input {
  display: none;
}

.rating label {
  float: right;
  color: grey;
  font-size: 30px;
}

.rating label:before {
  content: '\2605';
}

.rating label:hover {
  cursor: pointer;
}

.rating input:checked~label {
  color: rgb(255, 102, 0);
}

.rating input:checked~label {
  color: rgb(255, 102, 0);
  transition: all 0.2s;
  transform: scale(1.1);
}

.image-container input[type="radio"] {
  display: none;
}

.image-container img {
  border: 5px solid transparent;
  border-radius: 12px;
  width: 100px;
  height: 100px;
  z-index: 1;
}

.image-container input[type="radio"]:checked+label img {
  border-color: #802BB1;
  transform: scale(1.0);
  transition: all 0.2s;
  transform: scale(1.1);
  z-index: 100;
}

.image-container:hover {
  transition: all 0.2s;
  transform: scale(1.3);
}

.image-container:not(:hover) {
  transition: all 0.2s;
  transform: scale(1.0);
}

.image-container {
  display: inline-block;
  margin-right: 12px;

}



.price-container {
  background: transparent;
  padding: 4px;
  position: relative;
  width: fit-content;
}

.price-container input, .price-container label{
  appearance: none;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  padding: 5px 10px;
  background: transparent;
  font-size: 50px;
  transition: all 0.2s;
}

.price-container input:checked, .price-container label:checked {
  transform: scale(1.7) !important;
  filter: grayscale(0%);
}

.price-container input:not(:checked), .price-container label:not(:checked) {
  filter: grayscale(100%);
  transform: scale(0.8)
}

.price-container input:hover, .price-container label:hover {
  filter: grayscale(0%);
  transition: all 0.2s;
  transform: scale(1.1)
}

#free::before {
  content: "🆓";
  text-align: center;
}
#cheap::before {
  content: "💸";
  text-align: center;
}
#affordable::before {
  content: "💰";
  text-align: center;
}
#expensive::before {
  content: "💎";
  text-align: center;
}


.list-group-item.active {
  background-color: #007bff;
  color: #fff;
}

.user-profile {
  background-color: #1c1c1c;
  color: #f5f5f5;
}

.user-profile .card-header {
  background-color: #343a40;
  border-bottom: none;
}

.user-profile h3 {
  color: #f5f5f5;
}

.user-profile label {
  color: #f5f5f5;
}

.user-profile input[type="text"],
.user-profile input[type="email"],
.user-profile input[type="password"] {
  background-color: #2c2c2c;
  color: #f5f5f5;
  border-color: #f5f5f5;
}

.user-profile .form-control-file {
  color: #f5f5f5;
}

.user-profile button[type="submit"] {
  background-color: #007bff;
  color: #f5f5f5;
  border-color: #007bff;
}

.user-profile button[type="submit"]:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

.user-profile input[disabled] {
  color: #aaa;
  font-style: italic;
}

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


/*https://www.html5canvastutorials.com/blog/2012/02/css-tag-icons/*/
.tag {
  font-family: Helvetica, Arial, sans-serif;
  display: inline-block;
  color: #fff;
  position: relative;
  padding: 10px 35px 10px 35px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  margin: 0 40px 20px 0;
  text-decoration: none;
  background: #d63838;
}

.tag:before {
  background: #fff;
  width: 10px;
  height: 10px;
  content: "";
  display: inline-block;
  border-radius: 20px;
  box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.2);
  margin: 0 5px 0 0;
}


.tag:after {
  content: "";
  border-radius: 5px;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 5px 40px rgba(255, 255, 255, 0.4), 0px 0px 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 0;
}


.tag:hover:after {
  box-shadow: inset 0px -5px 30px rgba(255, 255, 255, 0.4), 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.tag:active:after {
  box-shadow: inset 0px 0px 30px rgba(0, 0, 0, 0.3), 0px 0px 5px rgba(0, 0, 0, 0.2);
}
* {
  font-family: 'Montserrat', sans-serif;
}

.bg-dark {
  background-color: #2D283E !important;
}

.carousel-item {
  height: 100vh;
  min-height: 300px;
}

.carousel-caption {
  bottom: 220px;
}

.add-button {
  z-index: 10;
}

.carousel-caption h5 {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 25px;
}

.carousel-caption p {
  width: 60%;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
}

.carousel-caption a {
  text-transform: uppercase;
  text-decoration: none;
  background: darkorange;
  padding: 10px 30px;
  display: inline-block;
  color: #000;
  margin-top: 15px;
}

.navbar-nav a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}

.navbar-light .navbar-brand {
  color: #fff;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.w-100 {
  height: 100vh;
}

.navbar-toggler {
  padding: 1px 5px;
  font-size: 18px;
  line-height: 0.3;
  background: #fff;
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  text-transform: uppercase;
  color: #fff;
}

img {
  object-fit: cover;
}

.modal-header {
  border-top-left-radius: 1.25rem;
  border-top-right-radius: calc(1.25rem - 1px);
  background-color: #212529;
  color: white;
}

.modal-body {
  background-color: #212529;
  color: white;
}

.modal-footer {
  background-color: #212529;
  color: white;
}

.modal-content {
  border-radius: 1.25rem;
}

.titletext {
  font-size: 60px;
}

.input-group-append {
  border-radius: 50px;
}
.column {
  float: left;
  width: 50%;
  padding: 10px;
}


@media only screen and (max-width: 767px) {
  .navbar-nav {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
  }

  .carousel-caption {
    bottom: 165px;
  }

  .carousel-caption h5 {
    font-size: 17px;
  }

  .carousel-caption a {
    padding: 10px 15px;
    font-size: 15px;
  }
}