@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;

0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap);
@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

h1 {
  padding: 6rem 0 0 2.4rem;
}

a,
a:visited {
  color: #333;
}

.home-container {
  max-width: 1250px;
  margin: 0 auto;
  padding-left: 2.4rem;
}

@media screen and (max-width: 600px) {
  .home-container {
    padding-left: 0.2rem;
  }
}

.home-container h1 {
  padding-left: 0;
}

.home-container #search {
  margin: 1rem 1rem 2rem 0;
  height: 2.4rem;
  padding: 0 0.5rem;
  border-radius: 5px;
  transition: 0.4s ease;
  border: 2px solid rgba(51, 51, 51, 0.835);
}

.home-container #search:focus {
  outline: none;
  border: 2px solid rgb(46, 183, 235);
}

.home-container .card-cart-container {
  display: flex;
}

.home-container .card-cart-container .card-container {
  display: flex;
  flex-wrap: wrap;
}

.home-container .card-cart-container .card-container .card {
  margin: 0.4rem 1rem 0.4rem 0;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  transition: 0.2s ease;
  width: 202px;
  box-shadow: 0 0 15px rgba(10, 10, 10, 0.3);
}

@media screen and (max-width: 600px) {
  .home-container .card-cart-container .card-container .card {
    margin-right: 0.2rem;
  }
}

.home-container .card-cart-container .card-container .card:hover {
  transform: scale(1.04);
}

.home-container .card-cart-container .card-container .card:hover img {
  transform: scale(1.08);
}

.home-container .card-cart-container .card-container .card:hover .card-text {
  opacity: 1;
  bottom: 2.3rem;
}

.home-container .card-cart-container .card-container .card .img-container {
  overflow: hidden;
  border-color: inherit;
}

.home-container .card-cart-container .card-container .card .img-container img {
  height: 210px;
  transition: 0.4s ease;
}

.home-container .card-cart-container .card-container .card .card-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0.8rem;
  position: absolute;
  bottom: 1rem;
  opacity: 0;
  transition: 0.6s;
  width: 100%;
  height: 75px;
  background: linear-gradient(0deg, white 40%, transparent 100%);
}

.home-container .card-cart-container .card-container .card .card-text h3 {
  font-size: 1.2rem;
  padding-right: 4px;
}

.home-container .card-cart-container .card-container .card .card-text span {
  background: #2eb7eb;
  font-weight: bold;
  padding: 4px 6px;
  color: white;
  border-radius: 4px;
}

.home-container .card-cart-container .card-container .card .card-icons {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 40px;
}

.home-container .card-cart-container .card-container .card .card-icons i {
  padding: 3px 5px;
  transition: 0.2s;
  cursor: pointer;
}

.home-container .card-cart-container .card-container .card .card-icons i:hover {
  animation: scaler 0.8s infinite linear;
}

.home-container .card-cart-container .card-container .card .card-icons .fa-heart:hover {
  color: rgba(251, 38, 38, 0.5);
}

.home-container .card-cart-container .card-container .card .card-icons .fa-shopping-cart {
  font-size: 16px;
  color: #2eb7eb;
}

.home-container .card-cart-container .card-container .card .card-icons .fa-shopping-cart:hover {
  filter: brightness(125%);
}

.home-container .card-cart-container .card-container .card .card-icons .like-container input {
  display: none;
}

.home-container .card-cart-container .card-container .card .card-icons .like-container input:checked + label i {
  color: rgb(251, 38, 38);
  animation: heart 1.3s forwards ease;
}

@keyframes heart {
  0% {
    filter: hue-rotate(0deg);
    transform: scale(1);
  }

  50% {
    filter: hue-rotate(-270deg);
    transform: scale(1.3);
  }

  100% {
    filter: hue-rotate(0deg);
    transform: scale(1);
  }
}

.home-container .card-cart-container .card-container .no-result {
  margin: 0 4rem 0 0.4rem;
}

.home-container button {
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}

.home-container .shopping-cart {
  transition: 0.4s ease;
  background: #2eb7eb;
  color: white;
  padding: 1.4rem;
  border-radius: 4px;
  min-width: 290px;
  box-shadow: 0 1px 6px rgba(51, 51, 51, 0.25);
  margin: -8rem 2.4rem 0 0;
}

.home-container .shopping-cart h2 {
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.home-container .shopping-cart .item-group {
  max-height: 400px;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 6px;
}

.home-container .shopping-cart .item-group::-webkit-scrollbar {
  display: none;
}

.home-container .shopping-cart .item-group .item {
  margin-bottom: 2.4rem;
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: 60% 40%;
  grid-template-areas: "a b" "a c";
}

.home-container .shopping-cart .item-group .item:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: rgba(85, 85, 85, 0.2);
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
}

.home-container .shopping-cart .item-group .item .img-container {
  grid-area: a;
  display: flex;
  align-items: center;
}

.home-container .shopping-cart .item-group .item .img-container img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transform: scale(0);
  animation: img-scale 1s forwards;
}

@keyframes img-scale {
  to {
    transform: scale(1);
  }
}

.home-container .shopping-cart .item-group .item .item-description {
  grid-area: b;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 10px;
}

.home-container .shopping-cart .item-group .item .item-description h4 {
  margin: 0 0.9rem 0.9rem 0;
  background: rgba(51, 51, 51, 0.1);
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(51, 51, 51, 0.15);
  transform: scaleX(0);
  transform-origin: left;
  animation: img-scale 1s forwards;
}

@keyframes img-scale {
  to {
    transform: scaleX(1);
  }
}

.home-container .shopping-cart .item-group .item .item-description p {
  transform: translateY(3px);
}

.home-container .shopping-cart .item-group .item .item-quantity {
  grid-area: c;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
}

.home-container .shopping-cart .item-group .item .item-quantity h6 {
  color: #333;
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons {
  display: flex;
  justify-content: space-between;
  width: 30%;
  margin-left: 10px;
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons button {
  transform: scaleY(0);
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons button:nth-child(1) {
  animation: icon 0.5s ease forwards;
  animation-delay: 0.2s;
}

@keyframes icon {
  to {
    transform: scaleY(1);
  }
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons button:nth-child(2) {
  animation: icon 0.5s ease forwards;
  animation-delay: 0.4s;
}

@keyframes icon {
  to {
    transform: scaleY(1);
  }
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons button:nth-child(3) {
  animation: icon 0.5s ease forwards;
  animation-delay: 0.6s;
}

@keyframes icon {
  to {
    transform: scaleY(1);
  }
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons i {
  font-size: 0.55rem;
  padding: 5px;
  margin: 0 2px;
  background: white;
  border-radius: 50%;
  color: #2eb7eb;
  transition: 0.3s ease;
}

.home-container .shopping-cart .item-group .item .item-quantity .cart-icons i:hover {
  background: #222;
  color: #2eb7eb;
}

.home-container .shopping-cart .grand-total h6 {
  color: #333;
}

.home-container .shopping-cart .grand-total .total {
  display: flex;
  justify-content: space-between;
  margin: 1.4rem 0 0.4rem;
}

.home-container .shopping-cart .grand-total .total h2 {
  color: white;
  margin-bottom: 0;
}

.home-container .shopping-cart .order-button {
  margin: 1rem auto 0;
  width: 100%;
  text-align: center;
}

.home-container .shopping-cart .order-button button {
  background: white;
  padding: 0.8rem;
  border-radius: 4px;
  box-shadow: 0 1px 6px rgba(51, 51, 51, 0.2);
  transition: all 0.2s ease;
  letter-spacing: 1px;
}

.home-container .shopping-cart .order-button button:hover {
  background: black;
  color: #2eb7eb;
  font-weight: bold;
  letter-spacing: 6px;
  animation: scaler 1.5s infinite linear;
}

.home-container .shopping-cart .order-button button:active {
  transform: scale(0.92);
}

.home-container .cart-anim-enter-active,
.home-container .cart-anim-leave-active {
  transition: 1.3s cubic-bezier(0.23, 0.66, 0.08, 0.93);
  transform: translateX(0px);
}

.home-container .cart-anim-enter,
.home-container .cart-anim-leave-to {
  opacity: 0;
  transform: translateX(400px);
}

.home-container .item-anim-enter-active,
.home-container .item-anim-leave-active {
  opacity: 1;
  transition: 0.8s;
}

.home-container .item-anim-enter,
.home-container .item-anim-leave-to {
  opacity: 0;
  transform: translateY(100px);
  transition: 0.7s;
}

@keyframes scaler {
  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.category {
  width: 240px;
}

#cart-validation {
  margin-top: 45px;
}

.shop_header h1 {
  color: #00A7D4;
}

#cat_shop_seperator {
  width: 1px;
  background-color: #00A7D4;
}

.add_to_cart {
  background-color: #B8D433;
  color: white;
  /* width: 130px;
  height: 33px; */
}

.btn_fetch_page {
  background-color: #00A7D4;
  color: white;
}

.btn_fetch_page.disabled {
  background-color: #5188A5;
  color: white;
}

.btn_fetch_price {
  color: #00A7D4;
  background-color: white !important;
  height: 30px;
  width: 30px;
  border: none;
}

.card .card-title h2 {
  cursor: pointer;
}

.add_to_cart_float {
  border-radius: 50%;
  border: none;
  height: 80px;
  width: 80px;
  background-color: #00A7D4;
  color: white;
  font-size: 2.5em;
  position: fixed;
  bottom: 1%;
  right: 2%;
  z-index: 9999;
}

.add_to_cart_float:hover {
  filter: drop-shadow(0 0 0.2rem #424242);
  transform: scale(1.1);
}

.add_to_cart_float span {
  font-size: 22px;
  position: absolute;
  color: #00A7D4;
  top: 17px;
  left: 37px;
  font-weight: bold;
}

.img-container img {
  width: 50px;
}

.cart-icons button,
.btn_trash {
  border: none;
  border-radius: 50%;
  background-color: #00A7D4;
  color: white;
  padding: 5px 8px;
  font-size: 10px;
}

.cart-icons button:hover,
.btn_trash:hover {
  background-color: white;
  color: #00A7D4;
  filter: drop-shadow(0 0 0.2rem #00A7D4);
}

.btn_buy {
  background-color: #B8D433;
  color: white;
}

.btn_buy_outline {
  background-color: white;
  color: #B8D433;
  border-color: #B8D433;
}

.btn_blue_outline {
  background-color: white;
  border-color: #00A7D4;
  color: #00A7D4;
}

.text_blue {
  color: #00A7D4;
}

.cart_navbar {
  color: #B8D433;
  font-weight: 900 !important;
}

.btn_blue {
  background-color: #00A7D4;
  color: white;
}

.gifts_separator {
  width: 80%;
  background-color: #979999;
  height: 1px;
  margin: auto;
}

.shopping-cart {
  overflow-y: scroll;
  height: 65%;
}

.shopping-cart::-webkit-scrollbar {
  display: none;
}

#v-pills-home-tab.nav-link,
#v-pills-users-tab.nav-link,
#v-pills-agency-tab.nav-link,
#v-pills-commande-tab.nav-link,
#v-pills-profil-tab.nav-link {
  color: #b8d433 !important;
}

#v-pills-home-tab.nav-link.active,
#v-pills-users-tab.nav-link.active,
#v-pills-profil-tab.nav-link.active,
#v-pills-commande-tab.nav-link.active,
#v-pills-agency-tab.nav-link.active {
  background-color: #b8d433 !important;
  color: white !important;
}

.custom-checkbox {
  display: block;
  padding: 0;
  background-color: rgba(0, 166, 212, 0.3058823529);
  transition: all 275ms;
  border-radius: 5px;
  display: block;
  text-transform: uppercase;
  z-index: 1;
  padding: 8px 0;
  color: black;
}

.custom-checkbox:hover,
.custom-checkbox:focus,
.custom-checkbox:active,
.custom-checkbox.active,
.custom-checkbox:checked {
  background-color: #00A7D4;
  color: white;
}

.custom_radio {
  float: left;
  width: 115px;
  background-color: #EFEFEF;
  border-radius: 4px;
  overflow: auto;
  color: black;
}

.custom_radio span {
  text-align: center;
  font-size: 15px;
  padding: 6px 2px;
  display: block;
}

.custom_radio input {
  position: absolute;
  top: -20px;
}

.custom_radio input:checked + span {
  background-color: #00A7D4;
  color: white;
}

.custom_radio input:hover + span {
  background-color: #00A7D4;
  color: white;
}

.custom_time_btn {
  width: 21px;
  background-color: #EFEFEF;
  border-radius: 4px;
  border: none;
  text-align: center;
  display: block;
  font-size: 15px;
}

.custom_time_btn:hover {
  background-color: #00A7D4;
  color: white;
}

#basket_badge {
  position: absolute;
  font-size: 12px;
  background-color: #B8D433;
  color: white;
}

#basket_link {
  position: relative;
  font-size: 30px;
}

.page_link_shop {
  text-decoration: none;
}

.page_item_shop {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 0.375rem 0.75rem;
}

.page_item_shop.active {
  border-bottom: 3px solid #00A7D4;
}

.light-mode {
  --navbar-color: #2f2f2f;
  --navbar-bg-color: rgb(255, 255, 255);
}

.pts_navbar {
  color: #00A7D4;
  position: relative;
}

.pts_navbar_label {
  font-size: 10px;
  position: absolute;
}

.pts_nav_item {
  padding: 0 15px;
  font-weight: 950 !important;
}

.contact_form label {
  color: #00A7D4;
}

/* CAROUSEL */

.carousel {
  position: relative;
}

.btn_carousel {
  color: #2eb7eb;
}

/* Marie-Ocelline
page profile - agency - table  */

.profile-head {
  transform: translateY(5rem);
}

.cover {
  background-image: url(https://images.unsplash.com/photo-1530305408560-82d13781b33a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1352&q=80);
  background-size: cover;
  background-repeat: no-repeat;
}

body {
  overflow-x: hidden;
}

/* NAVBAR FRONT */

#front_menu .nav-link.active {
  color: #00A7D4;
  border-bottom: 3px solid #00A7D4;
  border-radius: 3px;
}

/* BOUTON PERSONNALISE COULEUR COLDKIT */

.btn-coldkit-outline-green {
  border-color: #ACE600;
  color: #ACE600;
}

.btn-coldkit-outline-blue {
  border-color: #32BEDA;
  color: #32BEDA;
}

/* ENTETE TABLEAU */

.thead-coldkit {
  background-color: #00A7D4;
  color: white;
}

/* Marie-Ocelline accueil  */

.header_accueil {
  width: 100%;
  height: 10%;
}

.img_logo {
  align-items: center;
  top: 10px;
}

.div_accueil {
  top: 50%;
}

.img_banniere {
  max-width: 100%;
  height: auto;
  align-items: center;
}

.img_article {
  max-width: 100%;
  height: auto;
  align-items: left;
}

.text_article {
  max-width: 50%;
  align-items: right;
}

/* Marie-Ocelline
page noaccess - redirection  */

header {
  background-color: #E2E6E7;
  width: 100%;
}

nav {
  height: 60px;
}

.nav_home {
  max-width: 1250px;
}

.navbar_logo {
  margin-right: 0;
  padding: 0;
}

.logo {
  width: 40px;
  height: auto;
  padding: 2px 2px;
  margin: 2px 4px;
  margin-left: 54px;
}

.container_header {
  padding: 0;
  width: 100%;
}

.img_coldkit {
  max-width: 100%;
  height: 624px;
  padding-left: 2px;
  right: 0;
}

.logout {
  align-items: flex-end;
  right: 0;
}

.img_banniere {
  max-width: 100%;
  height: auto;
  align-items: center;
}

.img_article {
  max-width: 70%;
  padding: 5px 5px;
  margin: 2px 2px;
  height: auto;
  left: 40%;
}

.text_article {
  max-width: 100%;
  padding-left: 4px;
  margin-left: 5px;
  text-align: justify;
  line-height: 1.5;
  text-indent: 4%;
  margin-top: 5%;
}

@media screen and (max-width: 1400px) {
  .img_coldkit {
    max-width: 100%;
    height: 624px;
    padding-left: 2px;
    right: 0;
  }

  .img_banniere {
    max-width: 100%;
    height: auto;
    align-items: center;
  }

  .img_article {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    left: 0;
  }

  .text_article {
    max-width: 100%;
    font-size: 13px;
    padding-left: 4px;
    margin-left: 5px;
    text-align: justify;
    line-height: 1.5;
    text-indent: 4%;
    margin-top: 0%;
    padding-left: 2%;
  }

  .logo {
    margin-left: 54px;
  }
}

@media screen and (max-width: 992px) {
  .img_banniere {
    max-width: 100%;
    height: auto;
    align-items: center;
  }

  .img_article {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    left: 0;
  }

  .text_article {
    max-width: 100%;
    font-size: 0.7rem;
    padding-left: 4px;
    margin-left: 5px;
    text-align: justify;
    line-height: 1.5;
    text-indent: 4%;
    margin-top: 0%;
    padding-left: 2%;
  }

  .text_article p h5 {
    font-size: 0.6rem;
  }

  .text_article p h3 {
    font-size: 1rem;
  }

  .mention_puce {
    margin-right: 6px;
    padding: 3px 3px 3px 3px;
    margin-bottom: 25px;
  }

  .logo {
    margin-left: 54px;
  }

  .circle {
    margin-right: 40px;
  }

  .custom-checkbox {
    padding: 20px 0;
  }
}

@media screen and (max-width: 576px) {
  h5 {
    font-size: 1rem;
  }

  h6 {
    font-size: 0.9rem;
  }

  .titre_accueil {
    text-align: center;
  }

  .img_banniere {
    max-width: 100%;
    height: auto;
    align-items: center;
  }

  .img_article {
    max-width: 100%;
    height: auto;
  }

  .text_article {
    max-width: 100%;
    font-size: 0.7rem;
    padding-left: 4px;
    margin-left: 5px;
    text-align: justify;
    line-height: 1.5;
    text-indent: 4%;
    margin-top: 0%;
    padding-left: 2%;
  }

  .text_article p h5 {
    font-size: 0.6rem;
  }

  .text_article p h3 {
    font-size: 1rem;
  }

  .btn_404 {
    width: 150px;
    margin: auto;
    text-align: center;
    border-radius: 5px;
  }

  .img_coldkit {
    height: auto;
  }

  .carousel_size {
    height: auto;
  }

  .logo {
    margin-left: 0px;
  }

  .circle {
    margin-right: 0px;
  }

  /**
  * cgv et mentions légales puce
  *
  */

  .mention_puce {
    margin-right: 6px;
    padding: 3px 3px 3px 3px;
    margin-bottom: 46px;
  }

  /*
  *détail d'un cadeau
   */

  .card-img-top {
    width: 290px;
    height: auto;
  }

  /* NAVBAR FRONT */

  .front_menu .nav-item {
    text-align: center;
  }

  .offcanvas_nav {
    display: block !important;
    width: 50%;
    margin: auto;
  }

  .offcanvas_nav .nav-link:active,
  .nav-item:active,
  .nav-link:focus {
    color: #00A7D4 !important;
  }

  /*composant menu

  .pts_navbar {
      justify-content: center;
  }

  .pts_nav_item {
      padding: 0 22px;
  }*/

  .navbar-toggler {
    margin-right: 10px;
  }

  .category {
    width: 160px;
  }

  .custom-checkbox {
    padding: 10px 0;
  }
}

/* Marie-Ocelline
*page 404  
*/

.body_404 {
  flex-flow: row wrap;
  align-content: center;
  justify-content: center;
}

.div_404 {
  width: 100%;
  text-align: center;
}

.number_404 {
  background: #fff;
  font: 900 30vmin "Consolas";
  letter-spacing: 5vmin;
  text-shadow: 2px -1px 0 #000, 4px -2px 0 #0a0a0a, 6px -3px 0 #0f0f0f, 8px -4px 0 #141414, 10px -5px 0 #1a1a1a, 12px -6px 0 #1f1f1f, 14px -7px 0 #242424, 16px -8px 0 #292929;
  position: absolute;
  position: sticky;
  top: 45%;
}

.number_404::before {
  background-color: #E2E6E7;
  background-image: radial-gradient(closest-side at 50% 50%, #ACE600 100%, rgba(0, 0, 0, 0)), radial-gradient(closest-side at 50% 50%, #32BEDA 100%, rgba(0, 0, 0, 0));
  background-repeat: repeat-x;
  background-size: 40vmin 40vmin;
  background-position: -100vmin 20vmin, 100vmin -25vmin;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  animation: moving 10s linear infinite both;
  display: block;
  position: absolute;
  content: "";
}

@keyframes moving {
  to {
    background-position: 100vmin 20vmin, -100vmin -25vmin;
  }
}

.text_404 {
  font: 200 3vmin "Courgette";
  text-align: center;
}

.btn_404 {
  width: 350px;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}

ul li.active a {
  -webkit-text-decoration: solid;
          text-decoration: solid;
}

/**
* page cgv
*/

.mention_puce {
  width: 6px;
  height: 6px;
  background-color: #00A7D4;
  border-radius: 50%;
  margin-right: 6px;
  padding: 3px 3px 3px 3px;
}

.mention_puce.traitement {
  padding: 3px 3px 3px 3px;
  margin-top: 9px;
}

.img-detail {
  width: 300px;
  height: auto;
  max-width: none;
}

/* ONGLET MENU FRONT */

.account_menu .dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: #00A7D4;
}

.account_menu .nav-link:hover {
  color: white !important;
}


