@import url('https://fonts.googleapis.com/css2?family=Odibee+Sans&display=swap');
*{
    box-sizing: border-box;
}

@font-face {
    font-family: yekan;
    src: url('/font/yekan.ttf');
}

@font-face {
    font-family: sans;
    src: url('/font/sans.ttf');
}

html, body{
    min-height: 100vh;
    width: 100%;
}

.container-fluid {
    min-height: 100vh;
}

.yekan {
    font-family: yekan;
}

.sans {
    font-family: sans;
}

.rtl {
    direction: rtl !important;
}

.bg-grn {
    background-color: #17736A;
}

.full-height {
    min-height: 100vh;
}

.pointer {
    cursor: pointer;
    text-decoration: underline;
}

img {
    width: 100%;
    max-width: 100%;
}

.leaderboard {
    background: #17736A;
    min-height: 200px;
}

.number {
    font-family: 'Odibee Sans';
}


.user-row .text, .user-name {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: white;
}

.user-row i {
    color: rgba(255,255,255,0.6);
}

.user-row {
    background-color: rgba(2, 64, 89, 0.4);
}

.profile-pic img {
    width: 85px;
    min-width: 85px;
}

.shake input{
    /*border: 1px solid red !important;*/
    animation: shake 1.12s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake{
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

@-webkit-keyframes shake{
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}


.user_card {
    max-width: 400px;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
    background: #F28D35;
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 10px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 5px;

}

.brand_logo_container {
    position: absolute;
    height: 170px;
    width: 170px;
    top: -75px;
    border-radius: 50%;
    background: #f8f9fa;
    padding: 10px;
    text-align: center;
}
.brand_logo {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 2px solid #024059;
}
.form_container {
    margin-top: 100px;
}
.login_btn {
    width: 100%;
    background: #024059 !important;
    color: white !important;
}

.register_btn {
    width: 100%;
    background: #17736A !important;
    color: white !important;
}

.login_btn:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.login_container {
    padding: 0 2rem;
}
.input-group-text {
    background: #F25D27 !important;
    color: white !important;
    border: 0 !important;
    border-radius: 0 0.25rem 0.25rem 0 !important;
}
input {
    border-radius: 0.25rem 0 0 0.25rem !important;
}
.input_user,
.input_pass:focus {
    box-shadow: none !important;
    outline: 0px !important;
}
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: #F25D27 !important;
}
