.new-order {
    background-color: #fff;
    color: #000;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 11px !important;
}

.license-img-container {
    width: 480px;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.license-image {
    object-fit: contain;
    position: absolute;
    width: 100%;
    height: 100%;
}

.no-orders-found {
    margin-top: 180px;
    text-align: center;
}

.card-details-hover .card-body:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    transform: scale(1.05) !important;
    transition: all 420ms ease-in;
    color: #000;
}

.profile-border {
    border: 1px solid #fff;
    border-radius: 10px 50px 50px 10px;
}

.profile-border .info-img-card {
    position: absolute;
    top: -26px;
    right: -20px;
    padding: 4px;
    border-radius: 50%;
    border: 1px solid #fff;
    border-bottom: 1px solid #908f8f;
    border-right: 1px solid #908f8f;
    color: #fdd;
    background-color: #f5f5f5;
    overflow: hidden;
}

.profile-border .info-img-card .profile-img-circle {
    border: 1px solid #fff;
    border-bottom: 1px solid #908f8f;
    border-right: 1px solid #908f8f;
    border-radius: 50%;
    background-color: #f0f3f7;
    padding: 4px;
}

.search-box .clear {
    clear: both;
    margin-top: 20px;
}

.search-box input {
    width: 80% !important;
}
.search-box .custom {
    width: 100% !important;
}
.search-box ul {
    list-style: none;
    padding: 0px;
    width: 95%;
    position: absolute ;
    z-index: 200 !important;
    margin: 0;
    background-color: #fff;
    border: 1px solid #000;
    border-top: 0px;
}

    .search-box  .table {
        list-style: none;
        padding: 0px;
        width: 16% !important;
        position: absolute ;
        z-index: 200 ;
        margin: 0;
        background-color: #fff;
        border: 1px solid #000;
        border-top: 0px;
    }  


@media   (max-width : 600px) {
    .search-box  .table {
        list-style: none;
        padding: 0px;
        width: 180px !important;
        position: absolute ;
        z-index: 200 ;
        margin: 0;
        background-color: #fff;
        border: 1px solid #000;
        border-top: 0px;
    }  
}
.no-content-found {
    margin-top: 180px;
    text-align: center;
}

.search-box ul li {
    padding: 4px;
}

.search-box ul li:hover {
    cursor: pointer;
    background-color: rgb(84, 84, 239);
    color: #fff;
}

.list-ava {
    display: none;
}
.btn-ava:hover .list-ava {
    display: block;
    margin-top: 20px;
}

.btn-ava .list-ava li label:hover {
    cursor: pointer;
}

.parent-spinner {
    width: 100% !important;
    background-color: transparent !important;
    margin-bottom: 20px;
}

.spinner-square {
    display: flex;
    justify-content: center;
    height: 90px;
}

.spinner-square > .square {
    width: 12px;
    height: 20px;
    margin: auto 10px;
    border-radius: 4px;
}

.square-1 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s
        infinite;
}

.square-2 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms
        infinite;
}

.square-3 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms
        infinite;
}

@keyframes square-anim {
    0% {
        height: 40px;
        background-color: rgb(111, 163, 240);
    }

    20% {
        height: 40px;
    }

    40% {
        height: 70px;
        background-color: rgb(111, 200, 240);
    }

    80% {
        height: 40px;
    }

    100% {
        height: 40px;
        background-color: rgb(111, 163, 240);
    }
}

@media screen and (max-width: 1000px) {
    .search-box input {
        width: 70% !important;
    }
}
.container1 {
    /* display: block; */
    position: relative;
    padding-left: 35px;
    padding-right: 25px;
    /* margin-bottom: 12px; */
    cursor: pointer;
    font-size: 10px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .container1 input {
    position: relative;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    /* top: 0;
    left: 0; */
    height: 25px;
    width: 25px;
    background-color: #eee;
    border: 1px solid black;
    border-radius: 5px;
  }
  
  /* On mouse-over, add a grey background color */
  .container1:hover input ~ .checkmark {
    background-color: #f3f0f0;
    /* border: solid black; */

  }
  
  /* When the checkbox is checked, add a blue background */
  .container1 input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  .container1 input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  .container1 .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }