.group {
    display: flex;
    line-height: 28px;
    align-items: center;
    position: relative;
   }
   
   .inputt {
       height: 40px;
       line-height: 28px;
       padding: 0 1rem;
       padding-left: 2.5rem;
       border: 2px solid transparent;
       border-radius: 12px;
       outline: none;
       background-color: #F5F7F9;
       color: #0d0c22;
       transition: .3s ease;
       padding-right: 100px;
       padding-left: 50px;
   }
   
   .inputt::placeholder {
    color: #C0C0C0;
   }
   
   .inputt:focus, input:hover {
    outline: none;
    border-color: #0d0c22;
    background-color: #fff;
   }
   
   .iconn {
    position: absolute;
    left: 1.5rem;
    fill: #9e9ea7;
    width: 1.5rem;
    height: 1.5rem;
   }

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination-link {
    border: none;
    color: grey;
    text-decoration: none;
    transition: color 0.3s;
}

.pagination-link:hover,
.pagination-link:focus {
    color: black;
}

.pagination-link.active {
    color: black;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-container {
    position: relative;
    display: inline-block;
    font-size: 18px;
    margin-bottom: 12px;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 19px;
    border-radius: 6px;
    background-color: #bfbfbf;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
    animation: checkboxExpand 0.3s ease forwards;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    width: 5px;
    height: 11px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}
.checkbox-container input:checked~.checkmark {
    background-color: var(--website-color);
}

@keyframes checkboxExpand {
    0% {
        transform: translate(-50%, -50%) rotate(45deg) scale(0);
    }

    100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
    }
}

.hidden {
    display: none !important;
}

.btn-achille{
    background: var(--website-color);
    color: #fff;
    font-size: 13px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    border: 1px solid var(--website-color);
    padding: 12px 10px;
}

.btn-achille:hover{
    color: #fff;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #2A2A2A;
    line-height: 18px;
}
.form-group input {
    border-radius: 10px;
    border: 1px solid #E1E4E9;
    height: 42px;
}
.form-group input::placeholder {
    color: #A8ADBC;

}

.form-select {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E1E4E9;
    height: 42px;
}

.form-control {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #E1E4E9;
    height: 42px;
}
.form-control select {
    color: #A8ADBC;
}

.check-black {
    display: flex;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.check-black input {
    display: none;
}

.checkbox-achille p {
    margin-left: 10px;
    font-size: 13px;
    color: #2A2A2A !important;
    font-family: "Poppins";
    font-weight: 100;
}

.checkmark-achille {
    position: relative;
    top: 0;
    left: 0;
    height: 1em;
    width: 1em;
    background-color: #bfbfbf;
    border-radius: 0.3em;
    transition: all 0.25s;
}