:root {
    --txt-size: 14px;
    --bg-color: #fff;
    --auth-text: #fff;
    --error-ms: #ff3535;
    --sec-color: #3f3d61;
    --main-color: #162042;
    --button-color: #e74f29;
    --scroll-color: #868686b0;
    --scroll-top-color: #555
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body,
html,
main {
    background-color: var(--bg-color);
    font-family: Poppins, sans-serif !important;
    font-size: var(--txt-size);
    font-weight: 400;
    min-height: 100vh;
    position: relative;
    width: 100%
}

html {
    overflow: -moz-scrollbars-none
}

main {
    background-image: url(/images/background.png);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover
}

textarea {
    resize: none;
}

.container {
    max-width: 90%;
    max-height: 100%;
}

.divider {
    background-color: #969696;
    margin: 10px 0
}

img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

a,
a:focus {
    color: inherit !important;
    text-decoration: none !important
}

a.disabled {
    pointer-events: none;
    cursor: default;
}

.form-control:focus,
.form-select:focus,
button,
input,
select,
textarea {
    background-color: var(--bg-color);
    border-color: #05070a;
    box-shadow: unset;
    outline: unset
}

input::-ms-reveal {
    display: none;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: unset !important;
    outline: unset !important
}

.form-check {
    margin-bottom: 25px;
    position: relative
}

.form-check-input:focus {
    border: none;
    box-shadow: none
}

.form-check-input:checked {
    background-color: var(--button-color);
    border-color: var(--sec-color)
}

.form-select {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23ED6839' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3E%3C/svg%3E") !important;
    box-shadow: none !important
}

p.code {
    bottom: 120px;
    color: var(--bg-color);
    font-size: 9px;
    margin: 0;
    position: absolute;
    right: -35px;
    transform: rotate(90deg)
}

.input-container {
    position: relative
}

.hide_input {
    height: 10px;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 10px;
    z-index: -1
}

.opacity-0 {
    opacity: 0 !important
}

p.error,
span.error {
    color: var(--error-ms);
    font-size: 11px;
    white-space: nowrap;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    max-width: 200px;
}

::-webkit-scrollbar,
::-webkit-scrollbar-track {
    background-color: transparent
}

::-webkit-scrollbar {
    width: 4px
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-color);
    border: 0 solid var(--scroll-top-color)
}

/*--------------------- Header style ---------------------*/
.header {
    color: var(--bg-color);
    display: block;
    width: 100%;
    height: 9vh;
}

.header .header_logo {
    width: 160px;
    height: 9vh;
}

.header .center_menu {
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

.header-nav:hover {
    background-color: grey !important
}

.header .center_menu span {
    width: 31.33%;
    margin: 0 1%;
}

.center_menu div.training-tap,
.center_menu div.scores-tap {
    position: relative;
    width: 31.33%;
    margin: 0 1%;
}

.center_menu p.h-tooltip {
    position: absolute;
    visibility: hidden;
    bottom: -35%;
    left: -50%;
    color: #000;
    background-color: #FFF;
    padding: 2px 15px;
    border-radius: 10px;
    font-weight: 300;
    font-size: 12px;
    margin: 0;
}

.center_menu p.training-tap-tooltip {
    width: 30rem;
}

.center_menu p.scores-tap-tooltip {
    width: 28rem;
}

.header .center_menu a,
.header__nav__dropDown {
    background-color: var(--bg-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px #b3b3b3;
    color: var(--main-color) !important;
    display: inline-block;
    font-size: calc(10px + 1vh);
    padding: 2vh 10px;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
}

.header__nav__dropDown {
    border: none;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 2px 30px 2px 2px;
    border: none;
}
.header .center_menu a.active,
.header .center_menu a:hover,
.header__nav__dropDown:hover {
    background-color: var(--main-color);
    color: var(--bg-color) !important
}

.header .dropdown {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.header__nav__dropDown option {
    font-size: 1rem;
    text-align: start;
}

.header .dropdown button {
    color: var(--button-color);
    font-size: 24px
}

.header .top_menu {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.header .top_menu ul {
    border: unset;
    border-radius: 10px;
    box-shadow: 0 0 4px #909090;
    padding: 0
}

.header .top_menu li:first-child {
    border-radius: 10px 10px 0 0;
    overflow: hidden
}

.header .top_menu li:last-child {
    border-radius: 0 0 10px 10px;
    overflow: hidden
}

.header .top_menu li a {
    font-size: 16px;
    padding: 7px 15px
}

.header .top_menu li.active a,
.header .top_menu li:hover a {
    background-color: var(--main-color) !important;
    color: var(--bg-color) !important;
    overflow: hidden
}

.header .top_menu li.not_head {
    color: var(--main-color);
    font-weight: 700;
    padding: 22px 70px;
    text-align: center
}

.header .top_menu li.not_foot a {
    border-top: 1px solid #d6d6d6;
    display: block;
    font-size: 14px;
    text-align: center;
    width: 100%
}

.header .top_menu li a.dropdown-item p {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
    max-width: 90vw;
    white-space: normal;
    width: 250px
}

.header .top_menu li a.dropdown-item span {
    color: #9c9c9c;
    font-size: 14px;
}

.header .data h3 {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.header .data h5 {
    color: var(--main-color);
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.header .modal-body {
    border-radius: 10px;
    box-shadow: 1px 2px 7px grey;
    padding: 35px 65px;
}

.header .form_modal .modal-body {
    padding: 45px;
}

.header .modal-body form {
    align-items: baseline;
    display: flex;
    justify-content: space-between;
}

.header .form_modal .modal-body form {
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.header form .data {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 15px;
    width: 100%;
}

.header .modal-body .data,
.header .modal-body .data h3 {
    margin-bottom: 15px;
}

.header .modal-body input {
    margin-top: 11px;
}

.header .data label {
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.header .data input {
    box-shadow: 2px 2px 8px #d5d5d5;
    font-size: 18px;
    min-width: 400px;
}

.header form .buttons {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.header .buttons .btn {
    background-color: var(--button-color);
    border: 1px solid var(--button-color);
    border-radius: 10px;
    color: var(--bg-color);
    margin: 0 5px;
    width: 110px;
}

.header .buttons .btn.close {
    background-color: var(--bg-color);
    color: var(--main-color);
    border: 1px solid var(--main-color);
}

.header .input_icon {
    display: block;
    position: relative;
    width: 100%;
}

.header .input_icon .icons {
    color: var(--button-color);
    font-size: 20px;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 20px;
}

.header .custom-badge {
    font-size: .7rem;
    margin-left: -7%;
    position: absolute;
}

@media (max-width: 992px) {

    .header .center_menu a,
    .pages_body .center_menu a {
        font-size: 14px;
    }
}

.header .input-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}

.header .input-container span.error {
    bottom: -23px;
    left: 1px;
    position: absolute;
}

.header .disabled {
    opacity: 50%;
}

.pages_head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 3vh 0 1vh;
}

.pages_head h3 {
    color: var(--main-color);
    font-size: calc(14px + 1vh);
    margin: 0;
}

.pages_head .features {
    align-items: center;
    display: flex;
    justify-content: flex-end
}

.pages_head .filter button {
    color: var(--button-color);
    font-size: 22px;
    margin-left: 15px;
}

.pages_head .input-group {
    border: 1px solid;
    border-radius: 10px;
    color: var(--main-color);
}

.pages_head .input-group input {
    border: unset;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
}

.pages_head .input-group button {
    background-color: var(--main-color);
    border: unset;
    border-radius: 0 10px 10px 0;
    color: var(--bg-color);
    font-size: 16px;
}

.pages_body {
    background-color: transparent;
    border: 2px solid var(--main-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    height: 76vh;
    justify-content: flex-start;
    overflow: hidden;
}

@media only screen and (max-height: 767px) {
    .pages_body {
        height: 73vh;
    }
}

.pages_body .body_head {
    margin-bottom: 25px;
}

.body_head .action_btn {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
    margin-top: 15px;
}

.pages_body .center_menu {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0;
    width: 90%;
}

.pages_body .center_menu .nav-link {
    background-color: var(--bg-color);
    border: unset;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px #b3b3b3;
    color: var(--main-color) !important;
    display: inline-block;
    font-size: 0.8vw;
    padding: 0.8vw 1vw;
    text-align: center;
    text-transform: uppercase;
    width: 32.5%;
}

@media only screen and (max-width: 1516px) {
    .pages_body .center_menu .nav-link {
        background-color: var(--bg-color);
        border: unset;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 0 5px #b3b3b3;
        color: var(--main-color) !important;
        display: inline-block;
        font-size: 10px;
        padding: 12px 6px;
        text-align: center;
        text-transform: uppercase;
        width: 32.5%;
    }
}

.pages_body .center_menu.double .nav-link {
    width: 49.5%;
}

.pages_body .center_menu .nav-link:hover {
    background-color: grey !important;
    color: var(--bg-color) !important
}

.pages_body .center_menu .nav-link.active {
    background-color: var(--main-color);
    color: var(--bg-color) !important;
    pointer-events: none;
}

.pages_body .body_content {
    display: flex;
    flex-direction: column;
    /*height: calc(100% - 35px);*/
    justify-content: space-between;
    overflow: auto;
    padding: 0 25px;
}

.pages_body .body_head button {
    background-color: var(--button-color);
    border-radius: 10px;
    color: var(--bg-color);
    font-size: 14px;
    padding: 8px 21px;
    /*text-transform: uppercase;*/
}

.splash {
    background-color: rgb(0 0 0/60%);
    color: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    transition: all .3s linear;
    width: 100%;
    z-index: 4000;
}

.splash:before {
    content: "";
    height: 50%;
    width: 0;
}

.splash .splash_content,
.splash:before {
    display: inline-block;
    vertical-align: middle;
}

.splash .splash_content {
    font-weight: 400;
    text-align: center;
    transform: translateY(-50%);
    white-space: normal;
    width: 100%;
}

.splash .splash_content h1 {
    font-family: Trebuchet MS, Helvetica, sans-serif;
    font-weight: 700;
}

.text-muted {
    color: #e4e4e4 !important;
}

.splash svg {
    -webkit-animation: animation .5s linear infinite;
    animation: animation .5s linear infinite;
}

@-webkit-keyframes animation {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(45deg);
    }
}

@keyframes animation {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(45deg);
    }
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer h3 {
    color: var(--main-color);
    font-size: 1.7vh;
    /*margin-top: 12px;*/
    text-transform: uppercase;
}

.table tbody {
    background-color: #fff;
}

select {
    box-shadow: 2px 2px 8px #d5d5d5;
}

.un-seen-notification {
    background: #f9f9f9;
}

.un-seen-notification p {
    color: var(--button-color);
}

.delete-objection-btn {
    position: absolute;
    right: 0;
    top: 0;
}

tbody td {
    vertical-align: middle;
}

tbody td span {
    display: inline-block;
    max-width: 311px;
    word-break: break-word;
    height: 5rem;
    overflow-y: auto;
    min-width: 25px;
}

tbody td.no-result {
    text-align: center !important;
}

.notifications-scroll {
    height: calc(300% + 294px);
    overflow: auto;
    overflow-y: scroll;
}

.rounded-pill {
    border-radius: 50% !important;
    box-shadow: 0 1px #ccc;
}

.bg-info {
    background-color: #f8f9fa !important;
}

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

#main #mobile-modal {
    background-color: #fff;
    background-image: url(/images/background.png);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 99999999999999;
}

#main .alert_modal casing {
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#main .alert_modal .data {
    display: block;
    margin: 0 0 25px;
    text-align: center;
}

#main .alert_modal .data h5 {
    font-size: 19px;
    font-weight: 400;
    text-align: center;
}

#main .alert_modal .data i {
    align-items: center;
    border: 1px solid var(--button-color);
    background-color: var(--button-color);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    font-size: 50px;
    height: 75px;
    justify-content: center;
    margin: 0 auto 25px;
    width: 75px;
    ;
}

.reset {
    align-items: center !important;
    background: #ddd !important;
    border-radius: 50% !important;
    color: #162042 !important;
    display: flex;
    font-size: 13px !important;
    height: 15px !important;
    justify-content: center !important;
    line-height: 82px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    right: 42px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 15px !important;
    z-index: 999 !important
}

span.select2-selection__rendered {
    position: relative;
    top: 5px
}

.dots_span {
    display: inline-block;
    overflow: hidden !important;
    text-overflow: ellipsis;
    vertical-align: middle;
    white-space: nowrap;
    width: 130px
}

.new_btn {
    position: relative;
}

.new_btn button.btn {
    position: absolute;
    right: -30px;
    width: 25px;
    top: 50%;
    height: 25px;
    background-color: var(--button-color);
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 0;
    border-radius: 50%;
}

@media (max-width: 1190px) {
    .dots_span {
        width: 130px
    }
}

.p-value {
    color: var(--main-color);
    font-weight: 700
}

/*.front-validation {*/
/*    font-size: 20px !important;*/
/*}*/

.fa-arrow-left,
.fa-question-circle,
.fa-info {
    color: var(--button-color);
}

.fa-info {
    width: 28px;
    height: 28px;
    padding: 2px;
    text-align: center;
    font-size: 1.1rem;
    border: solid 4px;
    border-radius: 50%;
}

.custom-tooltip.tooltip>.tooltip-inner {
    text-align: left;
    max-height: 500px;
    max-width: 500px;
    font-size: 15px;
    color: var(--main-color);
    background-color: var(--bg-color);
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--bg-color) !important;
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--bg-color) !important;
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--bg-color) !important;
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--bg-color) !important;
}

.droppable-class {
    background: #ddd !important;
}

#password-error,
#editPassword-error {
    position: relative !important;
    bottom: 0px !important;
    left: 0px !important;
}

#password-error ul,
#editPassword-error ul {
    margin: 0;
}

#newPassword-error {
    position: relative;
    bottom: -5px;
}

#toast-container>.toast-error {
    right: -87%;
    -webkit-animation: slide-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

#toast-container>div {
    opacity: 1 !important;
    padding: 15px 15px 15px 39px !important;
    width: 320px !important;
    box-shadow: 0 0 12px #000;

}

#toast-container>.toast-error {
    background-image: url(/images/error-icon.png?c8f130b1596fb24403f6cd414919e49d) !important;
    color: #F73333 !important;
    font-size: 1em !important;
    font-weight: 500 !important;
}

.toast {
    background-color: #E5E5E5 !important;
    color: #F73333 !important;
}

.toast-top-right {
    top: 20% !important;
}

@-webkit-keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-250px);
    }
}

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-250px);
    }
}

.select2-selection__rendered:focus,
.select2:focus,
.selection:focus,
.select2-selection:focus,
.select2-selection__arrow:focus {
    outline: none;
}

.max-w-100 {
    max-width: 100% !important;
}

.max-w-50 {
    max-width: 50% !important;
}

.max-w-25 {
    max-width: 25% !important;
}

.modal.show .modal-dialog {
    width: -webkit-fit-content;
    width: fit-content;
    width: -moz-fit-content;
    max-width: 70vw !important;
    min-width: 445px;
}

.template-card:nth-of-type(2n+1) {
    /*padding-right: 3vw;*/
}

.template-card:nth-of-type(2n+0) {
    /*padding-left: 3vw;*/
}

.modal-content {
    border-radius: 0.8rem !important;
}

#success_modal .modal-content,
#error_modal .modal-content {
    padding: 20px 80px 0;
}

#logout .buttons,
#delete-location-modal .buttons {
    margin-left: 10rem;
}

.fa-trash {
    color: #F00;
}
#chartsContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.chart-container {
    display: block;
    width: 400px; 
    margin-bottom: 20px;
}
.count-down {
    display: flex;
    justify-content: center; 
    align-items: center; 
}

#countdown-container {
    display: inline-block;
    background: var(--button-color);
    text-align: center !important;
    margin: 0 auto;
    border-radius: 5px;
    padding:4px;
    width: 166px;
}

#countdown-container span {
    color: #ffffff;
    font-size: 2.5rem;
    font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
    font-weight: 700;
}