@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@100;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300&display=swap');
@import url('./controls/text-box.css');
@import url('./controls/text-area.css');
@import url('./controls/dropdown.css');
@import url('./controls/pagination.css');
@import url('/styles/fontawesome/css/all.min.css');

/* Colors */
:root{
    --main-color: rgba(224, 63, 63, 1); /* #E03F3F */
    --main-hover-color: rgba(236, 65, 65, 1); /* #ec4141 */
    --dark-black-color: rgba(0, 0, 1, 1); /* #000001 */
    --primary-black-color: rgba(25, 25, 25, 1); /* #191919 */
    --secondary-black-color: rgba(15, 15, 15, 1); /* #0F0F0F */
    --white-color: rgba(255, 255, 255, 1); /* #FFFFFF */
    --inactive-white-color: rgba(221, 221, 221, 1); /* #DDDDDD */
    --hover-gray-color: rgba(47, 47, 47, 1); /* #2F2F2F */
    --green-color: rgba(109, 190, 67, 1); /* #6DBE43 */
    --orange-color:rgba(242, 111, 32, 1); /* #F26F20 */
    --red-color: rgba(226, 6, 31, 1); /* #E2061F */
    --cyan-color: rgba(54, 170, 204, 1); /* #36AACC */
    --graph-color-1: rgba(247, 180, 103, 1); /* #F7B467 */
    --graph-color-2: rgba(236, 214, 181, 1); /* #ECD6B5 */
    --graph-color-3: rgba(184, 202, 196, 1); /* #B8CAC4 */
    --label-color: rgba(128, 127, 127, 1); /* #807F7F */
    --light-bg-color: rgba(245, 247, 248, 1); /* #F5F7F8 */
    --dark-shadow-color: rgba(0, 0, 0, 0.16); /* #00000029 */
    --light-shadow-color: rgba(0, 0, 0, 0.078); /* #00000014 */
    --border-color: rgba(232, 232, 232, 1); /* #E8E8E8; */
    --table-header-color: rgba(248, 248, 248, 1); /* #F8F8F8 */
    --dropzone-active-border-color: rgba(170, 170, 170, 1); /* AAAAAA */
    --main-background-color:rgba(0, 0, 0, 0.376); /* #00000060 */
    --light-gray:rgba(248, 248, 248, 1); /* #F8F8F8 */
    --toggle-label-color: rgba(75, 75, 75, 1); /* #4B4B4B */
    --message-field-color: rgba(237, 237, 237, 1); /* #EDEDED */
}
/****************************** End of Colors **************************************/

/* Font */
html{
    font-family: 'Public Sans', sans-serif;
    font-size: 16px;
}

body{
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
}

/****************************** End of Font ***************************************/

/* General Styles */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--white-color);
}

html,
body{
    background-color: var(--dark-black-color);
    min-height: 100vh;
    overflow: auto;
}


.ar{
    direction: rtl;
    text-align: right;
}

.en{
    direction: ltr;
    text-align: left;
}

.mg-top{
    padding-top: 150px;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #00000000 0%, #000001 100%);
    z-index: 0;
}

.table-auto{
    width: 100%;
}

.pad-end-90{
    padding-inline-end: 90px !important;
}

.no-display{
    display: none !important;
}

.full-img{
    width: 100%;
    height: 100%;
}

.hide{
    visibility: hidden;
}

a{
    cursor: pointer;
    text-decoration: none !important;
}

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

img{
    user-select: none;
}

.pad0{
    padding: 0;
}

.mr0{
    margin: 0;
}

button{
    outline: none;
    border: none;
    background: transparent;
    transition: none !important;
}

button:focus{
    outline: none;
}

:focus{
    outline: none;
}

.btn{
    box-sizing: content-box;
    padding: 10px 45px;
    color: var(--white-color);
    border-radius: 24px;
    cursor: pointer;
    border: none;
    outline: none;
    text-transform: capitalize;
    transition: box-shadow 0.1s ease-in-out;
}

.btn-small{
    padding: 7px 20px;
    font-size: 0.875rem;
}

.btn.btn-light{
    background: var(--main-color);
}

.btn.btn-light:hover{
    background: var(--main-hover-color);
}

.btn.btn-light:active{
    background-color: var(--main-hover-color) !important;
    border: none !important;
    box-shadow: 0 0 15px var(--main-hover-color) !important;
    color: var(--white-color) !important;
}

.btn.btn-small.btn-light:active{
    box-shadow: 0 0 3px var(--main-hover-color) !important;
}

.btn.btn-light:focus{
    color: var(--white-color) !important;
}

.btn.btn-dark{
    background: var(--primary-black-color);
}

.btn.btn-dark:hover{
    background: var(--secondary-black-color);
}

.btn.btn-dark:active{
    background-color: var(--secondary-black-color) !important;
    border: none !important;
    box-shadow: 0 0 15px var(--secondary-black-color) !important;
    color: var(--white-color) !important;
}

.btn.btn-small.btn-dark:active{
    box-shadow: 0 0 3px var(--secondary-black-color) !important;
}

/* Overriding bootstrap styles on (btn) class*/
.btn.focus, .btn:focus {
    box-shadow: none;
    outline: none;
}

.btn:hover{
    color: var(--white-color);
}

section .section-title{
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white-color);
    text-align: center;
}

.rounded-box{
    border: 1px solid var(--label-color);
    background: transparent;
    border-radius: 24px;
    height: 48px;
    padding: 15px;
    font-size: 1rem;
    color: var(--white-color);
    min-width: 250px;
}

.rounded-box::selection{
    color: white;
    background: var(--main-color);
}

.rounded-box::-moz-selection{
    color: white;
    background: var(--main-color);
}

.password{
    position: relative;
    min-width: 250px;

}

.password .rounded-box{
    padding: 15px 60px 15px 15px;
    width: 100% !important;
}

.password .toggler-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 38%;
    right: 22px;
}

.password .toggler-icon img{
    width: 20px;
    height: 14px;
    margin: 0;
}


.radio{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
    color: var(--white-color);
}

.radio-btn{
    position: relative;
    width: fit-content;
}

.radio-btn .radio-check-box{
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.radio-check-box::after{
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 35%;
    top: 10%;
}

.radio-btn input[type="radio"]{
    display: none;
}

.radio-btn input[type="radio"]:not(:checked) ~ .radio-check-box{
    background: transparent;
}

.radio-btn input[type="radio"]:not(:checked) ~ .radio-check-box::after{
    content: '';
    display: none;
}

.radio-btn-text{
    margin: 0;
}




.checkbox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 13px;
}

.checkbox-btn{
    position: relative;
    width: fit-content;
}

.checkbox-btn .input-checkbox{
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid var(--main-color);
    background: var(--main-color);
}

.input-checkbox::after{
    content: '';
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid var(--white-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 35%;
    top: 10%;
}

.checkbox-btn input[type="checkbox"]{
    display: none;
}

.checkbox-btn input[type="checkbox"]:not(:checked) ~ .input-checkbox{
    background: transparent;
}

.checkbox-btn input[type="checkbox"]:not(:checked) ~ .input-checkbox::after{
    content: '';
    display: none;
}

.checkbox-text{
    margin: 0;
}

.row{
    margin: 0;
    row-gap: 30px;
}
