*{
    box-sizing:border-box;
}

html,body{
    width:100%;
    height:100%;
    background-color: #eee;
    position: relative;
}

:root {
    --primary-linear: linear-gradient(150deg, #203c71 60%, rgba(13, 28, 54, 1) 90%);
    --primary: #203c71;
    --lighter-primary: #214383;
    --lightest-primary: #4a85cc;
    --secondary: #33343d;
    --lighter-secondary: #4b4b54;
    --light-border: #e5e5e5;
    --lighter-grey: #f5f5f5;
    --mid-grey: #666;
    --white: #fff;
    --grey: #ddd;
    --red: #ed133c;
    --green: #20b920c9;
    --orange: #ff8800;

    --neutral-000: #fff;
    --neutral-100: #eee;
    --neutral-200: #ddd;
    --neutral-300: #ccc;
    --neutral-400: #bbb;
    --neutral-500: #aaa;
    --neutral-600: #999;
    --neutral-700: #666;
    --neutral-800: #333;
    --neutral-900: #111;

    --hover-background-cyan: #d0fbed;
    --hover-background-blue: rgba(74, 133, 204, 0.22);

    --transition-standard: 0.2s ease-in-out;
}

.uk-card {
    border-radius: 10px;
}

.uk-card-default {
    box-shadow: 0 14px 25px rgba(0,0,0,.16);
}

#options_grid {
    display: flex;
    gap: 40px;
}

#options_grid > div {
    cursor: pointer;
    width: 220px;
    transition: 0.2s ease-in-out;
}

#options_grid > div:hover {
    transform: translateY(-2px);
    background-color: #f8f8f8;
}

#options_grid > div:hover i {
    color: #203c71;
}

#options_grid > div:hover p {
    color: #203c71;
}


#options_grid i {
    color: #33343d;
    font-size: 50px;
}

#options_grid p {
    margin: 0;
    color: #33343d;
    font-weight: 500;
    text-align: center;
}

.uk-button {
    border-radius: 10px;
    transition: 0.2s ease-in-out;
    font-weight: 500;
    text-transform: capitalize;
}

.uk-button-primary {
    background: linear-gradient(150deg, #203c71 60%, rgba(13, 28, 54, 1) 90%);
    border: 2px solid #33343d;
    color: #fff;
}

.uk-button:hover {
    transform: translateY(-3px);
    cursor: pointer;
}

.uk-button:hover i {
    transition: 0.3s ease-in-out;
}

/* table {
    border-collapse: separate;
    border-spacing: 0;
}

th {
    background-color: #f8f7f7;
}
  
th:first-child {
    border-top-left-radius: 10px;
}

th:last-child {
    border-top-right-radius: 10px;
} */

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px 0px 30px;
}

.uk-table thead {
    background-color: #f5f5f5;
}

.uk-table th {
    text-transform: capitalize;
    /*text-align: center;*/
}

.uk-table tr td:last-of-type {
    padding: 12px;
}

.uk-table tbody tr {
    border-top: 1px solid #e5e5e5;
}

.table-actions {
    width: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.table-actions i {
    font-size: 23px;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.bi-pencil-square {
    color: #203c71;
}

.bi-trash {
    color: #ed133c;
}

.table-actions i:hover {
    /*transform: translateY(-2px);*/
    transform: scale(1.2);
}

.uk-table .uk-label {
    background-color: #f1000099;
    min-width: 30px;
}

.uk-table .uk-label.green {
    background-color: #20b920c9;
}

.uk-table .uk-label.green i {
    color: #fff;
}

.uk-input, .uk-select, .uk-textarea {
    border-radius: 10px;
}

.uk-input, .uk-select, .uk-textarea {
    border: 2px solid #e5e5e5;
    /*box-shadow: 0 2px 8px rgba(0,0,0,.08);*/
}

.uk-input:focus, .uk-select:focus, .uk-textarea:focus {
    border-color: #203c71;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.uk-select:focus, .uk-select:active {
    outline: none;
    border-radius: 10px;
}

.uk-text-italic {
    color: #ed133c;
}

hr.thick {
    margin-top: 5px;
    border-width: 3px;
}

.uk-position-relative label {
    position: absolute;
    top: -13px;
    left: 20px;
    background-color: #fff;
    padding: 0 10px;
    border-radius: 10px;
    font-weight: 500;
    color: #203c71;
}

h5 {
    font-weight: 700;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 3px solid #e5e5e5;
}

label.requried {
    padding-right: 15px;
}

label.requried::after {
    content: '*';
    position: absolute;
    color: #f0506e;
    right: 5px;
}

.border-seperator {
    position: relative;
}

.border-seperator::after {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    bottom: -20px;;
    border-bottom: 1px solid #e5e5e5;
}

.large-button {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    padding: 5px 30px;
}

.large-button:hover {
    transform: none;
}

.large-button i {
    font-size: 25px;
}

.large-button.left {
    justify-content: left;
}

.large-button.left:hover i {
    transform: translateX(-10px);
}

.large-button.right {
    justify-content: right;
}

.large-button.right:hover i {
    transform: translateX(10px);
}

.uk-icon-link {
    transition: 0.2s ease-in-out;
}

.uk-icon-link:hover {
    transform: translateY(-2px);
}

[data-error-text] {
    position: absolute;
    top: 0;
    right: 0;
}

.uk-form-danger, .uk-form-danger:focus {
    border-color: #f0506e !important;
}

.uk-notification {
    border-radius: 10px;
    /* width: 100%;
    max-width: 800px; */
}

.uk-notification-message {
    border: 2px solid var(--primary);
    border-radius: 10px;
}

.uk-alert-danger {
    border-radius: 10px;
}

/* README SECTION */

.readme .row {
    margin: 20px 0;
}

.readme .row:last-of-type {
    margin: 0;
}

.readme .row p {
   margin: 0; 
}

.readme .uk-label {
    vertical-align: unset !important;
}

.readme .seperator {
    margin: 0 10px;
}

.readme .required {
    background-color: #faa05a;
}
