@import url("https://fonts.maateen.me/solaiman-lipi/font.css");

.font-pt-mono {
  font-family: "PT Mono", monospace;
  font-weight: 400;
  font-style: normal;
}


body{
  font-family: "SolaimanLipi", sans-serif;
  background-color: #f4f4f4b5;
}

.header {
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid #c1c1c1a6;
}
.header h4{
  font-size: 1.82rem;
}
.header h5{
 color: #646464;
}


/* Step CSS  */

.steps-horizontal {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 800px;
    position: relative;
    padding: 0;
}

.steps-horizontal::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 20px;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
}

.step-description {
    font-size: 12px;
    color: #adb5bd;
    max-width: 150px;
    margin: 0 auto;
}

.step-horizontal.active .step-icon {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
    box-shadow: 0 0 0 5px rgba(67, 97, 238, 0.2);
}

.step-horizontal.complete .step-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

.section-head {
    background: #534e6c30;
    color: #303338eb;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.section-repeat {
    position: relative;
    padding: 1rem 0;
    border-top: 1px dashed transparent;
}
.section-repeat:nth-child(even) {
    background: #edededcd;
    
}
.section-repeat:not(:first-child) {
    border-color: #aaaaaa    
}

.section-repeat .actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.custom-file-upload {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 3px;
    padding: .4rem .6rem;
    font-size: 14px;
}

.custom-file-upload.is-invalid {
    border-color: var(--bs-danger)
}

.custom-file-upload .ph {
    color: #878787;
}

.custom-file-upload .button {
    background-color: #454546;
    color:  #fff;
    padding: 0 .5rem;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.custom-file-upload .button:hover{
    background-color: #1669c9;
}

.custom-file-upload label{
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.uploaded-files{
    padding: .2rem;
    margin-top: .5rem;
    border: 1px dashed #cfcfcf;
}



.uploaded-files:hover {
    border-color: rgb(40, 113, 221);
}

.uploaded-file-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #878787;
    padding: 2px 0;
    cursor: pointer;
}

.uploaded-file-item:hover {
    color: #2c2c2c;
}

.uploaded-file-item:hover .icon {
    color: #888888;
}
.uploaded-file-item:hover .remove {
    color: #e70f0fe2;
}

.uploaded-file-item .icon {
    color: #bababa
}

.uploaded-file-item .remove {
    color: #e70f0f1a
}

.uploaded-file-item .label {
    width: 90%;
    text-wrap: nowrap;
    overflow: hidden;
}

.col-repeat{
    background: #fff;
    padding: .5rem;
}

.col-repeat:nth-child(even) {
    background: #e4e9edad;
}


.ts-control > input {
    min-width: 3rem !important;
}


/* Utils  */
.pointer {
    cursor: pointer;
}




