/*
* @author Workahr Tech v1.2
* @package Workarh Framework
* @copyright 2023 Workahr Tech Pvt Ltd 
* @website https://www.workahrtech.com
* Created On : 25-04-2023 
*/

body {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #111;
    background-color: #F7F7F7;
    padding: 0;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

.btn {
    font-size: 14px;
    padding: 6px 25px;
}

.fa {
    font-size: 10px;
}

input:focus {
    color: #FFF;
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
select.form-select:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
[type="text"].form-control:focus,
[type="password"].form-control:focus,
[type="email"].form-control:focus,
[type="tel"].form-control:focus,
[contenteditable].form-control:focus {
    box-shadow: inset 0 -1px 0 #ddd;
}

/* H1 to H6 Font Size */

h1 {
    font-size: 30px;
    font-weight: 700;
}

h2 {
    font-size: 26px;
    font-weight: 600;
}

h3 {
    font-size: 20px;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    font-weight: 500;
}

h6 {
    font-size: 14px;
    font-weight: 400;
}

p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: #111;
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #61656f;
}

.form-control,
.form-label,
.form-select {
    font-size: 14px;
}