  @import url("https://fonts.googleapis.com/css2?family=Istok+Web:wght@400;700&display=swap");
 

 

.card {
  position: relative;
  width: 320px;
  height: 480px;
  background: #191919;
  border-radius: 10px;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: -50%;
  width: 100%;
  height: 100%;
  background: #ffce00;
  transform: skewY(345deg);
  transition: 0.5s;
}

.card:hover::before {
  top: -70%;
  transform: skewY(390deg);
}

.card::after {
  content: "IPTVFOXX";
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: 600;
  font-size: 6em;
  color: rgba(0, 0, 0, 0.1);
}

.card .imgBox {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  z-index: 1;
}
.card .contentBox {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.card .contentBox h3 {
  font-size: 18px;
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card .contentBox .price {
  font-size: 24px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
}

.card .contentBox .buy {
  position: relative;
  top: 100px;
  opacity: 0;
  padding: 10px 30px;
  margin-top: 15px;
  color: #000000;
  text-decoration: none;
  background: #ffce00;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.5s;
}

.card:hover .contentBox .buy {
  top: 0;
  opacity: 1;
}

.mouse {
  height: 300px;
  width: auto;
}

.dropdown-select {
  background-color: #f0f0f3;
  width: 100%;
  position: relative;
  height: 35px;
  cursor: pointer;
}
.dropdown-select .select-box {
  display: none !important;
}
.dropdown-select span.selection {
  display: block;
  line-height: 35px;
  padding-left: 10px;
}
.dropdown-select span.right-icon {
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #0f57d6;
}
.dropdown-select span.right-icon .fa {
  color: #fff;
  font-size: 33px;
  padding-right: 6px;
  padding-left: 6px;
}
.dropdown-select ul {
  list-style: none;
  margin: 0 0 0 0;
  padding: 0;
}
.dropdown-select ul.list-items {
  visibility: hidden;
  background-color: #f0f0f3;
  height: 0;
  max-height: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  transition: 0.2s all ease-in-out;
  padding-bottom: 2px;
  margin-bottom: 2px;
  position: relative;
}
.dropdown-select ul.list-items.open {
  height: 150px;
  visibility: visible;
}
.dropdown-select ul.list-items li {
  height: 45px;
  line-height: 45px;
  background-color: #fff;
  padding-left: 10px;
  margin: 0 2px;
}
.dropdown-select ul.list-items li.active {
  position: relative;
}
.dropdown-select ul.list-items li.active:before {
  content: " ";
  width: 5px;
  height: 100%;
  position: absolute;
  background: #0f57d6;
  left: 0;
}
/* show mac adresse field */
.mac-adresse{
  display: none;
}
div#macAdresse { 
    flex-direction: column;
    gap: 10px;
}

input {
    border-radius: 3px;
    height: 3rem;
    border: navajowhite;
    box-shadow: 2px 2px 2px rgb(30 30 45 / 26%);
    padding: 15px;
}
span#selected_title {
    box-shadow: 2px 2px 2px rgb(30 30 45 / 26%);
    border-radius: 3px;
    height: 3rem;
    display: flex;
    align-items: center;
    background: #1e1e2d;
    color: white;
}
span.right-icon {
    background: #fd8020  !important;
    border-radius: 0 3px 3px 0px;
    width: 25px;
    height: 3rem;
    color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.title{
  font-weight: 600;
    margin-bottom: 15px;
    font-size: 25px;
    color: #1e1e2d;
    text-align: left;
}
span.old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: red;
    font-weight: bold;
}
span.current-price {
    font-size: 24px;
    font-weight: bold;
    color: #fd8020;
}
p.remarque a {
    font-weight: bold;
}
.select-device{
    margin-bottom:10px;
}
textarea.message {
    border: navajowhite;
    box-shadow: 2px 2px 2px rgb(30 30 45 / 26%);
    border-radius: 5px;
    padding: 10px;
}
form.product-details-form label {
    font-weight: bold;
}
form.product-details-form button {
  margin-top: 25px;
    height: 3rem;
    border: navajowhite;
    border-radius: 3px;
    background: #fd8020;
    color: white;
    font-weight: bold;
    box-shadow: 2px 2px 2px rgb(30 30 45 / 26%);
}
/* other products */
section.other-products {
    display: flex;
    gap: 10px;
    padding: 25px;
    justify-content: space-between;
}
@media(max-width:750px){
    .product .columns{
        flex-direction:column !important;
        padding:0 !important;
    }
    .product .columns div,section.other-products .card{
        width:100% !important;
    }
    section.other-products {
    flex-direction: column;
}

}