html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*font-family: 'rubik',sans-serif;*/
    /*font-family: 'Poppins',sans-serif;*/
    /*font-family: Arima Madurai !important,sans-serif;*/
    font-family: Inter !important,sans-serif;
    line-height: 1.4;
    font-weight: 400;
    color: #000;
    background-color: #fff;
    font-size: 17px;
    margin-bottom: 60px;
    /* -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;*/
}

footer {
    font-size: 14px;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

.nav-link:link, .nav-link:visited {
    font-weight: 600 !important;
    color: #000 !important;
}

.nav-link:hover, .nav-link:active {
    color: #cf711f !important;
}

.dropdown-menu {
    background-color: #fae5d3;
    box-shadow: 0 2.4rem 3.1rem rgba(0,0,0,0.15);
}

    .dropdown-menu .dropdown-item:link, .dropdown-menu .dropdown-item:visited {
        font-weight: 500 !important;
        /*color: #000 !important;*/
    }

    .dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:active {
        color: #cf711f !important;
        background-color: #fae5d3;
    }

.card {
    box-shadow: 0 2.4rem 3.1rem rgba(0,0,0,0.15);
    border: 0;
    border-radius: 11px;
    background-color: #ffffff !important;
}


h1 {
    font-weight: 700;
    font-size: 1.5rem;
    /*color: #000 !important;*/
    margin: 10px;
}

h2 {
    font-weight: 600;
    font-size: 1.25rem;
    /*color: #111 !important;*/
    margin: 10px 10px 10px 0;
}

h3 {
    font-weight: 600;
    font-size: 1.25rem;
    /*color: #4F5954 !important;*/
    margin: 10px 10px 10px 0;
}

h4 {
    font-weight: 600;
    font-size: 1.10rem;
    /*color: #4F5954 !important;*/
    margin: 10px 10px 10px 0;
}

.breadcrumb {
    font-size: 16px;
}

    .breadcrumb a {
        /*color: #cf711f;*/
        text-decoration: none;
    }

        .breadcrumb a:hover, .breadcrumb a:active {
            color: #000;
        }

.breadcrumb-item.active {
    color: #000;
}

.btn.btn-primary {
    background-color: #cf711f;
    border-color: #cf711f;
}

    .btn.btn-primary:hover, .btn.btn-primary:active {
        background-color: #cf711f;
        /*border-color: #cf711f;*/
    }

/*.list-group-item a {
    color: #cf711f;
}
*/
.list-group-item a:hover, .list-group-item a:active {
    color: #000;
}

.is-divider {
    height: 3px;
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 1em 0 1em;
    width: 100%;
    max-width: 30px;
    margin-left: auto;
    margin-right: auto;
}

a.ignore-link {
    text-decoration: none;
    color: inherit;
}

.btn.btn-outline-secondary {
    border-color: #000;
    color: #000;
}

    .btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:active {
        border-color: #cf711f;
        background-color: #cf711f;
        color: #fff;
    }


#backtotop {
    bottom: 20px;
    display: none;
    margin: 0 20px 20px 0;
    position: fixed;
    right: 0;
    z-index: 2;
}

    #backtotop button {
        background: url(../assets/img/arrow.png) no-repeat scroll 50% 50% rgba(0, 0, 0, 0.5);
        border: 0 none;
        display: block;
        height: 40px;
        text-decoration: none;
        transition: all 0.1s ease-in-out 0s;
        width: 40px;
        border-radius: 5px;
    }

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 100px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-image: linear-gradient(180deg, #d0368a 0%, #708ad4 99%);
    box-shadow: inset 2px 2px 5px 0 rgba(#fff, 0.5);
}

/* Handle on hover */
/* ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }*/


.clsmyclass table {
    margin: 24px 0;
    max-width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.clsmyclass th {
    padding: 8px 16px;
    border: 1px solid #ccc;
}

.clsmyclass td {
    padding: 8px 16px;
    border: 1px solid #ccc;
}

.clsmyclass blockquote {
    margin: 24px;
    padding: 8px 24px;
    border-left: 4px solid #ccc;
    background: #f9f9f9;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        font-size: 1rem;
    }

    .form-group input {
        padding: 12px 15px;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: white;
    }

        .form-group input:focus {
            outline: none;
            border-color: #4facfe;
            box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
        }

.rtl {
    direction: rtl;
    text-align: right !important;
}

body.rtl .navbar-brand {
    margin-right: 0;
    margin-left: 1rem;
}
