:root {
    --color-main: #92806C;
}

body {
    background: rgba(188, 188, 188, .1)
}

/* Title */
h4.title {
    font-size: 24px;
    font-weight: bold;
    font-family: "Poppins";
    text-transform: uppercase;
    letter-spacing: 2px;
}
h5.title {
    font-size: 28px;
    font-family: "Poppins";
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
}
h6.title{
    font-size: 15px;
    font-family: "Poppins";
    font-weight: bold;
    letter-spacing: 1px;
}
p.sub-title {
    font-size: 12px;
    font-family: "Montserrat";
    text-align: center;
    color: rgba(0, 0, 0, .5);
}
p.sub {
    font-size: 12px;
    font-family: "Montserrat";
    color: rgba(0, 0, 0, .5);
}


button.full-btn {
    max-width: 100% !important;
    border-radius: 8px;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    text-transform: uppercase;
}
button.x-btn {
    margin-top: 12px;
}
.divider {
    background: rgba(0, 0, 0, .1);
    width: 100%;
    box-sizing: border-box;
    margin: 25px 0;
    height: 1px;
}
.sub-link.forget {
    margin-top: 10px;
}
.sub-link {
    font-size: 12px;
    font-family: "Montserrat";
    text-align: center;
}
.sub-link a {
    color: -webkit-link;
    cursor: pointer;
    text-decoration: underline;
}
.sub-link a:hover {
    text-decoration: underline;
}

/* Progression List */
.progression {
    width: 100%;
    box-sizing: border-box;
    max-width: fit-content;
    display: -webkit-flex;
    align-items: center;
    column-gap: 20px;
    flex-wrap: nowrap;
    position: relative;
    margin: 0 auto;
}
.progression:before {
    content: " ";
    width: 100%;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .3);
    height: 2px;
    z-index: 0;
}
.progression > div {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: bold;
    font-family: "Montserrat";
    border: 1px solid rgba(0, 0, 0, .3);
    background: white;
    position: relative;
    z-index: 1;
}
.progression > div.active {
    border-color: transparent;
    background: #66bb6a;
    color: white;
}
.slider {
    display: -webkit-flex;
    width: 100%;
    box-sizing: border-box;
    margin-top: 20px;
    column-gap: 20px;
    overflow: hidden;
}
.slider > .items {
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    transition: .5s;
}

/* Topbar */
nav.topbar {
    width: 100%;
    box-sizing: border-box;
    height: 30px;
    background: #3e5c76;
}

/* Table */
table.x-table tbody .x-flex {
    column-gap: 20px;
}
table.x-table tbody .center {
    text-align: center;
}
table.x-table tbody .table-btn {
    width: 100%;
    box-sizing: border-box;
    max-width: 80px;
    font-size: 11px;
    background: #2196F3;
    font-family: "Poppins";
    padding: 6px 0px;
    color: white;
    border: 0;
    border-radius: 22px;
}
table.x-table tbody .table-btn > .x-flex {
    column-gap: 8px;
    align-items: flex-end;
    justify-content: center;
    text-transform: uppercase;
}

/* Admin Panel (Desktop) */
.x-panel {
    width: calc(100% - 250px);
    box-sizing: border-box;
    margin-left: auto;
    padding: 40px;
}