/*****************************************************
** @filename main.core.css => login-loader.css *******
*****************************************************/

.login-loader {
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: -35px;
}
.login-loader img {
    width: 250px;
}

/*****************************************************
** @filename main.core.css => image-dragable.css *****
*****************************************************/

img {
    user-drag: none;
    -webkit-user-drag: none;
}
.cursor-pointer
{
    cursor: pointer !important;
}
.auth
{
    background-size: cover;
    position: relative;
}

.auth::before
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*************************************************************
** @filename main.core.css => sweet-alert-settings.css *******
*************************************************************/

.swal-text {
    text-align: center;
    line-height: inherit;
}

/*************************************************************
** @filename main.core.css => hide-number-arrows.css *********
*************************************************************/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    -webkit-appearance: none;
    margin: 0;
}

input[type=number]
{
    -moz-appearance: textfield;
}

/*************************************************************
** @filename main.core.css => form_img.css *********
*************************************************************/
.form_img
{
    position: relative;
    display: flex;
    height: 100% !important;
    overflow: hidden;
    background-color: rgb(210 201 255 / 7%);
    margin-bottom: 20px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}

.form_img input
{
    position: absolute;
    left: -9999px;
    opacity: 0;
}
.form_img label
{
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
    letter-spacing: 0.4px;
    color: #1e2171;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}

.form_img label:hover
{
    color: #481515;
}

.form_img img
{
    /*
    position: absolute;
    z-index: 1;
    top: -100px;
    right: -100px;
    bottom: -100px;
    left: -100px;
    */
    margin: auto;
}

/*************************************************************
** @filename main.core.css => 404.css *********
*************************************************************/

.error-part
{
    padding: 100px 0px;
    text-align: center;
}

.error-part img
{
    margin-bottom: 30px;
}

.img-fluid
{
    max-width: 100%;
    height: auto;
}

.error-part h3
{
    text-transform: uppercase;
    margin-bottom: 3px;
}

.error-part p
{
    margin-bottom: 20px;
}

.error-part a
{
    font-size: 14px;
    padding: 10px 35px;
    border-radius: 8px;
    letter-spacing: 0.3px;
    color: #ffffff;
    background: #00483d;
    text-transform: uppercase;
}