:root {
    --color-blue: #0075ff;
    --orange-color: #f59e0b;
    --green-color: #22c55e;
    --color-red: red;
    --text-color: #888;
}

.container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}


/* 
****************************************************
==========                          ==========
                flex box classes
==========                          ==========
****************************************************
*/

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.d-inline-block {
    display: inline-block;
}

.d-block {
    display: block;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-left {
    justify-content: left;
}

.justify-content-between {
    justify-content: space-between;
}

.align-items-center {
    align-items: center;
}

.grid-gap-20 {
    gap: 20px;
}

/* 
****************************************************
==========                          ==========
                padding classes
==========                          ==========
****************************************************
*/

.pr-5 {
    padding-right: 5px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pl-30 {
    padding-left: 30px;
}


/* 
****************************************************
==========                          ==========
                margin classes
==========                          ==========
****************************************************
*/

.m-20 {
    margin: 20px;
}

.mb-5px {
    margin-bottom: 5px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-35 {
    margin-top: 35px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-15 {
    margin-right: 15px;
}

.ml-10 {
    margin-left: 10px;
}

@media (min-width: 768px) {
    .mr-md-10 {
        margin-right: 10px;
    }
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* 
****************************************************
==========                          ==========
                background classes
==========                          ==========
****************************************************
*/

.bg-eee {
    background-color: #EEE;
}

.bg-white {
    background-color: white;
}

/* 
****************************************************
==========                          ==========
                border-radius classes
==========                          ==========
****************************************************
*/

.border-radius-6 {
    border-radius: 6px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-circle {
    border-radius: 50%;
}

/* 
****************************************************
==========                          ==========
                position classes
==========                          ==========
****************************************************
*/

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* 
****************************************************
==========                          ==========
                text classes
==========                          ==========
****************************************************
*/

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-capitalize {
    text-transform: capitalize;
}

/* 
****************************************************
==========                          ==========
                font-size classes
==========                          ==========
****************************************************
*/

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.font-25 {
    font-size: 25px;
}

/* 
****************************************************
==========                          ==========
                shadow classes
==========                          ==========
****************************************************
*/

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* 
****************************************************
==========                          ==========
                colors classes
==========                          ==========
****************************************************
*/

.icon-bg-color-blue {
    background-color: rgb(0 117 255 / 20%);

}

.color-blue {
    color: var(--color-blue);
}

.icon-bg-color-orange {
    background-color: rgb(245 158 11 / 20%);
}

.color-orange {
    color: var(--orange-color)
}

.icon-bg-color-green {
    background-color: rgb(34 197 94 / 20%);
}

.icon-bg-color-red {
    background-color: rgb(244 67 54 / 20%);
}

.color-green {
    color: var(--green-color);
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-orange {
    background-color: var(--orange-color);
}

.bg-green {
    background-color: var(--green-color);
}

.bg-red {
    background-color: red;
}

.color-gray {
    color: var(--text-color);
}

.color-red {
    color: var(--color-red);
}

/* 
****************************************************
==========                          ==========
                fonts classes
==========                          ==========
****************************************************
*/

.font-weight-bold {
    font-weight: bold;
}

.font-weight-normal {
    font-weight: normal;
}


.w-100 {
    width: 100%;
}