@import url('https://fonts.googleapis.com/css2?family=Varela+Round&display=swap');

:root {



    --radius: .5rem;
    --radius-small: .2rem;

    --i-shadow: 0px 5px 5px rgba(0, 0, 0, 0.205);
    --i-shadow-small: 0px 3px 3px rgba(0, 0, 0, 0.205);
    --bs-font-family: 'Varela Round', sans-serif;

    --color-info: #05abde;
    --color-success: #18a000;
    --color-fail: #c93c05;


    /* Padding-Margin */
    --i-distance: 1rem;
    --i-distance-small: .8rem;
    --i-distance-smaller: .5rem;
    --i-distance-large: 1.5rem;

    --input-padding: 4px 10px 4px 28px;



    --font-size: 1.2rem;
    --font-size-small: 1rem;
    --font-size-smaller: .8rem;
    --font-size-large: 1.4rem;

    --i-shadow-small: 0px 3px 3px rgba(0, 0, 0, 0.205);
    --i-shadow: 6px 6px 10px 3px rgba(0, 0, 0, 0.205);
    --i-shadow-large: 8px 8px 50px 8px rgba(0, 0, 0, 0.205);
}

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: var(--bs-font-family); */
    /* border: 1px solid black !important; */

    /* -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

a,
button,
input[type=submit] {
    cursor: pointer
}

a {
    color: #000;
    text-transform: inherit;
    text-decoration: none;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

a:hover,
a :focus {
    text-decoration: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #000
}

a:focus {
    outline: 0 solid
}

.row {
    margin-left: 0;
    margin-right: 0;
}


.i-body {
    position: relative;
}



/* Scroll Track and Handle-------------------START */
::-webkit-scrollbar {
    width: 4px;
    margin: 0;
    padding: 0;
}

/* @media only screen and (max-width: 768px){
    ::-webkit-scrollbar {
        width: 1px;
        margin: 0;
        padding: 0;
    }
} */

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--color-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--color-text);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-bg-footer);
}

/* Scroll Track and Handle-------------------END */


/* Table-------------START */
tr:nth-child(odd) {
    background-color: var(--color-gray-light);
    color: var(--color-text);
}

/* Table-------------END */


/* Theme-------------START */
.i-theme {
    background-color: var(--color-bg);
    color: var(--color-text);
}

.i-theme-card {
    background-color: var(--color-bg-card);
    color: var(--color-text);
}

.div-theme-toggle {
    position: fixed;
    top: 20%;
    right: 5%;
}

/* Theme-------------END */


/* Toggle Switch Theme-----------START */
.switch-theme {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 22px;
    background-color: transparent;
}

.switch-theme input {
    opacity: 0;
    width: 0;
    height: 0;
}

.theme-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-text);
    -webkit-transition: .4s;
    transition: .4s;
    z-index: 1000;
}

.theme-slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 0px;
    bottom: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 0px 15px #2020203d;
    box-shadow: 0 0px 15px #2020203d;
    z-index: 1000;
}

.switch-theme>input:checked+.theme-slider {
    background-color: var(--color-primary);
}

.switch-theme>input:focus+.theme-slider {
    box-shadow: 0 0 1px var(--color-primary);
}

.switch-theme>input:checked+.theme-slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

/* Rounded theme-sliders */
.theme-slider.round {
    border-radius: 14px;
}

.theme-slider.round:before {
    border-radius: 50%;
}

/* Toggle Switch Theme-----------END */








/* Buttons-------------START */
.i-btn {
    font-weight: bold;
    padding: 8px 25px;
    border: 1px solid var(--color-gray);
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius);
    transition: all .2s ease-in;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease-in;
}



.i-btn-small {
    cursor: pointer;
    font-size: 11px;
    padding: 2px 10px;
    border-radius: 5px;
    transition: all .2s ease-in;
    text-align: center;
    text-decoration: none;
}

.i-btn-border {
    background-color: unset;
    border: 1px solid var(--color-primary);
}

.i-btn:hover {
    box-shadow: var(--i-shadow-small);
    color: var(--color-white);
    /* transform: scale(105%); */
}

.i-btn-border:hover {
    background-color: var(--color-primary);
}


.i-btn-close {
    color: var(--color-text);
    font-size: 20px;
    height: 40px;
    width: 40px;
    background-color: var(--color-bg);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.i-btn-info {
    color: var(--color-white);
    background-color: var(--color-info);
}

.i-btn-success {
    color: var(--color-white);
    background-color: var(--color-success);
}

.i-btn-fail {
    color: var(--color-white);
    background-color: var(--color-fail);
}


.i-btn-close {
    color: var(--color-primary);
    font-size: 20px;
    height: 40px;
    width: 40px;
    background-color: transparent;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.i-right {
    left: 95% !important;
}

/* Buttons-------------END */


/*  Edit Profile Picture-------------START */
.i-profile-pic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.3s ease;
    width: fit-content;
    height: fit-content;
}


.i-profile-pic img {
    object-fit: cover;
    z-index: 0;
}

.i-profile-pic>label {
    z-index: -1;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 100%;
    height: 100%;
    transition: background-color 0.2s ease-in-out;
    color: rgb(250, 250, 250);

}

.i-profile-pic:hover label {
    background-color: var(--color-gray-light);
    z-index: 100;
    border-radius: 100px;
}

/*  Edit Profile Picture-------------END */



/* Text-------------START */
.text-decore-none {
    text-decoration: none;
}

.text-white {
    color: var(--color-white);
}

.text-primary {
    color: var(--color-primary) !important;
}

/* Text-------------END */



/* Cards-------------START */
.i-card {
    background-color: var(--color-bg-nav);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all .5s ease-out;
    text-decoration: none;
    overflow: hidden;
}

/* Cards-------------END */


/* Shadows-------------START */
.i-shadow {
    box-shadow: var(--i-shadow);
}

.i-shadow-small {
    box-shadow: var(--i-shadow-small);
}

/* Shadows-------------END */


/* Border-------------START */
.i-border-none {
    border: none;
}

/* Border-------------END */



/* Input Groups-------------START */

.i-input-group {
    position: relative;
    /* margin-bottom: var(--i-distance-large); */
    border-bottom: 1px solid var(--color-primary);
    background-color: var(--color-bg-nav);
    color: var(--color-text);
    height: fit-content;
}

.i-input-group.input-theme1 {
    border: 1px solid var(--color-primary);
    border-radius: 10px 0 10px 0;
}

.i-input-group.input-theme1 input:disabled {
    background-color: #47464610;
}

.i-input-group.contact-us>span,
.i-input-group.contact-us>label {
    margin-left: var(--i-distance-smaller);
    transition: all 200ms ease-in;
}





.i-input-group>input,
.i-input-group>textarea {
    width: 100%;
    font-size: var(--font-size-large);
    border: none;
    color: var(--color-primary);
    outline: none;
    padding: var(--input-padding);
    background: none;
}

.i-input-group.selection>select {
    width: 100%;
    font-size: var(--font-size-large);
    border: none;
    border-radius: 10px 0 10px 0;
    color: var(--color-primary);
    outline: none;
    padding: var(--input-padding);
    background: none;
}



.i-input-group.selection>select {
    padding-left: 1.5rem;
}

.i-input-group>span {
    position: absolute;
    left: var(--i-distance-smaller);
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-primary);
    cursor: pointer;
    font-size: var(--font-size-smaller);
}

.input-right-btn {
    position: absolute;
    width: fit-content;
    min-width: 80px;
    height: 100%;
    /* text-align: center; */
    font-weight: bold;
    right: -0%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px 0 10px 0;
    transition: all ease-out .2s;
}

button:active,
.input-right-btn:active {
    background-color: var(--color-seconday);
}


.i-input-group>label {
    margin: auto;
    font-size: var(--font-size);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 2rem;
    transition: all 200ms ease-in;
    /* background-color: white; */
    color: var(--color-gray);
    cursor: text;

    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.i-input-group>.i-placeholder:hover,
.i-input-group>textarea:hover~.i-placeholder,
.i-input-group>textarea:focus~.i-placeholder,
.i-input-group>textarea:not(:placeholder-shown)~.i-placeholder,
.i-input-group>input:hover~.i-placeholder,
.i-input-group>input:focus~.i-placeholder,
.i-input-group>input:not(:placeholder-shown)~.i-placeholder {
    top: -5px;
    left: var(--i-distance-smaller);
    font-size: var(--font-size-small);
    color: var(--color-text);
    background-color: var(--color-bg);
    border-radius: 10px 0 10px 0;
    padding: 0px 1rem;
}

.i-input-group>.error {
    /* position: absolute; */
    left: 0;
    top: 100%;
    width: 100%;
    margin-top: 0.61rem;
    font-size: .875rem;
    color: #e04f1a;
}



.i-input-group>textarea:hover~span,
.i-input-group>textarea:focus~span,
.i-input-group>textarea:not(:placeholder-shown)~span {
    top: 1rem;
}



.i-input-theme1 {}

.i-input-theme1>label {
    /* width: fit-content; */
    width: 80px;
}

/* Input Groups-------------END */



/* Height-Width-------------START */
.i-h-100vh {
    height: 100vh;
}

/* Height-Width-------------END */



/* Text-------------START */
.i-text-primary {
    color: var(--color-primary);
}

.i-text-style-none {
    text-decoration: none;
}

/* Text-------------END */



/* Image Container-------------START */
.circle-img-container {
    width: 40px;
    height: 40px;
    padding: 5px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.circle-img-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Image Container-------------END */