.blogs-page .article-description {
    text-align: justify;
}

.bloc-page-blog .other-article-description {
    text-align: justify;
}

.m-t-40 {
    margin-top: 40px;
}

.m-t-60 {
    margin-top: 60px;
}

.m-b-20 {
    margin-bottom: 20px;
}

.m-b-30 {
    margin-bottom: 30px;
}

.m-r-20 {
    margin-right: 20px;
}

.m-r-30 {
    margin-right: 30px;
}

.nopadding-tb {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
}

input.error,
select.error,
textarea.error {
    border: 1px solid #dc3545 !important;
    outline: 2px solid rgba(220, 53, 69, 0.3) !important;
    transition: outline 0.1s ease, border-color 0.1s ease;
}

/* -------------------------------------------------------------- */
/* ------------------------- Sweet alert ------------------------ */
/* -------------------------------------------------------------- */
.swal2-popup {
    zoom: 1.5;
}

/* -------------------------------------------------------------- */
/* ----------------------- Custom checkbox ---------------------- */
/* -------------------------------------------------------------- */
.custom-checkbox {
    position: relative;
    display: flex;
    cursor: pointer;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    left: 6px;
    top: 8px;
}

.custom-checkbox .checkmark {
    position: relative;
    height: 24px;
    width: 24px;
    margin-right: 12px;
    border: 1px solid var(--main-primary-color);
    border-radius: 50%;
    box-sizing: border-box;
    flex-shrink: 0;
}

.custom-checkbox .checkmark > span {
    transition: all 0.2s;
    border-radius: 50%;
}

.custom-checkbox input:checked + .checkmark > span {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 10px;
    height: 10px;
    background: var(--main-primary-color);
}

/* -------------------------------------------------------------- */
/* --------------------------- Button --------------------------- */
/* -------------------------------------------------------------- */
.btn-default {
    padding: 10px 30px;
    background-color: #D4D2CF;
    color: #fff;
    font-weight: bold;
}