#box {
    width: 75%;
    height: 500px;
    height: fit-content;
}

td {
    width: 25%;
}

#table {
    width: 100%;
    height: fit-content;


}

.show {
    display: block !important;
}
.notshow{
    display: none   ;
}

#antal {
    max-width: fit-content;

}

#form1 {
    width: 90px;
}

#btn {
    width: 100%;
    position: absolute;
    bottom: 0;

}

#btn button {
    float: right;
    background: none;
    width: 20%;

}

#stepone {
    width: 100%;

}

#stepone input {
    width: 100%;
    height: 35px;
    display: block;
}

#stepone label {
    font-size: small;
}

#steponebox {
    min-height: 10%;
    border-bottom: solid black 2px;
    padding-bottom: 10px;
}

/* #steptwo {
    display: none;

} */

#steptwo input {
    width: 100%;
    height: 35px;
    display: block;

}

.step3 {
    padding-bottom: 10px;
}

/* #stepthree {
    display: none;

}  */

/* #stepthree img {
    float: right;
} */

/* .step{
    display: none;
} */

/* .step.active{
    display: block;
    
} */


#box {
    border: solid black 2px;
}

.modal-content {
    background-color: black;
    width: 100%;
}

.modal-content h1 {
    color: white;
}
.remove{
    background: none;
    border: none;
    height: 10%;
    
}
#cartbox{
    border: solid black 2px;
}
#cartsum{
    width: 100%;
    height: 50px;
    font-weight: bold;
}



#done{
    background-color: black;
    color: white;
    font-weight: 700;
    border-radius: 2.5px;
}
@media (max-width: 576px) {}

/* // Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {}

/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) {

    #box{
        width: 100%;
    }
    #cartbox{
        display: none;
    }

    
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (max-width: 1200px) {}

@media (min-width: 992px) {}




/* animated checkmark gif */
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  
  .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: none;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;

  }
  
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
  }