/*----------------------------------------------------------
Main Stylesheet for Cheat
Version: 1.0

STYLE CASE - COLOR
PRIMARY → null
SECONDARY → null
BLACK → null
WHITE → null
-----------------------------------------------------------*/

/* DESIGN TEXT */
.bold {
    font-weight: 600;
}

.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}

.italic {
    font-style: italic;
}
.uppercase {
    text-transform: uppercase;
}
.underline {
    text-decoration: underline;
}

.fs-10 {
    font-size: 10px;
}
.fs-12 {
    font-size: 12px;
}
.fs-14 {
    font-size: 14px;
}
.fs-16 {
    font-size: 16px;
}
.fs-18 {
    font-size: 18px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-28 {
    font-size: 28px;
}
.fs-30 {
    font-size: 30px;
}
.fs-32 {
    font-size: 32px;
}
.fs-34 {
    font-size: 34px;
}
.fs-36 {
    font-size: 36px;
}
.fs-38 {
    font-size: 38px;
}
.fs-40 {
    font-size: 40px;
}
.fs-42 {
    font-size: 42px;
}
.fs-44 {
    font-size: 44px;
}

/* ESPACEMENT */
.no-margin-impt {
    margin: 0 !important;
}
.no-padding-impt {
    padding: 0 !important;
}
.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.no-margin-top {
    margin-top: 0 !important;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}
.no-margin-left {
    margin-left: 0 !important;
}
.no-margin-right {
    margin-right: 0 !important;
}

/* POSITIONNEMENT */
.d-none {
    display: none !important;
}
.d-grid {
    display: grid !important;
}
.d-flex {
    display: flex !important;
}
.flex-center {
    display: flex !important;
    justify-content: center;
    align-items: center;
    align-self: center;
}
.flex-end {
    display: flex;
    justify-content: flex-end;
}
.flex-start {
    display: flex;
    justify-content: flex-start;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-around {
    display: flex;
    justify-content: space-around;
}
.flex-evenly {
    display: flex;
    justify-content: space-evenly;
}
.flex-items-center {
    display: flex;
    align-items: center;
}
.flex-items-start {
    display: flex;
    align-items: flex-start;
}
.self-center {
    display: flex;
    align-self: center;
}
.as-center {
    align-self: center;
}
.as-flex-start {
    align-self: flex-start;
}

.text-start {
    text-align: start;
}
.text-end {
    text-align: end;
}
.text-justify {
    text-align: justify;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-left {
    text-align: left;
}

.text-male {
    color: #029EF6;
}
.text-female {
    color: #E547A1;
}
.text-disable {
    color: #74788d!important;
    opacity: 0.8;
    cursor: default!important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cursor-pointer {
    cursor: pointer;
}

/* ALERT */
.alert-margin-i,
.alert i {
    margin-right: 10px;
}
.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}
.alert-heading {
    color: inherit;
}
.alert-link {
    font-weight: 700;
    transition: all .4s ease;
}
.alert-link:hover {
    opacity: 0.6;
    transition: all .4s ease;
}

.alert-success {
    background-color: #e0ffef;
    color: #43d39e;
    border-color: #43d39e;
}
.alert-success hr {
    border-top-color: #e0ffef;
}
.alert-success .alert-link {
    color: #43d39e;
}

.alert-info {
    background-color: #e0f2ff;
    color: #25c2e3;
    border-color: #25c2e3;
}
.alert-info hr {
    border-top-color: #e0f2ff;
}
.alert-info .alert-link {
    color: #25c2e3;
}

.alert-warning {
    background-color: #fef6e3;
    color: #ffbe0b;
    border-color: #ffbe0b;
}
.alert-warning hr {
    border-top-color: #fef6e3;
}
.alert-warning .alert-link {
    color: #ffbe0b;
}

.alert-danger {
    background-color: #ffebea;
    color: #ff5c75;
    border-color: #ff5c75;
}
.alert-danger hr {
    border-top-color: #ffebea;
}
.alert-danger .alert-link {
    color: #ff5c75;
}

.alert-brand {
    background-color: #eaedff;
    color: #374EAE;
    border-color: #374EAE;
}
.alert-brand hr {
    border-top-color: #eaedff;
}
.alert-brand .alert-link {
    color: #374EAE;
}

.alert-light {
    background-color: #f8f9fa;
    color: #818182;
    border-color: #818182;
}
.alert-light hr {
    border-top-color: #f8f9fa;
}
.alert-light .alert-link {
    color: #818182;
}

.alert-dark {
    background-color: #d6d6d6;
    color: #343a40;
    border-color: #343a40;
}
.alert-dark hr {
    border-top-color: #d6d6d6;
}
.alert-dark .alert-link {
    color: #343a40;
}

/* CALLOUT */
.callout {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 24px;
    border-color: #535353;
    border-width: 1px 1px 1px 0.35rem;
    border-style: solid;
    border-radius: 0.25rem;

    /* background-color: #fff; */
    /* color: #6c757d; */
}
.callout p {
    margin-bottom: 0;
}
/* 
.callout.callout-primary {
    border-left-color: #5369f8 !important;
}
.callout.callout-secondary {
    border-left-color: #1e2139 !important;
}
.callout.callout-success {
    border-left-color: #43d39e !important;
}
.callout.callout-info {
    border-left-color: #25c2e3 !important;
}
.callout.callout-warning {
    border-left-color: #ffbe0b !important;
}
.callout.callout-danger {
    border-left-color: #ff5c75 !important;
}
.callout.callout-light {
    border-left-color: #f8f9fa !important;
}
.callout.callout-dark {
    border-left-color: #343a40 !important;
} 
*/

.border-keyword {
    padding: 1rem;
    border-width: 1px 1px 1px 0.25rem;
    border-color: #e7eaf3;
    border-style: solid;
    border-radius: 0.25rem;
}
.bk-primary {
    border-left-color: #5369f8;
}
.bk-secondary {
    border-left-color: #1e2139;
}
.bk-success {
    border-left-color: #43d39e;
}
.bk-info {
    border-left-color: #25c2e3;
}
.bk-warning {
    border-left-color: #ffbe0b;
}
.bk-danger {
    border-left-color: #ff5c75;
}
.bk-light {
    border-left-color: #f8f9fa;
}
.bk-dark {
    border-left-color: #343a40;
}

.badge-tracker {
    padding: 4px 8px;
    border-radius: 2px;
    margin-right: 0.5rem;
}
.bt-primary {
    color: #fff;
    background-color: #5369f8;
}
.bt-secondary {
    color: #fff;
    background-color: #1e2139;
}
.bt-success {
    color: #fff;
    background-color: #43d39e;
}
.bt-info {
    color: #fff;
    background-color: #25c2e3;
}
.bt-warning {
    color: #212529;
    background-color: #ffbe0b;
}
.bt-danger {
    color: #fff;
    background-color: #ff5c75;
}
.bt-light {
    color: #212529;
    background-color: #f8f9fa;
}
.bt-dark {
    color: #fff;
    background-color: #343a40;
}

/* TO TOP */
.to-top {
    position: fixed;
    bottom: 30px;
    right: 20px;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    transition: .3s ease-in-out;
    width: 50px;
    border-radius: 100%;
    line-height: 50px;
    text-align: center;
    color: #FAFAFA;
    background-color: #242B3A; 
}
.to-top:hover {
    background-color: #FFC418;
    color: #FAFAFA; 
}
.to-top.active {
    opacity: 1;
    pointer-events: auto; 
}

/* RIBBON CORNER */
.ribbon-c {
    position: fixed;
    width: 210px;

    color: #FAFAFA;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);

    top: auto;
    bottom: 25px;
    left: -50px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);

    text-align: center;
    line-height: 50px;
    letter-spacing: 1px;

    z-index: 1005;
}
.ribbon-c {
    font-weight: bold;
    width: 275px;
    bottom: 50px;
    left: -55px;
}
.ribbon-c span {
    display: block;
    max-width: 60%;
    margin: 0 auto;
    padding: 10px 0 15px 0;

    font-size: 14px;
    font-weight: 600;
    text-align: center;
    /* text-transform: uppercase; */
    line-height: 1.2;
}

/* OBFUSCATION DE LIENS */
.obf-internal-link,
.obf-external-link,
.obf-encoded-internal-link,
.obf-encoded-external-link {
    cursor: pointer;
    transition: .25s ease-in;
}
.obf-internal-link:hover,
.obf-external-link:hover,
.obf-encoded-internal-link:hover,
.obf-encoded-external-link:hover {
    opacity: 0.8;
    transition: .25s ease-in;
}

/* PRELOADER */
#preloader-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #FFF;
    transition: 0.3s;
}
#preloader-wrap.loaded {
    visibility: hidden;
    opacity: 0;
}

#preloader-table {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #FFF;
    transition: 0.3s;
}
#preloader-table.loaded {
    visibility: hidden;
    opacity: 0;
}

.p-spinner-3 {
    margin: 100px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px;
}
.p-spinner-3 > div {
    background-color: #5369f8;
    height: 100%;
    width: 6px;
    display: inline-block;
    -webkit-animation: ms-stretchdelay 1.2s infinite ease-in-out;
    animation: ms-stretchdelay 1.2s infinite ease-in-out;
}

.p-spinner-3 .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}
.p-spinner-3 .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}
.p-spinner-3 .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}
.p-spinner-3 .rect5 {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes ms-stretchdelay {
    0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
    20% { -webkit-transform: scaleY(1.0) }
}
@keyframes ms-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
        -webkit-transform: scaleY(0.4);
    }  20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0);
    }
}

/* DIVERS */
.filter-custom label input {
    margin-left: 0.5em;
    display: inline-block;
    width: auto;

    height: calc(1.5em + 0.5rem + 2px);
    padding: 0.25rem 0.5rem;
    font-size: .75rem;
    line-height: 1.2;
    border-radius: 0.2rem;

    color: #4b4b5a;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e2e7f1;
}
.filter-custom label input:focus {
    color: #4b4b5a;
    background-color: #fff;
    border-color: #5369f8;
    outline: 0;
}

.paginate-custom {
    margin: 0;
    white-space: nowrap;
    text-align: right;
}
.paginate-custom .paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    text-align: center;
    text-decoration: none !important;
    cursor: pointer;

    position: relative;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #5369f8;
    background-color: #fff;
    border: 1px solid #e2e7f1;

    border-radius: 30px !important;
    margin: 0 3px;
    border: none;
}
.paginate-custom .paginate_button:hover {
    z-index: 2;
    color: #0a29f5;
    text-decoration: none;
    background-color: #f6f6f7;
    border-color: #e2e7f1;
}
.paginate-custom .paginate_button.active {
    z-index: 1;
    color: #fff;
    background-color: #5369f8;
    border-color: #5369f8;
}

.avatar-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: rgba(83, 105, 248, 0.2);
    color: #5369f8;
    border-radius: 50% !important;
    font-size: 16px;
    font-weight: 700;
}
.avatar-letter i {
    color: #5369f8;
}

span.word-title {
    padding: 4px 12px;
    border-radius: 2px;
}

/* ELEMENTS WIP */
.b-wip {
    background-color: rgba(255, 190, 11, 0.2);
}
.wip-card {
    height: 275px;
    background: #DCDCDC;
}
.badge-wip {
    color: #212529;
    background-color: hsla(44, 100%, 52%, 0.2);
}
a.badge-wip:focus,
a.badge-wip:hover {
    color: #212529;
    background-color: rgba(255, 190, 11, 0.2);
}
a.badge-wip.focus,
a.badge-wip:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.15rem rgba(255, 190, 11, 0.2);
    box-shadow: 0 0 0 0.15rem rgba(255, 190, 11, 0.2);
}

#progress-bar-scroll {
    /* background-color: #FFDD00; */
    height: 5px;
    width: 0;
    position: fixed;
    /* top: 85px; */
    bottom: 0;
    left: 0;
    z-index: 1;
}

/* ********* */
/* SUBHEADER */
/* ********* */
.uni-custom-subheader {
    /* padding: 165px 0px 100px 0px; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    z-index: 100;
}
.uni-custom-subheader div.uni-custom-subheader-height {
    height: 350px !important;
}
.uni-custom-subheader ul.uni-custom-pagination {
    margin: 0;
    padding: 0;
    text-align: start;
    display: block;
}
.uni-custom-subheader ul.uni-custom-pagination li {
    display: inline-block;
    color: var(--heading-color-text);
    cursor: default;

    margin-right: 16px;
    padding-right: 16px;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}
.uni-custom-subheader ul.uni-custom-pagination li:after {
    content: "\e942";
    font-family: 'Unicons';
    font-weight: bold;
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: -8px;
    bottom: auto;
    left: auto;
}
.uni-custom-subheader ul.uni-custom-pagination li:last-child {
    margin-right: 0;
    padding-right: 0;
    font-weight: 600;

    background-color: var(--gradient-first);
    background-image: linear-gradient(var(--gradient-angle), var(--gradient-first), var(--gradient-second));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}
.uni-custom-subheader ul.uni-custom-pagination li:last-child:after {
    display: none;
}

.uni-custom-subheader ul.uni-custom-pagination li a {
    color: var(--heading-color-text);
    text-transform: capitalize;
}
.uni-custom-subheader ul.uni-custom-pagination li a:hover {
    color: var(--heading-color-text);
    opacity: 0.8;
    text-decoration: none;
}

.uk-dark .uni-custom-subheader ul.uni-custom-pagination li,
.uk-dark .uni-custom-subheader ul.uni-custom-pagination li a,
.uk-dark .uni-custom-subheader ul.uni-custom-pagination li a:hover {
    color: var(--color-gray-10);
}

/* ****** */
/* CUSTOM */
/* ****** */

@media (min-width: 960px) {
    .education-card {
        min-height: 260px;
    }
}

.m-0-auto {
    margin: 0 auto !important;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

div.uk-child-margin-bottom > button,
div.uk-child-margin-bottom > span,
div.uk-child-margin-bottom > div {
    margin-bottom: var(--sizes-spacing) !important
}

.terms-custom div:first-child {
    margin-top: 0 !important;
}


.cartridge-custom {
    height: 90px;
    padding: 15px;
}
.cartridge-custom img {
    margin: 0 !important;
}
.uk-dark .cartridge-custom {
    background-color: rgba(255, 255, 255, 0.05) !important;
    /* background-color: rgba(255, 255, 255, 0.15) !important; */
    /* background-image: linear-gradient(var(--gradient-angle), rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.55) 100%); */
}

.cartridge-custom img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.m-auto {
    margin: 0 auto !important;
}