@charset "UTF-8";


:root {
  --color: #050505;
  --hColor: #000;
  --hxColor: #FFF;
  --bgColor: #EFEFF4;
  --itemBgColor: #f7f7f7;
  --subItemBgColor: #f5eff5;
  --buttonColor: #313131;
  --app-content-secondary-color: #ffffff;
  --base-color: #E33A83;
  --sub-color: #57597F;
  --base-color-h: 236, 50, 50;
  --premium-color: #a37a00;
  --butcedostu-color: #28a745;
  --bu-gray: #D8D8E1;
  --bu-sub-gray: #F0F0F3;
}

.dark-mode {
  --color: #A5A5A5;
  --hColor: #FFF;
  --hxColor: #000;
  --bgColor: #0F0F0F;
  --itemBgColor: #000000;
  --subItemBgColor: #241c1c;
  --app-content-secondary-color: #000000;
  --premium-color: #ffc107;
}

.premium-container{
  border: 5px solid var(--premium-color) !important;
  background-color: var(--bgColor) !important;
}
.premium-container button{
  color: var(--premium-color) !important;
  border-color: var(--premium-color) !important;
}

.premium-container .place_card_title{
  color: var(--premium-color) !important;
}

.butcedostu-container{
  border: 5px solid var(--butcedostu-color) !important;
  background-color: var(--bgColor) !important;
}

.butcedostu-button{
  color: var(--butcedostu-color) !important;
  border-color: var(--butcedostu-color) !important;
}

.butcedostu-container .place_card_title{
  color: var(--butcedostu-color) !important;
}
/*

Beautiful shopping
• UI (User Interface) made using CSS Grid
• UX (User Experience) made using GreenSock's FLIP

Details:
--------------------------------
Click on any of the *Plant* to move it to the basket and if you didn't like the plant or you choose to select another plant click the plant that is inside the basket and it will be moved back to its original place — All will happen with beautiful and eye-catching animation. I set the basket UI limit to be able to hold four to five (depends on image size) plants, it can take more ...but then the basket UI would look broken, the plants are going to move outside the basket — Just clarifying, *It is on purpose*. I've used the word *click* but that doesn't mean you can't touch/tap the plant, if you're using touch screen devices, it gonna work fine, and yup, it's responsive!

*/
@font-face {
    font-family:"Montserrat-Bold";
    src: url("fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  }
@font-face {
    font-family:"Montserrat-Medium";
    src: url("fonts/Montserrat/Montserrat-Medium.ttf") format("truetype");
}

@font-face {
  font-family:"Gilroy-Light";
  src: url("font/Gilroy-Light.ttf") format("truetype");
}
@font-face {
  font-family:"Gilroy-ExtraBold";
  src: url("font/Gilroy-ExtraBold.ttf") format("truetype");
}

html {
  font-size: 75%;
}

@media screen and (max-width: 520px) {
  html {
    max-width: 519px;
  }
}

.base_colored{
  color:var(--base-color);
}

body {
  --hovered-color: #4d4d4d;
  --hovered-background: #ebebeb;
  padding: 0 3rem;
  margin: 0;
  color: var(--color);
  background-color: var(--bgColor);
  font-family: 'Montserrat-Bold', sans-serif !important;
  line-height: 1.6;
  word-break: break-word !important;
  overflow-x: hidden;
}
.btnGomekan{
    font-family: 'Montserrat-Medium', sans-serif !important;
    border-radius: 20px;
    border:none;
    font-weight: bold;
    font-size:1.2em;
    padding:0.8em 1em 0.8em 1em!important;
    transition:0.5s;
    border:1px solid #ebebeb;
    margin-bottom:0.5em;
    margin-top:0.5em;
    margin-left: 0px !important;
    transition:0.2s;
}
.btn{
    margin-top:0.5em;
    font-family: 'Montserrat-Medium', sans-serif !important;
    border-radius: 10px;
}

@media (max-width: 495px) {
  body {
    padding: 0 1rem;
  }
}

a, a:link {
  color: black;
  text-decoration: none;
  transition: 0.1s linear;
}
a:hover {
  color: var(--hovered-color);
}
a:focus {
  outline: none;
}

.btn-outline-light:h.over {
  color:var(--base-color);
}

input:focus,
button:focus {
  outline: none;
}

.page {
  overflow-x: hidden;
  grid-template-areas: "header header" "sidebar main" "footer footer";
  grid-template-rows: 8rem 1fr;
  grid-template-columns: 24rem 1fr;
}
@media (max-width: 495px) {
  .page {
    grid-template-areas: "header header" "sidebar sidebar" "main main" "footer footer";
  }
}
@media (max-width: 375px) {
  .page {
    grid-template-rows: 6rem 1fr;
  }
}

.search_bar form{
  position: absolute;
  margin: 0 5px;
  transition: all 1s;
  width: 50px;
  height: 50px;
  background: white;
  box-sizing: border-box;
  border-radius: 25px;
  border: 4px solid white;
  padding: 5px;
}

.search_bar input{
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;;
  height: 42.5px;
  line-height: 30px;
  outline: 0;
  border: 0;
  display: none;
  font-size: 1em;
  border-radius: 20px;
  padding: 0 20px;
}

.search_bar .fa{
  box-sizing: border-box;
  padding: 15px;
  width: 42.5px;
  height: 42.5px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  color: #07051a;
  text-align: center;
  font-size: 1.2em;
  transition: all 1s;
}

.search_bar .activeForm{
  width: 230px;
  cursor: pointer;
}

.search_bar .activeForm input{
  display: block;
}

.search_bar .activeForm .fa{
  background: #07051a;
  color: white;
}

.subbar{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  min-height: 75px;
  position: fixed;
  z-index: 11;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: white;
  padding: 5px 0px 0 0px;
}

.subbar a:link{
  color: black !important;
  text-decoration: none;
  transition: 0.1s linear;
}

.navItem i{
  font-size: 20px;
}

.navItem h6{
  font-size: 8px;
}

vr{
  height: 40px;
  border-right: 1px solid gray;
}

.header {
  grid-area: header;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  border-radius: 0 0 20px 20px;
  min-height: 75px;
}
@media (max-width: 495px) {
  .header {
    gap: 0.9rem;
  }
  #logo {
    width: 100px;
    object-fit: cover;
    object-position: left;
  }
}
.header__logo-container {
  width: 24rem;
}
@media (max-width: 1024px) {
  .header__logo-container {
    width: auto;
  }
}
@media (max-width: 768px) {
  .header__logo-container {
    flex: 1;
  }
}
.header__logo {
  display: inline-block;
  background: #000;
  width: 3rem;
  height: 3rem;
  border-radius: 3rem;
  font-family: 'Montserrat', sans-serif !important;
}
.header__links {
  font-weight: 600;
  flex-grow: 1;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .header__links {
    display: none;
  }
}
.header__link {
  padding: 1.8rem 1rem;
  box-sizing: border-box;
  font-size: 1.7rem;
  border-bottom: 2px solid transparent;
}
.header__link:hover {
  border-bottom-color: var(--hovered-color);
}
.header__search-container {
  position: relative;
}
@media (max-width: 375px) {
  .header__search-container {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 3.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--hovered-background);
  }
}
.header__search-container > svg {
  position: absolute;
  left: 1.2rem;
  top: 48%;
  transform: translateY(-50%);
}
@media (max-width: 375px) {
  .header__search-container > svg {
    position: initial;
    transform: translate(-1px, -1px);
  }
}
.header__search-container:hover .header__search, .header__search-container:focus-within .header__search {
  background: var(--hovered-background);
}
.header__search {
  width: 18.4rem;
  height: 4.4rem;
  border-radius: 100rem;
  background: #f5f5f5;
  border: 0;
  box-sizing: border-box;
  padding: 0.4rem 1.4rem 0.4rem 4.6rem;
  font-size: 1.7rem;
  transition: 0.1s linear;
}
.header__search::-webkit-input-placeholder {
  color: #b3b3b3;
}
@media (max-width: 375px) {
  .header__search {
    display: none;
  }
}
.header__user {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header__user > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 3.8rem;
}
.header__user > a:hover {
  background-color: var(--hovered-background);
}
.header__profile:link {
  background: url("https://images.unsplash.com/photo-1480455624313-e29b44bbfde1?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=400&h=400&q=100");
  background-size: cover;
}

.sidebar {
  grid-area: sidebar;
  -webkit-animation: slideY .6s both;
  animation: slideY .6s both;
}
@media (max-width: 495px) {
  .sidebar {
    display: none;
  }
}
.sidebar__title {
  font-size: 2.8rem;
  font-weight: normal;
  margin-top: 3.4rem;
}
.sidebar__category:not(:first-of-type) .sidebar__heading {
  border-top: 1px solid var(--color);
  margin: 4rem 0 1.6rem;
}
.sidebar__heading {
  font-size: 1.6rem;
  margin: 2rem 0 1.6rem;
  padding-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.1s linear;
}
.sidebar__heading:hover {
  color: var(--hovered-color);
}
.sidebar__heading > svg {
  height: 2.2rem;
}
.sidebar__options {
  padding: 0 1rem;
  box-sizing: border-box;
}

.check {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  cursor: pointer;
  transition: 0.1s linear;
}
.check:hover {
  color: var(--hovered-color);
}
.check__input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.check__input:checked + .check__checkbox {
  background: #000;
}
.check__checkbox {
  width: 2rem;
  height: 2rem;
  border: 1px solid #00000066;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.check__checkbox > svg {
  height: 2rem;
}
.check__text {
  font-size: 1.6rem;
  margin: 0;
  margin-left: 0.8rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.color {
  display: inline-block;
  width: 3.4rem;
  height: 3.4rem;
  margin: 0.5rem;
  border-radius: 3.4rem;
  background: hsl(var(--hue), 60%, 60%);
  cursor: pointer;
}

.main {
  grid-area: main;
  padding: 1rem;
  padding-right: 5px !important;
  padding-left: 5px !important;
  padding-top: 140px;
  box-sizing: border-box;

}
@media (max-width: 495px) {
  .main {
    padding-left: 0;
  }
}
.main__title {
  font-size: 3rem;
  margin: 1rem 0.4rem 0.8rem;
  text-align: left;
  display: none;
}
@media (max-width: 495px) {
  .main__title {
    display: block;
  }
  .blankdiv{
    display: none;
  }
}

.filters {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 495px) {
  .filters {
    justify-content: flex-start;
  }
}
.filters__btn {
    color: var(--base-color);
  background: transparent;
  font-size: 1.7rem;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.1s linear;
}
.filters__btn:hover, .filters__btn:hover > svg {
  stroke: var(--hovered-color);
  color: var(--hovered-color);
}
.filters__btn > svg {
  height: 1.9rem;
  margin-left: 0.4rem;
  transition: 0.1s linear;
}
.filters__btn--sort {
  margin-left: 1.6rem;
}

.show {
  display: none;
}
@media (max-width: 495px) {
  .show {
    display: initial;
  }
}

@media (max-width: 495px) {
  .hide {
    display: none;
  }
}

/*
.items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .items {
    justify-content: center;
  }
}

.item {
  flex: 1 0 30rem;
  height: 38rem;
}
@media (max-width: 1024px) {
  .item {
    flex-grow: 0;
  }
}
.item__position {
  width: 100%;
  height: 30rem;
  position: relative;
  background: var(--itemBgColor);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.item__image {
  height: 80%;
  cursor: pointer;
}
.item__image--hue {
  filter: hue-rotate(130deg);
}
.item__detail {
  font-size: 1.6rem;
  padding-top: 0.8rem;
  text-align: left;
}
.item__detail p {
  margin: 0;
}
*/

.pagination__page {
  text-align: center;
  font-size: 1.6rem;
}
.pagination__links {
  margin: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
}
.pagination__link {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
.pagination__link > svg {
  --s: .6rem;
  height: 1em;
  transition: 0.1s linear;
}
.pagination__link:hover > svg {
  stroke: var(--hovered-color);
}

.basket {
  position: sticky;
  bottom: 0;
  width: 30rem;
  height: 6rem;
  border-radius: 0.4rem 0.4rem 0 0;
  background: #000;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.4rem 2rem;
  box-sizing: border-box;
}
@media (max-width: 375px) {
  .basket {
    width: 100%;
  }
}
.basket__list {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.basket__item {
  height: 4rem;
}
.basket__item:not(:first-child) {
  margin-left: 1.4rem;
}
.basket__btn {
  width: 4rem;
  height: 4rem;
  border-radius: 4rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.1s linear;
}
.basket__btn:hover {
  background: #ffffff33;
}

.footer {
  grid-area: footer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 0 2rem;
}
.footer a:not(.footer__link) {
  /* border-bottom: 1px solid #00000066; */
  padding-bottom: 0.4rem;
  transition: 0.1s linear;
}
.footer a:not(.footer__link):hover {
  border-bottom-color: #0000004d;
}
.footer__made-by {
  font-size: 1.6rem;
  margin: 0.8rem 0 1.4rem;
}
.footer__made-by > svg {
  fill: #5ab7e3;
  height: 1.4em;
  transform: translateY(4px);
}
.footer__made-by > a {
  font-weight: bold;
}
.footer__social {
  display: flex;
  gap: 0.6rem;
}
.footer__link {
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
}
.footer__link:hover {
  background: #e6e6e6;
}
.footer__link > svg {
  height: 2rem;
}
.footer__credits {
  margin-top: 3rem;
  text-align: center;
}


.mode-switch {
  background-color: transparent;
  border: none;
  padding: 0;
  color: var(--hColor);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 8px;
  cursor: pointer;
}
.mode-switch .moon {
  fill: var(--bgColor);
}

.mode-switch.active .moon {
  fill: none;
}

.header__logo-container{
  cursor:pointer;
}
.header__logo-container img{
  margin:10px;
}
.header__logo__h1{
  margin-left: 65px;
  font-size: 20px;
  font-weight: 800;
  color: white;
}
.invisible{
  opacity: 0;
}

@media (max-width: 375px) {
  .header__logo-container h1{
    display:none;
  }
}



.products-area-wrapper {
  width: 100%;
  max-height: 100%;
  overflow: auto;
  padding: 0 4px;
  overflow: hidden;
}

.tableView .products-header {
  display: flex;
  align-items: center;
  border-radius: 4px;
  background-color: var(--app-content-secondary-color);
  position: sticky;
  top: 0;
}
.tableView .products-row {
  display: flex;
  align-items: center;
  border-radius: 4px;
}
.tableView .products-row:hover {
  box-shadow: var(--filter-shadow);
  background-color: var(--app-content-secondary-color);
}
.tableView .products-row .cell-more-button {
  display: none;
}
.tableView .product-cell {
  flex: 1;
  padding: 8px 16px;
  color: var(--app-content-main-color);
  font-size: 14px;
  display: flex;
  align-items: center;
}
.tableView .product-cell img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  margin-right: 6px;
}
@media screen and (max-width: 780px) {
  .tableView .product-cell {
    font-size: 12px;
  }
  .tableView .product-cell.image span {
    display: none;
  }
  .tableView .product-cell.image {
    flex: 0.2;
  }
}
@media screen and (max-width: 520px) {
  .tableView .product-cell.category, .tableView .product-cell.sales {
    display: none;
  }
  .tableView .product-cell.status-cell {
    flex: 0.4;
  }
  .tableView .product-cell.stock, .tableView .product-cell.price {
    flex: 0.2;
  }
}
@media screen and (max-width: 480px) {
  .tableView .product-cell.stock {
    display: none;
  }
  .tableView .product-cell.price {
    flex: 0.4;
  }
}
.tableView .sort-button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: var(--app-content-main-color);
  margin-left: 4px;
  display: flex;
  align-items: center;
}
.tableView .sort-button:hover {
  color: var(--action-color);
}
.tableView .sort-button svg {
  width: 12px;
}
.tableView .cell-label {
  display: none;
}

.status {
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 12px;
}
.status:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 4px;
}
.status_active {
  color: #2ba972;
}
.status_disabled {
  color: #a92b2b;
}

.gridView {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}
@media screen and (max-width: 520px) {
  .gridView {
    margin: 0;
  }
}
.gridView .products-header {
  display: none;
}
.gridView .products-row {
  margin: 8px;
  width: calc(25% - 16px);
  background-color: var(--app-content-secondary-color);
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.2s;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
.gridView .products-row:nth-child(4n+1) {
  -webkit-animation: slide .4s both;
  animation: slide .4s both;
}
.gridView .products-row:nth-child(4n+2) {
  -webkit-animation: slide .6s both;
  animation: slide .6s both;
}
.gridView .products-row:nth-child(4n+3) {
  -webkit-animation: slide .8s both;
  animation: slide .8s both;
}
.gridView .products-row:nth-child(4n+0) {
  -webkit-animation: slide 1s both;
  animation: slide 1s both;
}
.gridView .products-row:hover {
  transform: scale(1.02);
  box-shadow: var(--filter-shadow);
}
.gridView .products-row:hover .cell-more-button {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .gridView .products-row {
    width: calc(33.3% - 16px);
  }
}
@media screen and (max-width: 820px) {
  .gridView .products-row {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 520px) {
  .gridView .products-row {
    width: 100%;
    margin: 8px 0;
  }
  .gridView .products-row:hover {
    transform: none;
  }
}
.gridView .products-row .cell-more-button {
  border: none;
  padding: 0;
  border-radius: 4px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: rgba(16, 24, 39, 0.7);
  color: #fff;
  cursor: pointer;
  display: none;
}
.gridView .product-cell {
  color: var(--app-content-main-color);
  font-size: 14px;
  margin-bottom: 8px;
}
.gridView .product-cell:not(.image) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gridView .product-cell.image span {
  font-size: 18px;
  line-height: 24px;
}
.gridView .product-cell img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 24px 0 0;
  margin-bottom: 16px;
}
.gridView .cell-label {
  opacity: 0.6;
}

.page-item.active .page-link {
  color: #fff;
  background-color: #DF4491;
  border-color: #DF4491;
}

.page-link {
  color: #DF4491;
  background-color: var(--bgColor);
  border: 1px solid var(--itemBgColor);
}

@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(300px);
    transform: translateX(300px);
  }
}

@-webkit-keyframes slideY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
}

@keyframes slideY {
  0% {
    opacity: 0;
    -webkit-transform: translateY(200px);
    transform: translateY(200px);
  }
}

.cards-list {
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.card {
  margin: 8px auto;
  width: 100%;
  max-width: 330px;
  height: 200px;
  border-radius: 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  cursor: pointer;
  transition: 0.4s;
  background-color: transparent;
  transform: scale(0.95);
}

.golden-card {
  transform: scale(1);
  width: 100%;
  border-radius: 50px;
  padding-top: -5px !important;
  border: 6px solid gold;
  border-bottom: 10px solid gold;
}

.card .card_image {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  background-size: cover !important;
}

.card .card_image img {
  width: inherit;
  height: inherit;
  border-radius: 40px;
  object-fit: cover;
}

.card .card_title {
  text-align: center;
  border-radius: 0px 0px 40px 40px;
  font-weight: bold;
  font-size: 24px;
  margin-top: -80px;
  height: 40px;
  z-index: 2;
}
.card_star{
  font-size:12px;
  font-weight:inherit;
}

.card .card_context {
  text-align: center;
  border-radius: 0px 0px 40px 40px;
  font-size: 12px;
  margin-top: 0px;
  height: 40px;
  z-index: 2;
}

.card:hover {
  transform: scale(0.97, 0.97);
  box-shadow: 5px 5px 30px 15px rgba(0,0,0,0.25), 
    -5px -5px 30px 15px rgba(0,0,0,0.22);
}

.title-white {
  color: white;
}

.title-black {
  color: black;
}

@media all and (max-width: 500px) {
  .card-list {
    /* On small screens, we are no longer using row direction but column */
    flex-direction: column;
  }
}


/*
.card {
  margin: 30px auto;
  width: 300px;
  height: 300px;
  border-radius: 40px;
  background-image: url('https://i.redd.it/b3esnz5ra34y.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-repeat: no-repeat;
box-shadow: 5px 5px 30px 7px rgba(0,0,0,0.25), -5px -5px 30px 7px rgba(0,0,0,0.22);
  transition: 0.4s;
}
*/

.card:nth-child(4n+1) {
  -webkit-animation: slide .4s both;
  animation: slide .4s both;
}
.card:nth-child(4n+2) {
  -webkit-animation: slide .6s both;
  animation: slide .6s both;
}
.card:nth-child(4n+3) {
  -webkit-animation: slide .8s both;
  animation: slide .8s both;
}
.card:nth-child(4n+0) {
  -webkit-animation: slide 1s both;
  animation: slide 1s both;
}
.inshadow{
  position: absolute;
  width: 100%;
  height: 100px;
  /* box-shadow: inset 0px -40px 80px 0px #000000; */
  background: url('img/gradient.png');
  border-radius: 40px;
  bottom: -5px;
  left: 0;
}

.place_card{
  margin-top: 20px;
  padding: 20px 16px;
  background-color: var(--itemBgColor);
  border-radius: 14px;
  min-width: 350px;
  max-width: 1086px;
}

.place_info{
  max-width: 260px;
}

.place_info h1{
  font-weight: 600;
}

.place_card_title{
  font-weight: 600;
    margin-top: 16px;
    margin-bottom: 14px;
    font-size: 18px;
}

.tag_cards span{
  color:#DF4492;
  margin-right: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  background-color: var(--subItemBgColor);
  cursor: pointer;
  white-space: nowrap ;
}

.user_card{
  border-radius: 8px;
  background-color: var(--subItemBgColor);
  margin-bottom:4px;
}

.user_card2{
  border-radius: 8px;
  background-color: #F8F6FD;
  margin-bottom:12px;
  color: var(--sub-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.commenter{
  border-radius: 8px;
  background-color:rgba(var(--base-color-h), 0.2);
}

.user_name{
  color:#DF4492;
  font-weight: 600;
}
.pp_image{
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.place_image{
  border-radius: 10px;
}

.star_selector{
  border: #DF4492;
}

.select_options{
  margin:10px;
}
.select_options select{
  width:100%;
}
.custom-control-lg .custom-control-label::before,
.custom-control-lg .custom-control-label::after {
    top: 0.1rem !important;
    left: -2rem !important;
    width: 1.25rem !important;
    height: 1.25rem !important;
}

.custom-control-lg .custom-control-label {
    margin-left: 0.5rem !important;
    font-size: 1rem !important;
}

.checked{
  color:orange;
}
.product-buttons{
  display: grid;
  grid-template-columns: 4fr 1fr;
}
.product-buttons button{
  margin:2px;
}


.coupon {
  width: 300px;
  height: 150px;
  margin: auto;
  -webkit-mask-box-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60.031' height='60.031' viewBox='0 0 60.031 60.031'%3E%3Cpath data-name='椭圆 1' d='M55.186 30.158a4.965 4.965 0 0 0 4.841 4.959V40A20.063 20.063 0 0 0 40 60.027H20.129A20.065 20.065 0 0 0 .065 40H0v-4.888c.054 0 .1.016.158.016a4.973 4.973 0 1 0 0-9.945c-.054 0-.1.014-.158.015v-5.074h.065A20.066 20.066 0 0 0 20.131.058v-.065H40v.065a20.065 20.065 0 0 0 20.027 20.064v5.07a4.965 4.965 0 0 0-4.841 4.966z' fill-rule='evenodd'/%3E%3C/svg%3E") 20;
  -webkit-mask-box-image-repeat: round;
  /*
  background: linear-gradient(45deg, orange, red);
  */
  background-color:var(--base-color);
  background-size: cover;
  padding: 5px;
  margin-bottom:10px;
}

.couponx{
    background-size: 180px 80px;
    background-repeat: no-repeat;
    background-position: 10px 10px;
    cursor:pointer;
}
.sub_coupon {
  width: 200px;
  height: 100px;
  padding:0;
  padding-top:10px;
  background-image: url(img/coupon/coupon1.png);
  background-repeat: no-repeat;
  background-size: 200px 100px;
  background-position: 0px 0px;
}
.couponx2{
    width: 120px;
}
.sub_coupon2 {
  width: 120px;
  background-image: url(img/coupon/coupon3.png);
  background-size: 120px 100px;
}
.coupon_title{
  text-align: center;
  color:white;
  font-weight: bold !important;
  padding-top:5px;
  margin-top: 0px;
  font-size: 35px;
}
.coupon_subtitle{
    text-align: center;
    color:white;
    font-weight: bold !important;
    margin-top: 0px;
    font-size: 18px;
    margin-top: -15px !important;
}

.cardx {
  margin: 8px auto;
  width: 100%;
  border-radius: 14px;
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--base-color);
  color: white;
}

.loginbuttons{
  color:var(--hcolor);
  background-color: white;
  max-width: 435px;
}
.black_card{
    background-color: black;
    border-radius: 8px;
    padding: 8px;
    margin: 5px;
    font-size: x-large;
    font-weight: bold;
    width:auto;
    color:white;
}
.sub_black{
    font-weight: bold;
    font-size: large;
}
.white_card{
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    margin: 5px;
    font-size: x-large;
    font-weight: bold;
    width:auto;
    color:#DF4492;
}
.cardx_title{
    font-size: x-large;
    font-weight: bold;
}
.login-body{
    height:100%;
    background-image: url("img/gomekan_wall5.jpg");
}
.stars{
    cursor:pointer;
}
.more-toggle{
    padding:15px;
    font-size: 20px;
    cursor: pointer;
}
.discount{
  font-weight: bold !important;
  margin-left: 40px;
  font-size: 24px;
  text-align: center;
  color: white;
  width: 35% !important;
}
input:not(input[type=checkbox], input[type=radio]), textarea, select{
    position: relative;
    width:100%;
    font-size:1em;
    margin-top:0.6em;
    margin-bottom:0.6em;
    border-radius: 15px !important;
    border:none;
    outline:none;
    font-weight: bold !important;
    transition:0.4s;
}
figure a img{
    object-fit: cover;
}
.coupon_container{
    max-width: 530px;
    border-radius: 20px;
    border: 5px solid var(--base-color);
    background-color: var(--subItemBgColor);
}
.btn-outline-danger{
    border: 2px solid var(--base-color);
}
.btn-outline-danger {
    color: #DF4492;
}
.btn-outline-danger:hover {
    background-color: #DF4492;
}
.btn-danger {
    background-color: #DF4492;
    color: white;
}
.coupon_card{
    width: 320px;
}
.text-red{
    color: var(--base-color);
}
.embed_card{
  overflow:auto;
}

/* CUSTOM MODAL */

#custom-modal-container{
	display: none;
	position: fixed;
  z-index: 99;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
}

#custom-modal{
	background: #fff;
	position: fixed;
	top: 50px;
	padding: 2em;
	border-radius: 10px;
  margin: 10px;
	max-width: 100%;
}

#custom-modal span{
	text-align: center;
	font-size: 1rem;
	display: block;
	margin-bottom: 1em;
}

#custom-modal > div{
	display: flex;
	justify-content: center;
}

#custom-modal button{
	all: unset;
	padding: .5em 1em;
	text-transform: uppercase;
	color: #fff;
	background-color: #BF2D0B;
	border-radius: 5px;
	cursor: pointer;
}

#custom-modal button#custom-modal-button-positive{
	background-color: #048E13;
	margin-left: 10px;
}

#custom-modal button:hover{
	filter: brightness(120%);
}

/* END CUSTOM MODAL */
.shadowDiv{
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.swiper-pagination{
  transform: translateY(10px) !important;
}