﻿@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Roboto;
}

html,
body {
    width: 100%;
    height: 100%;
    padding: 0 !important;
}

.flex {
    display: flex;
    align-items: center;
}



h2 {
    color: #5e5c5c;
    font-weight: 500;
    font-size: 24px;
    text-align: left;
}

/****************
________________________________Side bar START
******************************************************/

aside {
    --_color: white;
    --_background-color: #00024c;
    width: var(--Sidebar-width);
    height: 100%;
    background-color: var(--_background-color);
    color: var(--_color);
    position: fixed;
    top: 0;
    left: 0;
}

    aside .logo {
        gap: 5px;
        justify-content: center;
        /*margin-top: 40px;*/
        border-bottom: 2px solid #fff;
        height: 81px;
    }

        aside .logo img {
            width: 46px;
        }

        aside .logo h2 {
            font-weight: 500;
        }

    aside ul {
        list-style-type: none;
    }

        aside ul li {
            padding: 10px;
            margin: 10px 0;
            font-size: 18px;
        }

            aside ul li.active {
                border-left: 5px solid white;
            }

            aside ul li a {
                text-decoration: none;
                color: var(--_color);
            }

/****************
________________________________Side bar END
******************************************************/

/****************
________________________________NavBar START
******************************************************/

nav {
 
    height: 80px;
    justify-content: space-between;
    padding: 0 50px;
    box-shadow: 0px 0px 4px #00000040;
}

    nav .userinfo {
        font-size: 14px;
        font-weight: 300;
    }

    nav .status {
        width: 9px;
        height: 9px;
        background: #ffffff;
        border: 2px solid #f8af23;
        border-radius: 6px;
        position: absolute;
        right: 50px;
        top: 27px;
    }

/****************
________________________________NavBar END
******************************************************/

/****************
________________________________Main Section START
******************************************************/

main {
    margin-left: var(--Sidebar-width);
    width: calc(100% - var(--Sidebar-width));
    padding: 0 10px;
}

    /* Notification Alert Start */

    main .notification {
        background: #f6420a0d;
        border: 1px solid #f6420a45;
        border-radius: 4px;
        color: #ff0301;
        padding: 10px 10px;
        margin-top: 30px;
        gap: 10px;
    }

        main .notification .n_icon {
            width: 26px;
            height: 26px;
            background: #f6420a;
            border-radius: 50%;
            color: white;
            justify-content: center;
        }

/* Notification Alert END */

/* categories Section START */

.categories {
    gap: 22px;
    align-items: stretch;
    justify-content: space-between;
    padding: 10px;
    margin-top: 30px;
    position: relative;
}

    .categories::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 4px;
        background-color: red;
        top: 130px;
        background: #efefef;
    }

    .categories .card {
        gap: 10px;
        width: 182px;
        background: #ffffff;
        border-radius: 6px;
        box-shadow: 0px 0px 4px #00000029;
        padding: 17px 3px;
        flex-shrink: 0;
        cursor: pointer;
        position: relative;
    }

        .categories .card.active::after {
            content: "";
            position: absolute;
            z-index: 1;
            width: 100%;
            height: 4px;
            top: 120px;
            background: red;
        }

        .categories .card .image {
            width: 60px;
        }

            .categories .card .image img {
                width: 100%;
            }

        .categories .card p {
            color: #454545;
            font-size: 12px;
        }

/* categories Section END */

/* Legal Identity Section START */

.LegalIdentity {
    margin-top: 30px;
    padding-bottom: 100px;
}

    .LegalIdentity form .name_section {
        padding-bottom: 30px;
        border-bottom: 3px solid #00000029;
    }

        .LegalIdentity form .name_section h2 {
            color: #5e5c5c;
            font-weight: 500;
            font-size: 24px;
            text-align: left;
        }

        .LegalIdentity form .name_section label {
            display: block;
            margin-top: 20px;
            margin-bottom: 10px;
            color: #929292;
            font-size: 16px;
        }

        .LegalIdentity form .name_section input {
            width: 500px;
            height: 45px;
            border-radius: 5px;
            font-size: 18px;
            padding: 10px;
        }

/* Legal Identity Section END */

/* Checkbox_section START */

.checkbox_section {
    margin-top: 30px;
    padding-bottom: 50px;
    border-bottom: 3px solid #00000029;
}

    .checkbox_section .ckeckboxes {
        margin-top: 30px;
        width: 400px;
        align-items: flex-start;
    }

    .checkbox_section .check {
        flex-wrap: wrap;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-left: 20px;
    }

    .checkbox_section .ckeckboxes input {
        margin-right: 20px;
        background: #ffffff;
        border: 1.5px solid #1877f2;
        border-radius: 2px;
        width: 21px;
        height: 21px;
        flex-shrink: 0;
    }

.red {
    color: red;
    display: block;
    font-size: 14px;
}

/* Checkbox_section END */

/* submit section START */

.submit_section {
    margin-top: 30px;
}

    .submit_section h2 {
        font-weight: 400;
    }

    .submit_section .selected_accreditation {
        margin: 40px;
        gap: 60px;
    }

    .submit_section .add_accreditation label {
        display: block;
        margin-bottom: 10px;
    }

    .submit_section .add_accreditation input[type="text"] {
        width: 500px;
        border-radius: 5px;
        font-size: 18px;
        padding: 10px;
    }

    .submit_section .add_accreditation input[type="button"] {
        border-radius: 5px;
        font-size: 18px;
        padding: 10px;
        background: #1877f2;
        border: 1px solid #cccccc;
        border-radius: 5px;
        color: white;
    }

    .submit_section .add_accreditation .status_button {
        margin-top: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }

        .submit_section .add_accreditation .status_button button {
            width: 194px;
            height: 50px;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: cover;
            border: 2px solid rgba(15, 133, 68, 1);
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            font-size: 20px;
            cursor: pointer;
        }

        .submit_section .add_accreditation .status_button input[type="submit"] {
            width: 194px;
            height: 50px;
            background: rgba(24, 119, 242, 1);
            border: 1px solid rgba(204, 204, 204, 1);
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            color: white;
            font-size: 20px;
            cursor: pointer;
        }

/* submit section END */

/****************
________________________________Main Section END
******************************************************/



@media(max-width:1100px) {
    .sidenav {
        visibility: hidden;
    }

    #myid {
        display: block !important;
    }

    .sidenav a:first-child {
        display: block;
    }

    .flex {
        width: 100%;
        margin: 0;
    }

    main {
        margin-left: 0;
        width: 100%;
    }
}



.main {
    margin-left: 160px; /* Same as the width of the sidenav */
    font-size: 28px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}

.mydot {
    position: absolute;
    margin: 0 !important;
    top: 7px;
    left: 42px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid black;
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    z-index: 1;
}

.btn {
    border: none;
    outline: none;
    padding: 10px 16px;
    background-color: #3a579d;
    cursor: pointer;
    font-size: 18px;
}

    .sidenav > .active, .btn:hover {
        background-color: #fff;
        color: black;
    }



#myid {
    display: none;
}

.closebtn {
    display: none;
}

.sidenav .closebtn {
    font-size: 50px;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 0px;
    right: 17px;
}

input[type='text'] {
    border-radius: 5px;
    border: 1px solid #CDCDCD;
    background: #FFF;
}


.btn-primary {
    border-radius: 5px;
    border: 1px solid #CDCDCD;
    background: #00024C;
    padding: 6px 35px;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

table > tfoot {
    background: #F6F6F6;
}

td, th {
    font-size: 14px !important;
    padding: 10px !important;
}

.form-nav {
    margin: 10px 10px;
}

    .form-nav > a {
        text-decoration: none;
    }

.form-nav-item {
    position: relative;
    border-radius: 6px;
    padding: 5px 15px;
    margin: 0px 10px 15px 0px;
    display: flex;
    justify-content: center;
    background: #FFF;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
}

    .form-nav-item div {
        display: flex;
        align-items: center;
        padding: 0px 5px;
    }

        .form-nav-item div img {
            width: 52px;
            height: 52px;
        }

        .form-nav-item div > strong {
            color: #00024C;
            font-family: Roboto;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

    .form-nav-item .bar {
        position: absolute;
        bottom: -13px;
        height: 5px;
        width: 100%;
        background-color: #EFEFEF;
    }

        .form-nav-item .bar.active {
            background-color: #1877F2;
        }

.info-div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #737373;
    background: #F6F7FF;
}

    .info-div div {
        padding: 5px
    }

.form-check-inline {
    display: flex;
    align-items: center;
}

.btn.btn-primary2 {
    border-radius: 5px;
    border: 2px solid #5CB85C;
    background: #FFF;
    padding: 6px 35px;
    font-size: 14px;
    color: #5CB85C;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.colored-toast.swal2-icon-success {
    background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
    background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
    background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
    background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
    background-color: #87adbd !important;
}

.colored-toast .swal2-title {
    color: white;
}

.colored-toast .swal2-close {
    color: white;
}

.colored-toast .swal2-html-container {
    color: white;
}

label {
    color: #000;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.form-check-input[type=checkbox] {
    border-radius: 1px;
    border: 1px solid #007BFF;
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.error-msg {
    color: red;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
}
