﻿
.badge {
    --bs-badge-padding-x: 0.65em;
    --bs-badge-padding-y: 0.35em;
    --bs-badge-font-size: 0.75em;
    --bs-badge-font-weight: 700;
    --bs-badge-color: #ffffff;
    --bs-badge-border-radius: var(--bs-border-radius);
    display: inline-block;
    padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
    font-size: var(--bs-badge-font-size);
    font-weight: var(--bs-badge-font-weight);
    line-height: 1;
    color: var(--bs-badge-color);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: var(--bs-badge-border-radius);
}


/******** 11.24 Tables ********/
.table {
    color: #242424;
    font-size: 0.85rem;
}

    .table .flag-img {
        width: 18px;
        height: 18px;
        margin: 0 10px 0 0;
    }

    .table .flag-img-lg {
        width: 24px;
        height: 24px;
        margin: 0 7px 0 0;
    }

    .table > thead td,
    .table > thead th {
        font-weight: bold;
        font-size: 0.925rem;
    }

    .table.v-middle {
        vertical-align: middle;
    }

    .table .user-details {
        display: flex;
        align-items: center;
    }

        .table .user-details img {
            width: 60px;
            height: 60px;
            margin: 0 10px 0 0;
            -webkit-border-radius: 50px;
            -moz-border-radius: 50px;
            border-radius: 50px;
        }

    .table .badge.min-70 {
        min-width: 70px;
    }

    .table .badge.min-90 {
        min-width: 90px;
    }

    .table .td-status i {
        font-size: 1.5rem;
        vertical-align: middle;
        margin: 0 5px 0 0;
    }

    .table .actions {
        display: flex;
        align-items: center;
    }

        .table .actions a {
            width: 36px;
            height: 36px;
            font-size: 1rem;
            margin: 3px;
            border: 1px solid #ededed;
            display: flex;
            align-items: center;
            justify-content: center;
            -webkit-transition: 0.3s ease;
            transition: 0.3s ease;
        }

    .table .media-box {
        display: flex;
        align-items: center;
    }

        .table .media-box img.media-avatar {
            height: 60px;
            margin: 0 15px 0 0;
        }

        .table .media-box img.media-avatar-lg {
            height: 90px;
            margin: 0 15px 0 0;
        }

        .table .media-box .media-box-body {
            flex: 1;
        }

            .table .media-box .media-box-body p {
                color: #13181e;
                padding: 5px 0;
            }

.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #242424;
}

.table > :not(:first-child) {
    border-top: 3px solid #ededed;
}


/************* 5.6 Background Colors *************/
.shade-white {
    background: $white;
}

.shade-primary {
    background: $primary;
}

.shade-secondary {
    background: $secondary;
}

.shade-yellow {
    background: $yellow;
}

.shade-red {
    background: $red;
}

.shade-green {
    background: $green;
}

.shade-blue {
    background: $blue;
}

.shade-light {
    background: $light-color;
}

.shade-dark {
    background: $dark-color;
}




/* style for the add new element in Blog*/
/* Style for the main button container */
.main-button-container {
    position: relative;
    width: 150px;
    height: 30px;
    cursor: pointer;
    margin: 0 auto;
}

/* Style for the main button */
.main-button {
    width: 100%;
    height: 100%;
    background-color: #08c1b8; /* Default background color */
    opacity: 30%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover effect for the main button */
.main-button-container:hover .main-button {
    background-color: #08c1b8; /* Background color on hover */
    opacity: 90%;
}

/* Style for the plus sign in the main button */
.plus-sign {
    font-size: 14px;
    color: #fff; /* Plus sign color */
}

/* Style for the additional buttons container */
.additional-buttons {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

/* Style for each additional button */
.additional-button {
    width: 100%;
    height: 30px;
    background-color: #08c1b8; /* Background color for additional buttons */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 5px;
}

/* Hover effect for additional buttons */
.main-button-container:hover .additional-buttons {
    display: flex;
}

/* Hover effect for additional buttons */
.additional-button:hover {
    background-color: #08c1b8; /* Background color on hover for additional buttons */
}











/*  Style for the login pop-up*/

/*body {
    color: #fff;
    background: #63738a;
    font-family: 'Roboto', sans-serif;
}*/

.form-control {
    height: 40px;
    box-shadow: none;
    color: #969fa4;
}

.form-control:focus {
    border-color: #5cb85c;
}

.form-control, .btn {
    border-radius: 3px;
}

.signup-form {
    width: 450px;
    margin: 0 auto;
    padding: 30px 0;
    font-size: 15px;
}

.signup-form h2 {
    color: #636363;
    margin: 0 0 15px;
    position: relative;
    text-align: center;
}

.signup-form h2:before {
    left: 0;
}

.signup-form h2:after {
    right: 0;
}

.signup-form .hint-text {
    color: #999;
    margin-bottom:10px;
    text-align: center;
}

.signup-form form {
    color: #999;
    border-radius: 3px;
    background: #f2f3f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.signup-form .form-group {
    margin-bottom: 20px;
}

.signup-form input[type="checkbox"] {
    margin-top: 3px;
}


.signup-form .row div:first-child {
    padding-right: 10px;
}

.signup-form .row div:last-child {
    padding-left: 10px;
}

.signup-form a {
    color: #fff;
    text-decoration: underline;
}

.signup-form a:hover {
    text-decoration: none;
}

.signup-form form a {
    color: #5cb85c;
    text-decoration: none;
}

.signup-form form a:hover {
    text-decoration: underline;
}  





/* Style for multiple cards with elements */
.bs-icon {
    --bs-icon-size: .75rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: var(--bs-icon-size);
    width: calc(var(--bs-icon-size) * 2);
    height: calc(var(--bs-icon-size) * 2);
    color: var(--bs-primary);
}
.bs-icon-xs {
    --bs-icon-size: 1rem;
    width: calc(var(--bs-icon-size) * 1.5);
    height: calc(var(--bs-icon-size) * 1.5);
}
.bs-icon-sm {
    --bs-icon-size: 1rem;
}
.bs-icon-md {
    --bs-icon-size: 1.5rem;
}
.bs-icon-lg {
    --bs-icon-size: 2rem;
}
.bs-icon.bs-icon-rounded {
    border-radius: .5rem;
}
.bs-icon.bs-icon-primary {
    color: var(--bs-white);
    background: var(--bs-primary);
}
.bs-icon-md {
    --bs-icon-size: 1.5rem;
}

.bs-icon {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: var(--bs-icon-size);
    color: var(--bs-primary);
}

.cat-card {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
    --bs-card-border-radius: 0 px;
}


.card-custom {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-border-width: var(--bs-border-width);
    /*--bs-card-border-color: var(--bs-border-color-translucent);*/
    /*    --bs-card-border-radius: var(--bs-border-radius);*/
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
}

    .card-custom:hover {
        --bs-card-border-color: var(--bs-border-color-translucent);
    }


    /* drop zone*/
﻿.dropzone {
    position: relative;
    overflow: hidden;
    border: 2px dotted rgba(0,0,0,.2);
    background-color: rgba(0,0,0,.09);
    margin-bottom: 20px;
    border-radius: 5px;
}

.dropzone.dropzone-active {
    background-color: #999;
}

.dropzone label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.fileProgress {
    vertical-align: middle !important;
}

.text-icon-light {
    color: #e9ecef;
}





/** Account form  **/
.account-form {
    color: #999;
    border-radius: 3px;
    background: #f2f3f7;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
    padding: 30px;
}

.account-form h2 {
    color: #636363;
    margin: 0 0 15px;
    position: relative;
    text-align: center;
}

.account-form .hint-text {
    color: #999;
    margin-bottom: 10px;
    text-align: center;
}
