body {
  color: rgba(0, 0, 0, 0.7);
}

.wrap-container {
  max-width: 1170px;
  width: 90%;
  margin: 0 auto;
}

.modal_overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.modal_overlay .my_modal {
  border-radius: 8px;
  background-color: #616264;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.favourite, .my_btn {
  position: absolute;
  right: 20px;
}

.my_btn {
  top: 20px;
}

.none {
  display: none;
}

.block {
  display: block;
}

.my_card {
  position: relative;
}

.favourite {
  bottom: 20px;
  height: 40px;
  width: 40px;
}

.favourite .active svg {
  fill: red;
}

svg {
  width: 100%;
  height: 100%;
}

p {
  color: #fff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.7);
  border-radius: 0.45rem;
}

body {
  --background-color: #ffffff;
  --text-color: black;
  --header-color: #616264;
  --border: 2px solid #22222E;
  background-color: var(--background-color);
  color: var(--text-color);
  transition: 0.5s;
}

body.dark {
  --background-color: #22222E;
  --text-color: #E9E9E9;
  --header-color:#a9a9a9;
  --border: 2px solid #ffffff;
}

.card-header {
  background: var(--background-color);
}

.card-text {
  color: var(--text-color);
}

.card-title {
  max-height: 70px;
  min-height: 70px;
  overflow: hidden;
}

.card-body {
  background: var(--background-color);
}

.btn {
  background: #616264;
  color: var(--text-color);
}

h3 {
  --text-color: $color-content;
}

nav {
  background: var(--background-color);
}

.card-footer p {
  color: var(--text-color);
  background-color: transparent;
}

img {
  max-height: 450px;
  min-height: 450px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}

input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}

label {
  cursor: pointer;
  width: 100px;
  height: 50px;
  background: var(--header-color);
  display: block;
  border-radius: 50px;
  position: relative;
  margin: 10px;
}

label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}

input:checked + label {
  background: var(--header-color);
}

input:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

.page-item a {
  background: var(--header-color);
  color: var(--text-color);
}

.progress {
  background: var(--background-color);
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  padding: 0 5px;
  display: flex;
  height: 40px;
  width: 300px;
  transition: width 0.1s;
}

.progress-value {
  animation: load 3s normal forwards;
  box-shadow: 0 10px 40px -10px #fff;
  border-radius: 100px;
  background: var(--header-color);
  height: 30px;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  font-size: 14px;
  color: var(--text-color);
}

@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}

/*# sourceMappingURL=style.css.map */
