a{
    text-decoration:none;
}
.wizard .steps> ul,.wizard .actions> ul{
    margin: 0;
    padding: 0;
}

.wizard .steps{
    text-align: center;
}

.wizard .steps> ul li,.wizard .actions> ul li{
    list-style: none;
    display: inline-block;
}

.wizard .steps> ul li a,.wizard .actions> ul li a{
    padding: 5px;
    background-color: #eee;
    margin-right: 10px;
    border-radius: 5px;
    display:block;
    color:var(--bs-primary);
    font-size: 0.9em;
}

.wizard .actions> ul li a{
    background-color:var(--bs-primary);
    color:white;
    margin-right:0;
    margin-left:10px;
}
.wizard .actions{
    display:flex;
    justify-content:flex-end;
    margin-bottom: 15px;
}
.wizard .steps> ul li.current a,.wizard .steps> ul li.done a{
    background-color:var(--bs-primary);
    color:white;
}
.wizard .steps> ul li.done a{
    opacity:0.7;
}

.wizard .steps> ul li .current-info{
    display:none;
}
.wizard .content{
    border:1px solid var(--bs-primary);
    border-radius:10px;
    padding:10px;
    margin-bottom:10px;
    margin-top:25px;
}
.wizard .content .title{
    display:none;
    font-size:0.99em;
}

.wizard .content .title.current{
    display: flex;
    background-color: #fff;
    margin-top: -25px;
    line-height: 30px;
    font-size: :30px;
    padding: 0px 10px;
    margin-left:15px;
    /* padding-top: 0px; */
    width: auto;
    align-self: flex-start;
}

.content-wrapper{
    overflow:auto !important;
}

.form-control.error{
    border-color: red;
}

label.error{
    color: red;
    font-weight: normal;
    font-size: 12px;
}

.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: var(--bs-primary) !important;
    background: #eee;
    padding: 5;
    display: inline-block;
    margin-bottom: 5px;
    border-radius: 7px;
}

.bootstrap-tagsinput{
    display: block;
    width: 100%;
    min-height: calc(2.25rem + 2px);
    padding: 5px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 0 0 transparent;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    display: flex !important;
    flex-wrap: wrap;
}

/* drag image */
.drag-image {
    /* border: 1px dashed var(--bs-primary); */
    height: auto;
    width: 100%;
    border-radius: 5px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.drag-image.active {
    border: 2px solid #fff
}

.drag-image .icon {
    font-size: 30px;
    color: var(--bs-primary)
}

.drag-image h6 {
    font-size: 20px;
    font-weight: 300;
    color: var(--bs-primary)
}

.drag-image span {
    font-size: 14px;
    font-weight: 300;
    color: var(--bs-primary);
    margin: 10px 0 15px 0
}

.drag-image button {
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 300;
    border: none;
    outline: none;
    background: transparent;
    color: var(--bs-primary);
    border: 1px solid var(--bs-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s
}

.drag-image button:hover {
    background-color: var(--bs-primary);
    color: white
}

.drag-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px
}

.disabled{
    opacity:0.5;
}

.form-control,.bootstrap-tagsinput{
    padding: 5px;
    font-size:0.9em;
}

.lottie{
    width: 30%;
}

::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(var(--bs-primary-rgb),0.3);
	background-color: #F5F5F5;
}

::-webkit-scrollbar
{
	width: 4px;
	background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb
{
	background-color: var(--bs-primary);
}