.btn-primary btn-sm active {
  margin-top: 10px;
  margin-left: 15px;
}

.textarea
{
  border:1px solid #999999;
  width:50%;
  margin:5px 0;
  padding:3px;
}

.container {
  width: 200px;
  height: 200px;
  background-color: blue;
  margin-bottom: 10px;
}

.container-fluid-main {
    border: 1px solid #4e73df;
    padding: 10px;
    border-radius: 10px;
    width: 550px;
    float: left;
}

.container-fluid-new-order {
    border: 1px solid #4e73df;
    padding: 10px;
    border-radius: 10px;
    width: 588px;
    float: left;
}

.sep-backend {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, #f0f0f0, #4e73df, #224abe, #f0f0f0);
}

.header__panel {
    width:73%;
    display: flex;
    justify-content: space-between;
}

@media only screen and (max-width: 500px) {
    .header__panel {
    flex-direction: column;
    gap: 10px;
    }
}


.ham {
    cursor: pointer;
    margin-left: 26px;
    display: none;
}

.ham-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #101010;
}

.ham--active .ham-bar--one {
    transform: rotate(-45deg) translate(-4px, 4px);
}
.ham--active .ham-bar--two {
    opacity: 0;
}
.ham--active .ham-bar--three {
    transform: rotate(45deg) translate(-4px, -4px);
}


@media only screen and (max-width: 800px) {
    .ham {
        display: block;
        position: absolute;
        top: 20px;
        right: 10px;
    }
    .ham--active{
        right: 10px;
        z-index: 5;
     }
}

