 

  :root {
    --arrow-icon: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg);
    --transition: 0.15s;
    --border-radius: 0.5rem;
    /* --background: #ffc107; */
    --box-shadow: #ffc107;
  }
  
 
  
   

  .menu {
    padding: 15px;
    margin: 15px;
    border-radius: 25px;
    background-color: var(--background2);
  }

  .menu hr{
    margin: 5px auto;
    color: var(--third);
  }



  .product-list{
    padding: 15px; 
    background-color: var(--background2);
    color: var(--primary);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);  
    display: flex;
    flex-direction: row;
    border-bottom: solid 1px var(--secondary);
    max-height: 200px;
    margin-bottom: 5px;
    border-radius: 25px;
  }

  .product-simbol{
    /* display: flex; */
    flex: 9%;
    align-items: start;
    padding: 0px 1%;
  }

  .product-simbol img{
    width: 120px;
    height: 120px;
    /* transition: transform .2s; Animation */
    cursor: pointer;
  }

  /* .product-simbol img:hover{
    transform: scale(1.2);
  } */

  /* IMG-MODAL */

  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
  }
  
  /* Modal Content (image) */
  .modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
  }
  
  /* Caption of Modal Image */
  #caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
  }
  
  /* Add Animation */
  .modal-content, #caption {  
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
  }
  
  @-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
  }
  
  @keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
  }
  
  /* The Close Button */
  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .close-modal:hover,
  .close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  

  .product-simbol h3{
    padding: 2px;
    /* margin-left: 20px; */
    text-align: center;
    font-weight: 700;
    font-size: 15px;
  }

  /* DROPDOWN */

  .dropdown summary {
    list-style: none;
    list-style-type: none;
  }
  
  .dropdown > summary::-webkit-details-marker {
    display: none;
  }
  
  .dropdown summary:focus {
    outline: none;
  }
  
  
  .dropdown summary:focus {
    outline: none;
  }
  
  .details-info {
    position: absolute;
    margin: 20px 0 0 0;
    padding: 20px 0;
    /* width: var(--dropdown-width); */
    left: 96%;
    margin-left: calc((var(--dropdown-width) / 2)  * -1);
    box-sizing: border-box;
    z-index: 2;
    
    background: var(--dropdown-background);
    border-radius: 6px;
    list-style: none;
  }
  
  .details-info li {
    padding: 0;
    margin: 0;
  }
  
  .details-info li p {
    display: inline-block;
    padding: 10px 0.8rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    color: var(--dropdown-color);
    text-decoration: none;
  }
  
  .details-info li p:hover {
    background-color: var(--dropdown-highlight);
    color: var(--primary);
  }
  
  /* Dropdown triangle */
  .details-info::before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent var(--dropdown-background) transparent;
  }
  
  
  /* Close the dropdown with outside clicks */
  .dropdown > summary::before {
    display: none;
  }
  
  .dropdown[open] > summary::before {
      content: ' ';
      display: block;
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      z-index: 1;
  }

  /* WISH LIST */
  .wish-list{
    font-size: 25px;
    margin-right: 10px;
  }

  .product-brand{
    flex: 10%;
    margin: auto;
  }

  .product-name {
    flex: 51%;
    /* margin: auto; */
  }

  .product-name h3{
    padding: 2px;
  }

  .product-name p{
    font-size: small;
  }

  .product-price{
    flex: 20%;
    margin: auto;
  }

  .product-price span{
    font-weight: bold;
    padding: 5px;
  }

  .product-price span p{
    font-size: 11px;
  }

  .product-option{
    flex: 20%;
    text-align: center;
    margin: auto;
  }

  .delete-product {
    width: 150px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: red;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
    background: var(--danger);
   }
   
   .delete-product, .delete-product span {
    transition: 200ms;
   }
   
   .delete-product .text {
    transform: translateX(5px);
    color: #ffffff;
    font-weight: bold;
   }
   
   .delete-product .icon {
    position: absolute;
    border-left: 1px solid #c41b1b;
    transform: translateX(110px);
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   
   .delete-product svg {
    width: 15px;
    fill: #ffffff;
   }
   
   .delete-product:hover {
    background: var(--primary);
   }
   
   .delete-product:hover .text {
    color: transparent;
   }
   
   .delete-product:hover .icon {
    width: 150px;
    border-left: none;
    transform: translateX(0);
   }
   
   .delete-product:focus {
    outline: none;
   }
   
   .delete-product:active .icon svg {
    transform: scale(0.8);
   }

  /* QUANTITY */

  .form__group{
    display: flex;
  }

  .form__label {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1rem;
    margin: auto;
    margin-top: 0.7rem;
    display: block;
    transition: all 0.3s;
    transform: translateY(0rem);
  }
  
  .form__input {
    /* font-family: 'Roboto', sans-serif; */
    color: var(--primary);
    font-size: 1rem;
    margin: 3% 0%;
    padding: 0.5rem;
    border-radius: 0.2rem;
    background-color: #ffffff;
    border: none;
    /* width: 90%; */
    display: block;
    border-bottom: 0.3rem solid transparent;
    transition: all 0.3s;
    text-align: center;
  }
  
  .form__input:placeholder-shown + .form__label {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-4rem);
    transform: translateY(-4rem);
  }

  .add_to_cart{
    margin: 5px;
    cursor: pointer;
    background-color: var(--success);
    width: 40px;
    height: 40px;
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);  
  }

  .add_to_cart i{
    font-size: 30px;
    color: #ffffff;
    margin: 5px;
  }

  .product-stock{
    flex: 10%;
    text-align: end;
    margin: auto;
  }


  .product-list:hover{
    background-color: var(--secondary);
    color: #ffffff;
  }

  .product-details-button{
    display: none;
  }

  .product-detail-stock{
    display: none;
  }

  /* SUMMARY */
  .summary-details{
    padding: 15px;
  }

  .summary-details .exception{
    /* padding: 0px 10px; */
    margin-bottom: 5px;
    border-bottom: solid 1px var(--secondary);
    /* cursor: pointer; */
  }
  
  .summary-details .exception span{
    cursor: pointer;
    padding: 3px;
    vertical-align: middle;
    font-size: 20px;
  }

  .summary-details #selectException{
    display: none;
  }

  .summary-details select {
    /* Reset */
    appearance: none;
    border: 0;
    outline: 0;
    font: inherit;
    /* Personalize */
    width: 20rem;
    padding: 10px 4rem 10px 10px;
    background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em,
      linear-gradient(to left, var(--primary) 3em, var(--primary) 3em);
    color: #ffffff;
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
    /* Remove IE arrow */
    &::-ms-expand {
      display: none;
    }
    /* Remove focus outline */
    &:focus {
      outline: none;
    }
    /* <option> colors */
    option {
      color: inherit;
      background-color: var(--third);
    }
  }

  .summary-details .order-details{
    padding: 5px 15px;
    display: flex;
    background-color: var(--background2);
    color: var(--primary);
    /* border-radius: 25px; */
    margin-bottom: 5px;
    /* box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);   */
    /* flex-direction: row; */
    /* border-bottom: solid 1px var(--secondary); */
    /* border-left: solid 1px var(--secondary);
    border-right: solid 1px var(--secondary); */

  }

  .summary-details .order-details h3{
    font-weight: 500;
    /* color: black; */
    /* border-bottom: solid 1px var(--secondary); */
  }

  .summary-details .order-details :nth-child(2){
    margin-left: auto;
    order: 2;
    /* font-weight: bold; */
  }

  .summary-details .order-total{
    padding: 15px;
    display: flex;
    background-color: var(--background2);
    color: var(--primary);
    margin-bottom: 5px;
    border-top: solid 2px var(--third);
    border-bottom: solid 2px var(--third);
    font-size: 20px;
  }

  .summary-details .order-total :nth-child(2){
    margin-left: auto;
    order: 2;
    font-weight: bold;
  }

  /* ADDRESS */

  .summary-details .address{
    margin-bottom: 5px;
    border-bottom: solid 1px var(--secondary);
  }

  .summary-details .address span{
    cursor: pointer;
    padding: 3px;
    vertical-align: middle;
    font-size: 20px;
  }

  .summary-details #selectAddress{
    display: none;
    text-align: center;
  }

  .summary-details #selectAddress input{
    width: 100%;
  }

  /* COURIER */

  .summary-details .courier h3{
    margin: 15px 0px;
    border-bottom: solid 1px var(--secondary);
  }
  
  .summary-details .cont-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .summary-details .cont-main {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }
  
  .summary-details .cont-checkbox {
    width: 120px;
    height: 80px;
    border-radius: var(--border-radius);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background: white;
    transition: transform var(--transition);
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
  }
  
  .summary-details .cont-checkbox:active {
    transform: scale(0.9);
  }

  .summary-details .paying h3{
    margin: 15px 0px;
    border-bottom: solid 1px var(--secondary);
  }

  .summary-details .paying h4{
    text-align: center;
    margin: 5px 0px;

  }

  .summary-details .cont-checkbox-paying {
    width: 100px;
    height: 80px;
    border-radius: var(--border-radius);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    background: white;
    transition: transform var(--transition);
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
  }
  
  /* .cont-checkbox:first-of-type {
    margin-bottom: 0.75rem;
    margin-right: 0.75rem;
  } */
  
  .summary-details .cont-checkbox-paying:active {
    transform: scale(0.9);
  }
  
  .summary-details input {
    display: none;
  }
  
  .summary-details input:checked + label {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--background);
  }
  
  .summary-details input:checked + label img {
    -webkit-filter: none; /* Safari 6.0 - 9.0 */
    filter: none;
  }
  
  .summary-details input:checked + label .cover-checkbox {
    opacity: 1;
    transform: scale(1);
  }
  
  .summary-details input:checked + label .cover-checkbox svg {
    stroke-dashoffset: 0;
  }
  
  .summary-details label {
    display: inline-block;
    cursor: pointer;
    border-radius: var(--border-radius);
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0.6;
  }
  
  .summary-details label img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    clip-path: polygon(0% 0%, 100% 0, 100% 81%, 50% 100%, 0 81%);
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
  }
  
  .summary-details label .cover-checkbox {
    position: absolute;
    right: 5px;
    top: 3px;
    z-index: 1;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--box-shadow);
    border: 2px solid #fff;
    transition: transform var(--transition),
      opacity calc(var(--transition) * 1.2) linear;
    opacity: 0;
    transform: scale(0);
  }
  
  .summary-details label .cover-checkbox svg {
    width: 13px;
    height: 11px;
    display: inline-block;
    vertical-align: top;
    fill: none;
    margin: 3px 0 0 2px;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    transition: stroke-dashoffset 0.4s ease var(--transition);
    stroke-dashoffset: 16px;
  }
  
  .summary-details label .info {
    text-align: center;
    margin-top: 0.2rem;
    font-weight: 600;
    font-size: 0.8rem;
  }

  /* OBSERVATION */

  .summary-details .observation h3{
    margin: 15px 0px;
    border-bottom: solid 1px var(--secondary);
  }

  .summary-details .observation input{
    width: 100%;
  }

  /* CHECKOUT */

  .summary-details .checkout input{
    cursor: pointer;
    width: 100%;
    background-color: var(--success);
    color: #ffffff;
    font-weight: bold;
    font-size: 20px;
    vertical-align: middle;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    border-radius: 25px;
  }


  
 


  
  @media screen and (max-width: 830px) {

    

    /* .products{
        display: flex;
        flex-wrap: wrap;    
    } */

    /* .product-list{
      flex-direction: column;
      max-height: 300px;
      width: 32%;
      margin: 5px auto;
      padding: 0;
      position: relative;
    } */

    .wish-list{
        position: absolute;
        left: 3%;
        top: 3%;
        transform: translate(-3%, -3%);
        padding: 5px 7px;
        border-radius: 45px;
        background-color: var(--third);
        margin: 0;
        /* animation-name: sclae;
        animation-duration: 0.6s; */
    }

    /* @keyframes scale{
        0%{opacity: 0}
        70%{transform: scale(1.5)}
        100%{transform: scale(1)}
      } */

    .product-list:hover{
        background-color: var(--secondary);
        color: var(--primary);
      }

    .product-simbol{
        display: block;
    }

    .product-simbol h3{
        margin: 5px 14%;
        margin-bottom: 0;
        text-align: center;
    }

    .product-simbol img{
        width: 100px;
        height: 100px;
        border-radius: 25px;
    }

    .product-simbol img:hover{
        transform: none;   
    }

    /* .product-details-button{
        display: inline;
        float: right;
        padding: 5px;
        font-size: 20px;
    } */

    .details-info {
        display: block;
    }

    .product-stock{
        display: none;
    }

    /* .product-detail-stock{
        display: inline;
        float: left;
        padding: 5px;
        font-size: 15px;
    } */

    .product-brand{
        position: absolute;
        left: 50%;
        transform: translate(-50%);
    }

    /* .product-brand h3:hover{
        color: var(--third);
    } */

    .product-name h3{
      font-size: inherit;
        height: 60px;
    }

    .product-name p{
        display: none;
    }

    .form__input{
      width: 100%;
      margin: 6px 0px;
    }
    

    .modal-content {
        width: 100%;
    }

    .product-price{
      flex: 20%;
      text-align: center;
    }

    .product-option{
      flex: 10%;
    }

    .delete-product {
      width: 40px;
      height: 40px;
     }
     
     .delete-product .text {
      display: none;
     }

     .delete-product:hover .icon {
      width: 35px;
      transform: none;
     }

     .delete-product .icon {
      border-left: none;
      transform: none;
      margin: auto 2px;
     }
    
  }

  @media screen and (max-width: 570px) {


    .header{
        margin-left: 80px;
    }

    .product-name h3{
      font-size: inherit;
    }

    .cantitate_input{
      width: 55%;
    }

    /* .form__input{
      width: 100%;
      margin: 6px 0px;
    } */
  

    /* .product-list{
        width: 48%;
    }  */
    
  }
  
  @media only screen and (min-width: 830px) {
    /* For desktop: */

   
    .col-5 {width: 40%;}
    .col-7 {width: 55%;}
 
  }


  @media only screen and (max-width: 1280px) and (min-width: 831px){
    /* For desktop: */

   
    .col-5 {width: 96.5%;}
    .col-7 {width: 96.5%;}
 
  }




 