/* Colour Settings */

:root {
    --theme_accent: #E62984 !important;
    --theme_accent_semi: #1d2833 !important;
    --theme_accent_hover: #000 !important;
}


/* Flex Box settings */

.flex {
    display: flex;
    align-items: center;
}

.flex.flex-verticle,
.flex.flex-col {
    flex-direction: column;
}

.flex.flex-space-between {
    justify-content: space-between;
}

.flex.flex-start {
    justify-content: flex-start;
}

.flex.flex-end {
    justify-content: flex-end;
}

.flex.flex-center {
    justify-content: center;
}

.flex.flex-gap-20 {
    gap: 20px;
}

.flex.flex-gap-10 {
    gap: 10px;
}

.flex.flex-align-stretch {
    align-items: stretch;
}

.flex.flex-align-start {
    align-items: start;
}

.flex.flex-align-end {
    align-items: end;
}

.flex.flex-align-center {
    align-items: center;
}

.flex.flex-no-wrap {
    flex-wrap: nowrap;
}

/* Padding Settings  */

.padding-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.padding-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.padding-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.padding-top-10 {
    padding-top: 10px;
}

.padding-top-20 {
    padding-top: 20px;
}

.padding-top-30 {
    padding-top: 30px;
}

/* Buttons */

.jt-btn {
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    font-size: 1rem;
    padding: .375rem .75rem;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem;
    color: #1d2833;
    transition: color .15s ease-in-out,
        background-color .15s ease-in-out,
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out
}

.jt-btn.jt-default {
    background-color: #E62984;
    border-color: #a44070;
    color: #ffffff;
}

.jt-btn.jt-default:hover {
    background-color: #c72171;
    border-color: #88345d;
    color: #ffffff;
}

.jt-btn.jt-submit {
    background-color: #43c356;
    border-color: #2b8939;
    color: #ffffff;
}

.jt-btn.jt-submit:hover {
    background-color: #349e44;
    border-color: #226c2d;
    color: #ffffff;
}

.jt-btn-block {
    display: block;
}

/* form */

.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem !important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5 !important;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Tables  */

table.table {
    border-collapse: collapse;
    width: 100%;
}

table.table thead {
    background: #1d2833;
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1em;

}

table.table thead td {
    padding: 20px;
}

table.table tbody tr {
    background: #efefef;
}

table.table tbody tr:nth-child(even) {
    background: #efefef80;
}

table.table tbody tr:hover {
    background: #1d283322;
    color: #1d2833;
}

table.table tbody td {
    padding: 20px;
}

/* Loading Spinner */
.loading-section {
    display: none;
    padding: 50px 0 100px 0;
}

.loading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}


.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    margin: auto;
    text-align: center;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #1d2833;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #1d2833 transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.lds-ripple {
    display: inline-block;
    position: relative;
    width: 20px;
    height: 20px;
    margin: 0 10px;
}

.lds-ripple div {
    position: absolute;
    border: 1px solid #c72171;
    opacity: 1;
    border-radius: 50%;
    animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes lds-ripple {
    0% {
        top: 10px;
        left: 10px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 10px;
        left: 10px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 10px;
        left: 10px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 18px;
        height: 18px;
        opacity: 0;
    }
}

.hidden {
    display: none;
}