/*!*****************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/scss/pages/_recommend.scss ***!
  \*****************************************************************************************************************************************************/
.pm__modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  background-color: rgba(234, 180, 72, 0.47);
  z-index: 20;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s ease-in;
}
.pm__modal.active {
  transition: all 0.5s ease-in;
  transform: translateY(0);
  opacity: 1;
}
.pm__modal__content {
  position: relative;
  max-width: 470px;
  min-height: 400px;
  width: 90%;
  border-radius: 30px;
  padding: 65px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  background-color: #000000;
}
.pm__modal__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  top: 40px;
  right: 40px;
  cursor: pointer;
}
.pm__modal__close::before, .pm__modal__close::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 32px;
  border-radius: 3px;
  background-color: #EAB448;
}
.pm__modal__close::before {
  transform: rotate(45deg);
}
.pm__modal__close::after {
  transform: rotate(-45deg);
}
.pm__modal__icon {
  display: flex;
  animation: rorateNo 4s linear infinite;
}
@keyframes rorateNo {
  0% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(-15deg);
  }
}
.pm__modal__text {
  margin-top: 25px;
  text-align: center;
  line-height: 1.3em;
}
.pm__modal__text .yellow {
  font-family: "MontserratBold";
}

.pm__recommend {
  max-width: 1245px;
  margin: 55px auto 0;
  min-height: 80vh;
  position: relative;
  width: 80%;
}
@media only screen and (max-width: 991px) {
  .pm__recommend {
    margin-top: 15px;
    min-height: 84vh;
  }
}
.pm__recommend__text {
  max-width: 1020px;
  margin: 15px 0;
}
.pm__recommend__flex {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__flex {
    margin-bottom: 25px;
  }
}
.pm__recommend__flex .pm__button {
  background-color: #888888;
  color: #FFF;
}
.pm__recommend__steps {
  margin-top: 60px;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__steps {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 480px) {
  .pm__recommend__steps {
    margin-bottom: 30px;
  }
}
.pm__recommend__step-buttons {
  display: flex;
  gap: 60px;
  margin-top: 25px;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__step-buttons {
    margin-top: 15px;
    gap: 15px;
    align-items: flex-start;
  }
}
.pm__recommend__step-buttons .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__step-buttons .box {
    gap: 10px;
    text-align: center;
  }
}
.pm__recommend__step-buttons .box__button {
  position: relative;
  width: 215px;
  height: 130px;
  background-color: #EAB448;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 10px 10px 0 0 #DD9608;
  margin: 0 10px 10px 0;
  transition: all 0.1s ease-in;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__step-buttons .box__button {
    width: auto;
    min-width: 125px;
    padding: 10px 15px 5px;
    height: 75px;
    border-radius: 13px;
    box-shadow: 5px 5px 0 0 #DD9608;
    margin: 0 5px 5px 0;
  }
}
@media only screen and (max-width: 480px) {
  .pm__recommend__step-buttons .box__button {
    min-width: 100px;
  }
}
.pm__recommend__step-buttons .box__button:hover {
  transition: all 0.1s ease-in;
  box-shadow: 0 0;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__step-buttons .box__button__icon {
    height: 30px;
  }
}
.pm__recommend__step-buttons .box__button__text {
  font-size: 32px;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__step-buttons .box__button__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .pm__recommend__step-buttons .box__button__text {
    font-size: 20px;
  }
}
.pm__recommend__step-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  max-width: 600px;
  margin-top: 20px;
}
.pm__recommend__step-items .item {
  display: flex;
  width: fit-content;
  border-radius: 5px;
  padding: 10px 30px;
  background-color: #EAB448;
  cursor: pointer;
  color: #000000;
  font-family: "MontserratRegular";
  box-shadow: 5px 5px 0 0 #DD9608;
  margin: 0 5px 5px 0;
  transition: all 0.1s ease-in;
}
.pm__recommend__step-items .item:hover {
  transition: all 0.1s ease-in;
  box-shadow: 0 0;
}
.pm__recommend__step-items .newMoodInput {
  border-radius: 5px;
  padding: 10px;
  background-color: #EAB448;
  position: relative;
}
.pm__recommend__step-items .newMoodInput.error {
  border: 3px solid #BF0000;
}
.pm__recommend__step-items .newMoodInput__input {
  border: none;
  outline: none;
  background-color: #EAB448;
  color: #000000;
}
.pm__recommend__step-items .newMoodInput__input::placeholder {
  color: rgba(0, 0, 0, 0.7);
}
.pm__recommend__step-items .newMoodInput__add {
  height: 100%;
  border-radius: 4px;
  padding: 0 15px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #DD9608;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pm__recommend__step-items .newMoodInput__add::before, .pm__recommend__step-items .newMoodInput__add::after {
  content: "";
  display: block;
  width: 15px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pm__recommend__step-items .newMoodInput__add::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.pm__recommend__step-items .newMoodInput__add:hover {
  cursor: pointer;
}
.pm__recommend__pagination {
  margin-top: 40px;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  bottom: 50px;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__pagination {
    bottom: 10px;
  }
}
.pm__recommend__pagination .number {
  font-family: "MontserratExtraBold";
  font-size: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in;
  box-sizing: border-box;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__pagination .number {
    font-size: 20px;
    width: 30px;
    height: 30px;
  }
}
.pm__recommend__pagination .number.active {
  color: #EAB448;
  border: 6px solid #EAB448;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__pagination .number.active {
    border-width: 4px;
  }
}
.pm__recommend__movies {
  display: flex;
  justify-content: space-between;
  padding-bottom: 130px;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__movies {
    flex-direction: column;
    align-items: center;
    gap: 100px;
  }
}
.pm__recommend__movies-platform {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 270px;
  min-width: 270px;
  height: fit-content;
}
.pm__recommend__movies-platform:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 70%;
  bottom: 0;
  right: -35%;
  border-left: 2px dashed #EAB448;
}
@media only screen and (max-width: 1367px) {
  .pm__recommend__movies-platform:not(:last-child)::after {
    right: -20%;
  }
}
@media only screen and (max-width: 1199px) {
  .pm__recommend__movies-platform:not(:last-child)::after {
    right: -13%;
  }
}
@media only screen and (max-width: 991px) {
  .pm__recommend__movies-platform:not(:last-child)::after {
    height: 0;
    width: 100%;
    bottom: -50px;
    right: 0;
    border-left: none;
    border-bottom: 2px dashed #EAB448;
  }
}
.pm__recommend__movies-header {
  max-width: 220px;
  min-width: 220px;
  padding: 25px 10px;
  background-color: #ffffff;
  border-radius: 12px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 10px 0;
  box-shadow: 10px 10px 0 0 #CCCCCC;
  flex-direction: column;
}
.pm__recommend__movies-header p {
  color: #000000;
  font-size: 20px;
  text-align: center;
  font-family: "MontserratSemiBold";
  line-height: initial;
}
.pm__recommend__movies-header p:nth-of-type(1) {
  margin-top: 15px;
}
.pm__recommend__movies-header p.yellow {
  font-family: "MontserratBold";
  text-decoration: underline;
  margin: 10px 0;
  color: #EAB448;
}
.pm__recommend__movies-header .pm__button {
  margin: 25px 0 10px;
  font-family: "MontserratBold";
}
.pm__recommend__movies-body {
  width: 100%;
  margin: 40px 0;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__movies-body {
    margin: 30px 0 0;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 991px) {
  .pm__recommend__movies-body .swiper-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 991px) {
  .pm__recommend__movies-body .swiper-wrapper .swiper-slide {
    min-width: 220px;
    height: auto;
  }
}
.pm__recommend__movies-body .swiper-pagination {
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.pm__recommend__movies-body .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background-color: #888888;
  opacity: 1;
}
.pm__recommend__movies-body .swiper-pagination-bullet-active {
  background-color: #EAB448;
}
@media only screen and (min-width: 991px) {
  .pm__recommend__movies-body .swiper-pagination {
    display: none;
  }
}
.pm__recommend__movies-item {
  text-align: center;
}
.pm__recommend__movies-item:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .pm__recommend__movies-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.pm__recommend__movies-item .pm__title {
  margin-bottom: 10px;
  line-height: 1em;
}
.pm__recommend__loader {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}
.pm__recommend__loader .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}
.pm__recommend__loader .loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #FFF;
  animation: prixClipFix 2s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
