* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,body {
    height: 100%;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.58;
    color: #333;
    background-color: #f4f4f4;
    height: 100%;
}

/*body:before {
    height: 50%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #128ff2;
    content: "";
    z-index: 0;
}*/

.clearfix:after {
    display: block;
    content: "";
    clear: both;
}

.hidden {
    display: none;
}

.form-control {
    width: 100%;
    min-height: 38px;
    font-size: 15px;
    border: 1px solid #c8c8c8;
}

.form-group {
    margin-bottom: 15px;
}

input {
    padding-left: 10px;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.7em;
}

a {
    color: #128ff2;
}

button {
    box-shadow: none;
    border: 1px solid transparent;
    font-size: 14px;
    outline: none;
    line-height: 100%;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0.6rem 1rem;
    border-radius: 2px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    min-height: 38px;
}

button.default {
    background-color: #e8e8e8;
    color: #333;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
}

button.primary {
    background-color: #128ff2;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
}

button.accent {
    background-color: #ff4743;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12);
    color: #fff;
}

#username-page {
    text-align: center;
}

.username-page-container {
    background: #fff;
    box-shadow: 0 1px 11px rgba(0, 0, 0, 0.27);
    border-radius: 2px;
    width: 100%;
    max-width: 500px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 35px 35px 35px;
    min-height: 250px;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.username-page-container .username-submit {
    margin-top: 10px;
}


#chat-page {
    position: relative;
    height: 100%;
}

.chat-container {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    box-shadow: 0 1px 11px rgba(0, 0, 0, 0.27);
    margin-top: 30px;
    height: calc(100% - 60px);
    max-height: 600px;
    position: relative;
}

#chat-page ul {
    list-style-type: none;
    background-color: #FFF;
    margin: 0;
    overflow: auto;
    overflow-y: scroll;
    padding: 0 20px 0px 20px;
    height: calc(100% - 150px);
}

#chat-page #messageForm {
    padding: 20px;
}

#chat-page ul li {
    line-height: 1.5rem;
    padding: 10px 20px;
    margin: 0;
    border-bottom: 1px solid #f4f4f4;
}

#chat-page ul li p {
    margin: 0;
}

#chat-page .event-message {
    width: 100%;
    text-align: center;
    clear: both;
}

#chat-page .event-message p {
    color: #777;
    font-size: 14px;
    word-wrap: break-word;
}

#chat-page .chat-message {
    padding-left: 68px;
    position: relative;
}

#chat-page .chat-message i {
    position: absolute;
    width: 42px;
    height: 42px;
    overflow: hidden;
    left: 10px;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 42px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-style: normal;
    text-transform: uppercase;
}

#chat-page .chat-message span {
    color: #333;
    font-weight: 600;
}

#chat-page .chat-message p {
    color: #43464b;
}

#messageForm .input-group input {
    float: left;
    width: calc(100% - 85px);
}

#messageForm .input-group button {
    float: left;
    width: 80px;
    height: 38px;
    margin-left: 5px;
}

.chat-header {
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #ececec;
}

.chat-header h2 {
    margin: 0;
    font-weight: 500;
}

.connecting {
    padding-top: 5px;
    text-align: center;
    color: #777;
    position: absolute;
    top: 65px;
    width: 100%;
}


@media screen and (max-width: 730px) {

    .chat-container {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 480px) {
    .chat-container {
        height: calc(100% - 30px);
    }

    .username-page-container {
        width: auto;
        margin-left: 15px;
        margin-right: 15px;
        padding: 25px;
    }

    #chat-page ul {
        height: calc(100% - 120px);
    }

    #messageForm .input-group button {
        width: 65px;
    }

    #messageForm .input-group input {
        width: calc(100% - 70px);
    }

    .chat-header {
        padding: 10px;
    }

    .connecting {
        top: 60px;
    }

    .chat-header h2 {
        font-size: 1.1em;
    }
}
@font-face {
    font-family: gotham;
    src: url(../../static/font/GothaProBlaIta.otf);
}

/* Main Wrapper Styling Goes Here */
#main-wrapper {
    display: flex;
}
main {
    height: 100vh;
    overflow-y: scroll;
    background-color: #F6F9FC;
}
/* Main Wrapper Styling Ends Here */



/* Sidebar Styling Goes Here */
/*aside {
    flex: 0.1;
    background: rgba(3, 0, 7, 0.73);
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
}

aside .container a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

aside .container a .row {
    display: block;
    text-align: center;
}

aside .container a .row i {
    font-size: 2.5rem;
}

@media screen and (max-width: 768px) {
    aside .container a .row i {
        font-size: 1.5rem;
    }

    aside .container a .row p {
        font-size: 0.5rem;
    }
}

aside .container a .row p {
    margin-top: unset;
    color: #777777;
}*/

aside {
    z-index: 9999;
}

/* Sidebar Styling Ends Here */



/* Main Common Section Styling Goes Here */
main {
    background: #f5f7f9;
}
/* Main Common Section Styling Ends Here */



/* Dashboard Section Styling Goes Here */
#dashboard-view {

}

#dashboard-view .container .row .col-md-2 {
    margin-top: 5px;
    margin-bottom: 5px;
}

#dashboard-view .container .row .col-md-3 .card {
    /*height: 150px;*/
    background: rgba(3, 0, 7, 0.73);
    padding: 20px;
}

#dashboard-view .container .row .col-md-3 .card .card-head,
#dashboard-view .container .row .col-md-3 .card .card-body {
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

#dashboard-view .container .row .col-md-3 .card .card-head p {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: unset;
    margin-top: unset;
}

#dashboard-view .container .row .col-md-3 .card .card-head i {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dashboard-view .container .row .col-md-2 .card .card-body p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: unset;
    margin-top: unset;
}

#dashboard-view .container .row .col-md-2 .card .card-body {
    padding: unset;
}
/* Dashboard Section Styling Ends Here */



/* Base Styling Attributes Goes Here */
p {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.card {
    color: black!important;
    background: #fff!important;
    border: 3px solid rgb(255, 172, 0);
}

.container {
    width: unset!important;
    max-width: unset!important;
}

/* width */
::-webkit-scrollbar {
    width: 14px;
    height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(3, 0, 7, 0.73);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.btn {
    padding: .375rem 14px!important;
}

.searchBox {
    position: relative;
    background: #fff;
    height: 60px;
    border-radius: 40px;
    padding: 10px;

}

.searchBox:hover > .searchInput {
    width: 240px;
    padding: 0 6px;
}

@media screen and (max-width: 768px) {

    .searchButton {
        width: unset!important;
    }

    .searchInput {
        width: 0px;
    }

    .searchBox:hover > .searchInput {
        width: 240px;
        padding: 0 6px;
    }
}

.searchBox:hover > .searchButton {
    background: white;
    color : #000;
}

.searchButton {
    color: black;
    float: right;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    border: none;
}

.searchInput {
    border:none;
    background: none;
    outline:none;
    float:left;
    padding: 0;
    color: black;
    font-size: 16px;
    transition: 0.4s;
    line-height: 40px;
    width: 0px;
}

.searchInput:focus {
    width: 240px;
    background: transparent;
}

@media screen and (max-width: 620px) {
    .searchBox:hover > .searchInput {
        width: 150px;
        padding: 0 6px;
    }
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-color: transparent !important;
    background-image: none !important;
    color: -internal-light-dark(black, white) !important;
}

/* Base Styling Attributes Ends Here */



/* Navbar Styling Goes Here */
nav {
    width: 100%;
    background: white;
}

nav .collapse ul li a {
    color: #000;
    font-size: 1.2rem;
}

nav .navbar-brand {
    color: #000;
    font-size: 16px;
}
/* Navbar Styling Ends Here */


/* Colors Of The Icon Styling Goes Here */
.bi-file-earmark-font {
    color: red;
}
.bi-file-earmark-spreadsheet-fill {
    color: #28a745;
}
/* Colors Of The Icon Styling Ends Here */

/* Dashboard Section Styling Goes Here */
#dashboard-view {

}

#dashboard-view .container .row .col-md-2 {
    margin-top: 5px;
    margin-bottom: 5px;
}

#dashboard-view .container .row .col-md-3 .card {
    /*height: 150px;*/
    background: rgba(3, 0, 7, 0.73);
    padding: 20px;
}

#dashboard-view .container .row .col-md-3 .card .card-head,
#dashboard-view .container .row .col-md-3 .card .card-body {
    align-items: center;
    justify-content: center;
    color: black;
    text-align: center;
}

#dashboard-view .container .row .col-md-3 .card .card-head p {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: unset;
    margin-top: unset;
}

#dashboard-view .container .row .col-md-3 .card .card-head i {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dashboard-view .container .row .col-md-3 .card .card-body p {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: unset;
    margin-top: unset;
    color: #0000004a!important;
}

#dashboard-view .container .row .col-md-3 .card .card-body {
    padding: unset;
}

.line {
    width: 150px;
    height: 5px;
    background:  rgb(255, 172, 0);
    border-radius: 50px;
}

.card {
    color: black!important;
    background: white!important;
    border: none;
    box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 3%);
    border-radius: 0.25rem;
}

.highcharts-color-0 {
    fill:  rgb(255, 172, 0);
    stroke:  rgb(255, 172, 0);
}

#pie-chart-losses .highcharts-color-0 {
    fill: rgb(255, 0, 5);
    stroke:  rgb(255, 0, 5);
}

#pie-chart-incomes .highcharts-color-0 {
    fill: #28a745;
    stroke:  #28a745;
}

.card i, .card p, .card h1, .card h3, .card h4 {
    color: #000!important;
}
/* Dashboard Section Styling Ends Here */



/* Sidebar Invoker Styling Goes Here */
/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins" , sans-serif;
}
.sidebar{
    /*position: fixed;
    left: 0;
    top: 0;*/
    height: 100%;
    width: 78px;
    background: #fff; /*11101D*/
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
}
.sidebar.open{
    width: 250px;
}
.sidebar .logo-details{
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}
.sidebar .logo-details .icon{
    opacity: 0;
    transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
    color: #003A77;
    font-family: gotham;
    font-size: 24px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
    opacity: 1;
}
.sidebar .logo-details #btn{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 22px;
    transition: all 0.4s ease;
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
    text-align: right;
}
.sidebar i{
    color: #000;
    height: 60px;
    min-width: 50px;
    font-size: 28px;
    text-align: center;
    line-height: 60px;
}
.sidebar .nav-list{
    margin-top: 20px;
    height: 100%;
}
.sidebar li{
    position: relative;
    margin: 8px 0;
    list-style: none;
}
.sidebar li .tooltip{
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transition: 0s;
}
.sidebar li:hover .tooltip{
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
}
.sidebar.open li .tooltip{
    display: none;
}
.sidebar input{
    font-size: 15px;
    color: #000;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 100%;
    width: 50px;
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #fff;/*1d1b31*/
}
.sidebar.open input{
    padding: 0 20px 0 50px;
    width: 100%;
}
.sidebar .bx-search{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    background: #fff;/*1d1b31*/
    color: #000;
}
.sidebar.open .bx-search:hover{
    background: #fff;/*1d1b31*/
    color: #000;
}
.sidebar .bx-search:hover{
    background: #FFF;
    color: #11101d;
}
.sidebar li a{
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
    background: #fff; /*11101D*/
}
.sidebar li a:hover{
    background: #FFF;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.sidebar li a .links_name{
    color: #000;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}
.sidebar.open li a .links_name{
    opacity: 1;
    pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
    transition: all 0.5s ease;
    color: #000; /*11101D*/
}
.sidebar li i{
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 12px;
}
.sidebar li.profile{
    position: fixed;
    /*height: 60px;*/
    width: 78px;
    left: 0;
    bottom: -8px;
    /*padding: 10px 14px;*/
    padding: 10px;
    background: #fff; /*1d1b31*/
    transition: all 0.5s ease;
    overflow: hidden;
}
.sidebar.open li.profile{
    width: 250px;
}
.sidebar li .profile-details{
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.sidebar li img{
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
    font-size: 15px;
    font-weight: 400;
    color: #000;
    white-space: nowrap;
}
.sidebar li.profile .job{
    font-size: 12px;
}
.sidebar .profile #log_out{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #fff; /*1d1b31*/
    width: 100%;
    height: 60px;
    line-height: 60px;
    border-radius: 0px;
    transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
    width: 50px;
    padding-right: 75px;
    background: none;
}
.home-section{
    /*position: relative;*/
    /*background: #E4E9F7;*/
    min-height: 100vh;
    top: 0;
    left: 78px;
    width: calc(100% - 78px);
    transition: all 0.5s ease;
    z-index: 2;
}
.sidebar.open ~ .home-section {
    left: 250px;
    width: calc(100% - 250px);
}
.home-section .text{
    display: inline-block;
    color: #fff; /*11101d*/
    font-size: 25px;
    font-weight: 500;
    margin: 18px
}
/* Sidebar Invoker Styling Ends Here */


/* Tables */
.table td, .table th {
    text-align: center;
    padding: .75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}
/* Tables */

/* General Styling */
.light-blue-bg {
    border-radius: 0;
    border: 0;
    outline: 0;
    background: #0076bf!important;
    color: white;
}

.light-blue-border {
    border: 1px solid #0076bf!important;
    outline: 0;
    border: 0;
    border-radius: 0;
}

.btn-light {
    color: #212529;
    background-color: #fff;
    border-color: #fff;
}

label, p {
    font-size: 14px;
}
/* General Styling */

/* webkit requires explicit width, height = 100% of sceeen */
/* webkit also takes margin into account in full screen also - so margin should be removed (otherwise black areas will be seen) */
#element:-webkit-full-screen {
    width: 100%;
    height: 100%;
    margin: 0;
}

#element:-moz-full-screen {
    margin: 0;
}

#element:-ms-fullscreen {
    margin: 0;
}

/* W3C proposal that will eventually come in all browsers */
#element:fullscreen {
    margin: 0;
}

/*::-webkit-scrollbar {
    display: none;
}*/

nav .navbar-brand {
    color: #c7c6c6;
    font-size: 16px;
}

button {
    background: transparent;
    border: 0;
    outline: 0;
}

.modal-backdrop {
    z-index: 1!important;
}

/* Help Btn */
.help {
    z-index: 9999;
    padding: 10px 12px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0.5rem 1rem rgb(20 40 60 / 3%);
    cursor: pointer;
}

.help-container {
    position: relative;
}

.suggestion {
    position: absolute;
    left: 50%;
    opacity: 0;
    visibility: hidden;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    transition: all .3s ease-in-out;
    background: white;
    padding: 12px 20px;
}

.help-container:hover .suggestion {
    opacity: 1;
    left: -140px;
    visibility: visible;
}

.help i {
    font-size: 1.5rem!important;
    color: black!important;;
    font-weight: 900!important;
    display: flex;
}
/* Help Btn */

input[placeholder] { text-overflow: ellipsis; }
::-moz-placeholder { text-overflow: ellipsis; } /* firefox 19+ */
input:-moz-placeholder { text-overflow: ellipsis; }

.preloader {
    /*фиксированное позиционирование*/
    position: fixed;
    /* координаты положения */
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    /* фоновый цвет элемента */
    background: #ffffff;
    /* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
    z-index: 999999;
}

.preloader__row {
    position: relative;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin-top: -35px;
    margin-left: -35px;
    text-align: center;
    animation: preloader-rotate 2s infinite linear;
}

.preloader__item {
    position: absolute;
    display: inline-block;
    top: 0;
    background-color: #003A77;
    border-radius: 100%;
    width: 35px;
    height: 35px;
    animation: preloader-bounce 2s infinite ease-in-out;
}

.preloader__item:last-child {
    top: auto;
    bottom: 0;
    animation-delay: -1s;
}

@keyframes preloader-rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-bounce {

    0%,
    100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.loaded_hiding .preloader {
    transition: 0.3s opacity;
    opacity: 0;
}

.loaded .preloader {
    display: none;
}

.kanban {
    display: flex;
    padding: 30px;
    /*background: #009578;*/
    border-radius: 5px;
}

.kanban * {
    font-family: sans-serif;
}

.kanban__column {
    flex: 1;
    border-right: 1px solid black;
    padding: 12px;
}

.kanban__column:last-child {
    border: 0;
}

/*.kanban__column:not(:last-child) {
    margin-right: 30px;
}*/

.kanban__column-title {
    margin-bottom: 20px;
    font-size: 30px;
    color: black;
    user-select: none;
    border-bottom: 1px solid black;
}

.kanban__item-input {
    padding: 10px 15px;
    box-sizing: border-box;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}

.kanban__dropzone {
    height: 10px;
    transition: background 0.15s, height 0.15s;
}

.kanban__dropzone--active {
    height: 20px;
    background: rgba(0, 0, 0, 0.25);
}

.kanban__add-item {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


/* Auth Section Style Goes Here */
.auth-section {
    height: 100vh;
}

.auth-section .row, .auth-section .row .col-md-6 {
    height: 100%;
}

.auth-section .row .col-md-6 .sign-in-auth-bg {
    background-image: url(https://rasulov.uz/thumb/2/JZTlRpIclQ9M14IiUVzE5g/1920r1333/d/1_185.jpg);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
    height: 100vh;
    width: 100%;
    border-bottom-left-radius: 250px;
    position: relative;
}

.auth-section .row .col-md-6 .sign-in-auth-bg::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    border-bottom-left-radius: 250px;
}

.auth-section .row .col-md-6 .sign-in-auth-bg .logo {
    background-image: url(https://rasulov.uz/thumb/2/0jPM6tsSJaNTDTWnHZlD7A/280r280/d/logo.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 450px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.form-container {
    display: flex;
    justify-items: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.form-container .card {
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.form-container .card form {
    width: 450px;
}

.form-container .card form .text-wrapper p {
    color: rgb(118, 114, 114)
}

.btn-styled {
    background: #ff9021!important;
    color: white;
}

.form-container .card form input, .form-container .card form button {
    border-radius: 25px;
}

.no-focus:focus, .no-focus:checked {
    outline: 0;
    border: 0;
    box-shadow: unset;
}
/* Auth Section Style Ends Here */

.loading_container {
    width: 100%;
    height: 100%;
    position: fixed;
}

#motasl_logo {
    width: 100px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
}

#mask {
    fill: none;
    stroke: #ffffff;
    stroke-miterlimit: 10;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-width: 220;
    animation: motasl_arch 2s cubic-bezier(0.55, 0.2, 0.13, 1.01);
    animation-iteration-count: infinite;
}

@keyframes motasl_arch {
    0% {
        stroke-dashoffset: 1000;
    }
    50% {
        stroke-dashoffset: 0;
    }
    55% {
        stroke-dashoffset: 0;
    }
    95%,
    100% {
        stroke-dashoffset: -1000;
    }
}

#arch {
    animation: motasl_arch_alpha 2s linear;
    animation-iteration-count: infinite;
}

@keyframes motasl_arch_alpha {
    0%,
    5% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
}

#updot {
    fill: #df301b;
    animation: motasl_updot 2s linear;
    animation-iteration-count: infinite;
}

@keyframes motasl_updot {
    0%,
    40% {
        fill: #df301b;
        opacity: 0;
    }
    41.1%,
    82% {
        fill: #df301b;
        opacity: 1;
    }
    82.2% {
        opacity: 1;
        fill: #df301b;
        transform: translate(0%, 0);
    }
    100% {
        opacity: 0.0;
        fill: #161c2c;
        transform: translate(-23%, 0);
    }
}

#downdot {
    animation: motasl_downdot 2s linear;
    animation-iteration-count: infinite;
}

@keyframes motasl_downdot {
    0%,
    25% {
        opacity: 0;
        transform: translate(0px, 25%);
    }
    40% {
        opacity: 1;
        transform: translate(0px, -26%)
    }
    41% {
        opacity: 1;
        transform: translate(0px, -25%)
    }
    53% {
        opacity: 1;
        transform: translate(0px, 3%)
    }
    55%,
    75% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
    82%,
    85% {
        opacity: 1;
        transform: translate(0px, -25%);
    }
    85.1%,
    100% {
        opacity: 0;
        transform: translate(0px, -25%);
    }
}

h6 {
    font-size: 24px!important;
    letter-spacing: 1px;
    font-weight: 700!important;
}