.row {
    align-items: center;
}

.nav-bar {
    font-size: 18px;
}

.user-info {
    font-size: 15px;
    color: #fff;
}

.user-chips,
.user-liability {
    font-size: 12px;
    font-weight: 700;
}

.head-logo {
    width: auto;
    max-height: 50px;
}

.ttl {
    font-size: 15px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.home section {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.5rem;
}

.resource {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-align: left;
    text-decoration: none;
    color: #222;
    background-color: #f1f1f1;
    border: 1px solid transparent;
}

.resource:hover {
    border: 1px solid #000;
    box-shadow: 0 25px 50px -12px #673ab888;
}

@media (max-width: 639px) {
    .home section {
        margin-top: 5rem;
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }
}

@media (prefers-color-scheme: dark) {
    .resource {
        color: #ccc;
        background-color: #161616;
    }

    .resource:hover {
        border: 1px solid #bbb;
    }
}

.sepr {
    margin-top: 10px;
}

.oflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #4e4f4f;
}

.blinking {
    animation: 1s blink ease infinite;
    width: 20px;
    height: 20px;
    border-radius: 100%;
}

.blinking-green {
    animation: 1s blink-green ease infinite;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    display: inline-block;
    margin-right: 10px;
}

.blinking-green-na {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    display: inline-block;
    margin-right: 10px;
}

.blinktext {
    color: red;
    font-weight: 700;
    animation: multicolor-animation 2s infinite;
}

@keyframes multicolor-animation {
    0% {
        color: red;
    }

    25% {
        color: #00f;
    }

    50% {
        color: green;
    }

    75% {
        color: orange;
    }

    to {
        color: purple;
    }
}

@-webkit-keyframes blink-green {

    0%,
    to {
        opacity: 0;
        background-color: green;
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 0;
        background-color: red;
    }

    25% {
        opacity: 1;
        background-color: red;
    }

    50% {
        opacity: 0;
        background-color: #ff8c00;
    }

    75% {
        opacity: 1;
        background-color: #ff8c00;
    }

    to {
        opacity: 0;
        background-color: #ff8c00;
    }
}

iframe {
    display: block;
}

.betloader {
    width: 20px;
    margin: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #fff 94%, #0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%, #fff);
    -webkit-mask: radial-gradient(farthest-side,
            #0000 calc(100% - 8px),
            #000 0);
    animation: l13 1s infinite linear;
}

.scoreboard-iframe-full {
    height: auto !important;
    width: 100% !important;
    min-height: 210px !important;
    overflow: hidden;
}

.scoreboard-iframe {
    height: auto !important;
    width: 100% !important;
    max-height: 130px !important;
    overflow: hidden;
}

.match {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.first-runner-bet-odds-no-value,
.first-runner-bet-odds-yes-value {
    padding: 0 !important;
    font-size: 16px;
    vertical-align: middle !important;
}

.first-runner-bet-odds-yes-value {
    margin-bottom: 5px;
    background-color: #fff;
    color: #00f;
    font-weight: 600;
    text-align: center;
}

.first-runner-bet-odds-no-value {
    margin-bottom: 5px;
    background-color: #fff;
    color: red;
    font-weight: 600;
    text-align: center;
}

.mod-header {
    background: linear-gradient(#22a36d 0%, #060A2A 100%);
    color: #fff;
    padding: 7px;
    position: relative;
    height: 35px;
    line-height: 8px;
    width: 100%;
    float: left;
}

table.bet-value-buttons-table tr td button {
    width: 60px;
    padding: 10px 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
    border-radius: 50px;
    border: none;
    outline: none;
    background-color: #2a363b;
    color: #fff;
}

table.bet-value-buttons-table tr td button.bet-value-clear-button {
    background-color: #d45151;
    color: #fff;
}

.form-inline {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}

.form-inline label {
    margin: 5px 10px 5px 0;
}

.form-inline input {
    vertical-align: middle;
    margin: 5px 10px 5px 0;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.form-inline button {
    padding: 10px 20px;
    background-color: #1e90ff;
    border: 1px solid #ddd;
    color: #fff;
}

.form-inline button:hover {
    background-color: #4169e1;
}

@media (max-width: 800px) {
    .form-inline input {
        margin: 10px 0;
    }

    .form-inline {
        flex-direction: column;
        align-items: stretch;
    }
}

.cbox {
    height: 100vh;
    align-items: center;
    display: grid;
}

.logo {
    justify-content: center;
    font-size: 40px;
    font-weight: 900;
    color: #005a36;
}

.login-form {
    width: 100%;
    padding: 2em;
    position: relative;
    background: var(--primary-light-color);
}

@media screen and (min-width: 600px) {
    .login-form {
        width: 50vw;
        max-width: 25em;
    }
}

.flex-row {
    display: flex;
    margin-bottom: 1em;
}

.lf--label {
    width: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #005a36;
    cursor: pointer;
}

.lf--input {
    flex: 1;
    padding: 1em;
    border: 0;
    color: #8f8f8f;
    font-size: 1rem;
    background: #fff;
    border: solid 1px #0582c2;
}

.lf--input:focus {
    outline: none;
    transition: transform 0.15s ease;
    transform: scale(1.1);
}

.lf--submit {
    display: block;
    padding: 1em;
    width: 100%;
    background: #005a36;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 0.75em;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.lf--submit:focus {
    outline: none;
    transition: transform 0.15s ease;
    transform: scale(1.1);
}

.lf--forgot {
    margin-top: 1em;
    color: #00d6b7;
    font-size: 0.65em;
    text-align: center;
    position: relative;
}

::-moz-placeholder {
    color: #8f8f8f;
    background: #fff;
}

:-ms-input-placeholder {
    color: #8f8f8f;
    background: #fff;
}

::placeholder {
    color: #8f8f8f;
    background: #fff;
}

.tbl-tr-bg {
    background: linear-gradient(#22a36d 0%, #060A2A 100%);
    color: var(--white);
}

.mainDiv {
    display: flex;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    background-color: #e3e3e3;
    font-family: Open Sans, sans-serif;
}

.cardStyle {
    width: 500px;
    border-color: #fff;
    padding: 36px 0;
    border-radius: 4px;
    margin: 30px 0;
    box-shadow: 0 0 2px #00000040;
    background: var(--primary-light-color);
}

#signupLogo {
    max-height: 100px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.formTitle {
    font-weight: 600;
    margin-top: 20px;
    color: #2f2d3b;
    text-align: center;
}

.inputLabel {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    margin-top: 24px;
    font-weight: 900;
}

.inputDiv {
    width: 70%;
    display: flex;
    flex-direction: column;
    margin: auto;
}

input {
    /* height: 40px; */
    font-size: 16px;
    border-radius: 4px;
    border: none;
    border: solid 1px #ccc;
    padding: 0 11px;
    background: #fff;
}

input:disabled {
    cursor: not-allowed;
    border: solid 1px #eee;
}

.buttonWrapper {
    margin-top: 40px;
}

.submitButton {
    width: 70%;
    height: 40px;
    margin: auto;
    display: block;
    color: #fff;
    background-color: #005a36;
    border-color: #005a36;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px #00000009;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.submitButton:disabled,
button[disabled] {
    border: 1px solid #cccccc;
    background-color: #ccc;
    color: #666;
}

#loader {
    position: absolute;
    z-index: 1;
    margin: -2px 0 0 10px;
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #666666;
    width: 14px;
    height: 14px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

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

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

.bet-place-tbl-th {
    text-align: center;
    background: #6cf;
    color: #fff;
    padding: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bet-place-tbl-th {
    text-align: center;
    background: linear-gradient(#22a36d 0%, #060A2A 100%);
    color: #fff;
    padding: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.score-tbl td,
th {
    padding: 2px !important;
    border-bottom: none !important;
    border-top: none !important;
}

.ldg-tbl-th {
    text-align: center;
    background-color: #2a363b;
    color: #fff;
    padding: 15px !important;
    font-weight: 700;
    letter-spacing: 1px;
    border: 5px solid #e9e9e9 !important;
}

.ldg-tbl-td {
    background-color: #fff;
    color: #49494a;
    padding: 13px !important;
    border: 5px solid #e9e9e9 !important;
    text-align: center;
    vertical-align: middle !important;
    word-break: break-all;
}

.text-green {
    color: #089603 !important;
}

.text-red {
    color: red !important;
}

.btn-grad-red {
    background: #e30909;
    width: 100%;
    padding: 8px;
    color: #fff;
}

.TeamName {
    background: linear-gradient(#22a36d 0%, #060A2A 100%);
    padding: 0.3em 0;
    border-top: 1px solid var(--secondry-color);
    text-align: center;
    border-radius: 7px 7px 0 0;
    font-weight: 700;
    font-size: 1.1em;
    color: #fff;
}

.bet-place-tbl-td {
    background-color: #fff;
    color: #49494a;
    padding: 4px;
    text-align: center;
    vertical-align: middle !important;
}

.match input.ButtonYRun,
.match input.ButtonL,
.match input.ButtonNRun,
.match input.ButtonNRate,
.match input.ButtonYRate {
    appearance: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: #000;
    cursor: pointer;
    display: block;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 auto;
    height: 100%;
    outline: 0;
    padding: 2px 4px;
    text-align: center;
    width: 100%;
    position:absolute;
    top : 0;
}

.match input.ButtonYRun {
    background-color: #72bbef;
    font-size: 16px;
}

.match input.ButtonL,
.match input.ButtonNRun {
    background-color: #faa9ba;
    font-size: 16px;
}

.match input.ButtonNRate {
    background-color: #faa9ba;
    /* font-size: 10px; */
    font-weight: 600;
    min-height: 18px;
}

.match input.ButtonYRate {
    background-color: #72bbef;
    /* font-size: 10px; */
    font-weight: 600;
    min-height: 18px;
}

.match input.ButtonYRun:hover,
.match input.ButtonL:hover,
.match input.ButtonNRun:hover,
.match input.ButtonNRate:hover,
.match input.ButtonYRate:hover {
    filter: brightness(0.96);
}

.match input.ButtonYRun:disabled,
.match input.ButtonL:disabled,
.match input.ButtonNRun:disabled,
.match input.ButtonNRate:disabled,
.match input.ButtonYRate:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.main_menu_btn {
    color: #fff !important;
    font-size: 12px !important;
    letter-spacing: 2px;
    padding: 13px 35px;
    width: 100%;
    margin-top: 12px;
    margin-bottom: 12px;
}

.main_menu_btn a {
    color: #fff !important;
    padding: 12px;
}

.gotohome {
    background: #005a36;
    border-radius: 30px;
    font-weight: 700;
    font-size: 18px;
}

.rulesbtn {
    width: 100px;
    padding: 10px 0;
    margin: 0;
    text-align: center;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: #2a363b;
    color: #fff;
    cursor: pointer;
    display: inline-block;
}

.game-img {
    left: 0;
    top: 0;
    z-index: 100;
    transition: filter 0.2s;
    border-radius: 5px;
    width: 90% !important;
    max-height: 100px;
}

.blink {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #f0f;
    padding: 10px 0;
    line-height: 10px;
    border-radius: 50px;
    text-align: center;
    animation: blink 1s linear infinite;
    z-index: 999;
}

.mtk_select {
    font-size: 20px;
    height: 40px;
    border: 1px solid #728f80;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
}

.harup-satta-text {
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    display: flex;
    background: #2a2a2a !important;
    color: #fff;
    padding: 4px;
}

.text-danger {
    color: #d45151;
}

.text-success {
    color: #28a745;
}

@keyframes blink {
    0% {
        background: #c2e884;
    }

    20% {
        background: #c2e884;
    }

    40% {
        background: #ff7f00;
    }

    60% {
        background: #ff7f00;
    }

    80% {
        background: #36cb3b;
    }

    to {
        background: #36cb3b;
    }
}

.game-img {
    left: 0;
    top: 0;
    z-index: 100;
    transition: filter 0.2s;
    border-radius: 5px;
    width: 90%;
}

.center {
    text-align: center;
}

.tp-module .back {
    background: #72bbef;
}

.tp-module .lay {
    background: #f9a9ba;
}

.game-header {
    font-size: 16px;
    justify-content: space-between;
    display: flex;
    background: linear-gradient(#22a36d 0%, #060A2A 100%);
    padding: 5px 10px;
    color: #fff;
}

.featured-box-detail {
    max-width: 70% !important;
    -ms-flex: 0 0 70% !important;
    flex: 0 0 70% !important;
}

.lucky7-main {
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    background: #fff;
    padding: 12px 0;
    border: 4px solid var(--secondry-color);
}

.lucky7-main-bhav {
    display: inline-grid;
}

.lucky7-bhav {
    position: relative;
    background: #04284452;
    font-size: 18px;
    color: #fff;
    display: flex;
    padding: 5px;
    justify-content: center;
    align-items: center;
}

.lucky7-main-bhav button {
    width: 100%;
    height: 100%;
    background: #fff0;
    border: none;
    outline: none;
    position: relative;
    color: #fff;
    font-size: 18px;
}

.lock-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    filter: invert(1);
}

.flipclock {
    position: absolute;
    right: 1%;
    bottom: 3%;
}

.flipclock-t1 {
    color: #fff;
    font-size: 25px;
    background: #4c4c4c8a;
    padding: 0 5px;
}

.susb-bhav {
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    top: 0;
    left: 0;
}

.game-result {
    background: green;
    border-radius: 25px;
    margin: 2px;
    height: 30px;
    width: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
}

.playerb {
    color: #ff3;
}

.result-section {
    display: flex;
    background: #bbb;
    justify-content: flex-end;
}

.mr-left-right {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.aaa-bhav {
    display: flex;
}

.lucky7-main .back {
    background-color: #72bbef;
    padding: 5px !important;
}

.lucky7-main .lay {
    background-color: #faa9ba;
    padding: 5px !important;
}

.blink-txt {
    font-size: 8px;
    color: #fff;
}

.lucky7-main-bhav span {
    font-size: 16px;
}

@media (max-width: 767px) {
    .liveStr {
        height: 210px !important;
        width: 100% !important;
    }

    .lucky7-bhav {
        font-size: 14px !important;
    }

    .featured-box-detail {
        max-width: 100% !important;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
    }

    .pd-left-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .ab2-res-fst-card {
        left: 5px !important;
    }
}

.ab2-btn-background {
    background: #04284452;
    width: 100%;
}

.ab2-text {
    font-size: 14px;
    padding: 0;
    margin: 5px 5px 0 !important;
    color: #fff;
    text-align: center;
    display: inline-grid;
    cursor: pointer;
}

.ab2-bhav {
    text-align: center;
    margin: auto 5px 5px auto;
    background: #087e8f;
    color: #fff;
    display: inline-grid;
    border: 2px solid #d7d04a;
    cursor: pointer;
}

.ab2-res-fst-card {
    height: 40px;
    /* position: absolute; */
    left: 20px;
    top: 40%;
}

.rescard {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.andr-bhar2-res-text {
    margin-top: auto;
    margin-bottom: auto;
    font-size: 16px;
    color: var(--red);
    width: 80% !important;
    float: right;
}

.next-card-res {
    position: absolute;
    right: 0;
    bottom: 15%;
}

.perv-card-res {
    position: absolute;
    left: 0;
    bottom: 15%;
}

.andarbahar-res .andar-bahar-image {
    width: 25px;
    cursor: pointer;
    margin: 3px;
}

.andarbahar-module .andar-bahar-image {
    width: 38px;
    cursor: pointer;
    margin: 3px;
}

.res-box {
    width: 30%;
    position: absolute;
    top: 6%;
    left: 0;
    padding-bottom: 5px;
}

.tp-res-box {
    width: 31% !important;
    position: absolute;
    top: 20% !important;
    left: 10% !important;
}

@media (max-width: 767px) {
    .game-box {
        display: inline-block;
        width: 150px;
        height: 80px;
        margin: 0 5px 10px;
        background-color: #fff;
        position: relative;
        border-radius: 5px;
        cursor: pointer;
    }

    .featured-box-detail {
        max-width: 100% !important;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
    }

    .pd-left-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .liveStr {
        height: 210px !important;
        width: 100% !important;
    }

    .andarbahar-module .andar-bahar-image {
        width: 50px !important;
        cursor: pointer;
        margin: 5px;
        height: 80px !important;
    }

    .andarbahar-res .andar-bahar-image {
        width: 22px !important;
        cursor: pointer;
        margin: 3px;
        height: 35px !important;
    }

    .andr-bhar-res-text {
        margin-top: auto;
        margin-bottom: auto;
        font-size: 14px !important;
        color: #fff;
    }

    .mob-ab-cards {
        text-align: center;
        display: flex;
        overflow: hidden;
        overflow-x: auto;
        padding: 10px 0;
    }

    .mobile-ab-text-border {
        border-bottom: 1px solid #000;
    }

    .mobile-ab2-text-border {
        border-top: 1px solid;
        margin-top: 15px !important;
    }

    .ab2-res-fst-card {
        left: 5px !important;
    }

    .tp-bhav {
        font-size: 14px !important;
    }

    .tp-res-box {
        width: 31% !important;
        position: absolute;
        top: 16% !important;
        left: 0 !important;
    }
}

::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
}

.tp-susb-bhav {
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    justify-content: center;
    align-items: center;
    display: flex;
}

.tp-bhav {
    text-align: center;
    font-size: 18px;
    background: #04284452;
    color: #fff;
    padding: 10px;
    border-right: 1px solid #fff;
    cursor: pointer;
}

.mobile-tp-text {
    text-align: center;
    margin: auto;
}

.mobile-tp-border {
    border-bottom: 1px solid #fff;
}

div.overlay-div {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000080;
    z-index: 1;
}

table.market-rate-table {
    width: 100%;
    background-color: #e9e9e9;
    border-collapse: collapse;
    border-bottom: 0px solid;
}

table.market-rate-table td {
    text-align: center;
    font-family: open-sans-bold;
    border-bottom: 0px solid;
    font-size: 12px;
    color: #3e3e3e;
}

table.market-rate-table td span {
    color: #3a61a2;
    font-family: open-sans-bold !important;
}

@media all and (max-width: 480px) {
    table.market-rate-table td {
        font-size: 10px;
    }
}

.num-pad {
    text-align: center;
    width: 100%;
    font-size: 15px;
    border: 1px solid #3a61a2;
    border-collapse: collapse;
}

table.numpad-table {
    background-color: #e9e9e9bf;
}

table.min-max-stack-table {
    border: 1px solid #3a61a2;
    color: #fff;
}

table.min-max-stack-table tr.bet-values-row td {
    background-color: #3a61a2bf;
}

table.numpad-table td.numpad-done-button {
    background-color: #3a61a2;
    color: #fff;
}

table.numpad-table td {
    color: #3e3e3e;
}

table.numpad-table td input {
    font-size: 15px;
}

table.min-max-stack-table td {
    border: 1px solid #3a61a2;
    font-size: 13px;
}

table.num-pad.input-close-table {
    border: 0px solid #fff;
}

table.min-max-stack-table td input,
table.input-close-table td input {
    width: 100%;
    text-align: center;
    outline: none;
    padding: 10px 0;
}

table.input-close-table td input#quantity {
    color: #223f6f;
    background-color: #e9e9e9bf;
    font-family: Roboto;
    font-size: 16px;
    border: none;
}

table.input-close-table td.close-num-keyboard {
    width: 60px;
    color: #fff;
    background-color: #631515c4;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 25px;
}

table.num-pad.input-close-table td {
    border: 2px solid #223f6f;
    border-bottom: 1px solid #223f6f;
}

table.min-max-stack-table td.min-stack {
    background-color: #223f6f;
}

table.min-max-stack-table td.max-stack {
    background-color: #3a61a2;
}

.num-pad tr td {
    border: 1px solid #223f6f;
    border-bottom: none;
}

.numpad-table tr td input {
    width: 90%;
    padding: 10px 0;
}

td.clear-button {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 25px auto;
}

table.done-button-table {
    width: 100%;
    text-align: center;
}

table.done-button-table td.numpad-done-button {
    background-color: #3a61a2bf;
    width: 50%;
}

table.done-button-table button.amount-btn-color {
    font-size: 15px;
    padding: 10px 20px 13px 0;
    margin: 0;
    background-color: #3a61a200 !important;
}

table.done-button-table td.clear-button-td {
    background-color: #631515c4;
}

td.clear-button-td input {
    background-color: inherit;
    padding: 0;
    margin: 0;
    background-color: #f000;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: Roboto;
    color: #fff;
    width: 100%;
}

* {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

:root {
    --primary-color: #cf6ca6;
    --primary-light-color: #cf6ca724;
    --secondry-color: #5fa6d2;
    --white: #ffffff;
    --black: #000000;
    --blue: #337ab7;
    --red: #d45151;
    --green: #28a745;
}

html,
body {
    height: 100%;
    margin: 0;
    font-size: 15px;
    font-weight: 500;
}

body {
    display: flex;
    flex-direction: column;
    position: relative;
    font-family: Roboto, helvetica, arial, sans-serif;
    font-size: 1em;
    /* background: #e3e3e3; */
    margin: 0 auto;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

a {
    text-decoration: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(182, 223, 253, 0.5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 5px;
}

p {
    margin: auto;
    font-weight: 600;
}

button,
.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.loader {
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(farthest-side, #005a36 94%, #0000) top/8px 8px no-repeat,
        conic-gradient(#0000 30%, #005a36);
    -webkit-mask: radial-gradient(farthest-side,
            #0000 calc(100% - 8px),
            #000 0);
    animation: l13 1s infinite linear;
}

@keyframes l13 {
    to {
        transform: rotate(1turn);
    }
}

header {
    display: flex;
    min-height: 60px;
    align-items: center;
    width: 100%;
}

header nav {
    display: flex;
}

header a {
    color: #fff;
    padding: 0.75rem;
    text-decoration: none;
}

.padding0 {
    padding: 0 !important;
}

.margin0 {
    margin: 0 !important;
}

.sticky {
    position: fixed !important;
    background-color: #005a36;
    top: 0;
    z-index: 999;
}

.container-fluid,
.container {
    margin-right: auto;
    margin-left: auto;
}

.container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
}

.row {
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}

.row.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

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

.text-green,
.text-success {
    color: var(--green);
}

.stopreaload {
    overscroll-behavior: contain;
}

.col.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

table {
    width: 100%;
    overflow: auto;
}

table {
    border-collapse: collapse;
}

.table-bordered,
.table-bordered td,
.table-bordered th {
    border: 1px solid #dee2e6;
}

th,
td {
    padding: 3px;
}

.back-btn {
    border-radius: 2px;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    padding: 6px;
    color: #fff;
    font-weight: 700;
    background: #005a36;
    width: 100%;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.col-xs,
.col-12 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
}

.col-xs-1,
.col-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
}

.col-xs-2,
.col-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
}

.col-xs-3,
.col-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-xs-4,
.col-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
}

.col-xs-5,
.col-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
}

.col-xs-6,
.col-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-xs-7,
.col-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
}

.col-xs-8,
.col-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
}

.col-xs-9,
.col-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-xs-10,
.col-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
}

.col-xs-11,
.col-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
}

.col-xs-12,
.col-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.start-xs {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
}

.center-xs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.end-xs {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
}

.top-xs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.middle-xs {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bottom-xs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.around-xs {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.between-xs {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.first-xs {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.last-xs {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

@media only screen and (min-width: 48em) {
    .container {
        width: 49rem;
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-offset-0,
    .col-sm-offset-1,
    .col-sm-offset-2,
    .col-sm-offset-3,
    .col-sm-offset-4,
    .col-sm-offset-5,
    .col-sm-offset-6,
    .col-sm-offset-7,
    .col-sm-offset-8,
    .col-sm-offset-9,
    .col-sm-offset-10,
    .col-sm-offset-11,
    .col-sm-offset-12 {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .col-sm {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-sm-1 {
        -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-sm-2 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-sm-5 {
        -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-sm-8 {
        -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-sm-11 {
        -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .start-sm {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-sm {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-sm {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-sm {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-sm {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-sm {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-sm {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-sm {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-sm {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .last-sm {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (min-width: 64em) {
    .container {
        width: 65rem;
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-offset-0,
    .col-md-offset-1,
    .col-md-offset-2,
    .col-md-offset-3,
    .col-md-offset-4,
    .col-md-offset-5,
    .col-md-offset-6,
    .col-md-offset-7,
    .col-md-offset-8,
    .col-md-offset-9,
    .col-md-offset-10,
    .col-md-offset-11,
    .col-md-offset-12 {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .col-md {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-md-1 {
        -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-md-2 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-md-5 {
        -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-md-8 {
        -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-md-11 {
        -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .start-md {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-md {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-md {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-md {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-md {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-md {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-md {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-md {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-md {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .last-md {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

@media only screen and (min-width: 75em) {
    .container {
        width: 76rem;
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-offset-0,
    .col-lg-offset-1,
    .col-lg-offset-2,
    .col-lg-offset-3,
    .col-lg-offset-4,
    .col-lg-offset-5,
    .col-lg-offset-6,
    .col-lg-offset-7,
    .col-lg-offset-8,
    .col-lg-offset-9,
    .col-lg-offset-10,
    .col-lg-offset-11,
    .col-lg-offset-12 {
        box-sizing: border-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }

    .col-lg {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        max-width: 100%;
    }

    .col-lg-1 {
        -ms-flex-preferred-size: 8.33333333%;
        flex-basis: 8.33333333%;
        max-width: 8.33333333%;
    }

    .col-lg-2 {
        -ms-flex-preferred-size: 16.66666667%;
        flex-basis: 16.66666667%;
        max-width: 16.66666667%;
    }

    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }

    .col-lg-5 {
        -ms-flex-preferred-size: 41.66666667%;
        flex-basis: 41.66666667%;
        max-width: 41.66666667%;
    }

    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex-preferred-size: 58.33333333%;
        flex-basis: 58.33333333%;
        max-width: 58.33333333%;
    }

    .col-lg-8 {
        -ms-flex-preferred-size: 66.66666667%;
        flex-basis: 66.66666667%;
        max-width: 66.66666667%;
    }

    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex-preferred-size: 83.33333333%;
        flex-basis: 83.33333333%;
        max-width: 83.33333333%;
    }

    .col-lg-11 {
        -ms-flex-preferred-size: 91.66666667%;
        flex-basis: 91.66666667%;
        max-width: 91.66666667%;
    }

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .start-lg {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-lg {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-lg {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-lg {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .middle-lg {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .bottom-lg {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .around-lg {
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .between-lg {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .first-lg {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .last-lg {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    margin: 0 5px;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: var(--secondry-color);
    border-color: var(--secondry-color);
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn,
.btn-lg {
    padding: 0.5rem 1rem !important;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.btn,
.btn-sm {
    padding: 0.2rem 0.3rem;
    font-size: 0.85rem;
    line-height: 1;
    border-radius: 0.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    margin: 20px 0;
    border-radius: 0.25rem;
}

.pagination>li {
    display: inline;
}

.pagination>li:first-child>a,
.pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination>.disabled>a,
.pagination>.disabled>a:focus,
.pagination>.disabled>a:hover,
.pagination>.disabled>span,
.pagination>.disabled>span:focus,
.pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination>li>a,
.pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination>li:last-child>a,
.pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.rules-span-custom {
    background: #000;
    color: #fff;
    font-size: 20px;
    padding: 0 18px;
}

.f-right {
    float: right;
}
ol, ul {
    padding-left: 0rem;
}
.modal {
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000;
    background-color: #0006;
    z-index: 1072;
}

.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px #0003, 0 6px 20px #00000030;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
}

@-webkit-keyframes animatetop {
    0% {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

@keyframes animatetop {
    0% {
        top: -300px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: 700;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 4px;
    background-color: #005a36;
    color: #fff;
}

.fade {
    opacity: 1;
    transition: opacity 0.15s linear;
}

.modal-body {
    padding: 2px 1px;
    max-height: 500px;
    overflow: auto;
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    background-color: #005a36;
}

@media screen and (max-width: 600px) {
    .d-sm-none {
        display: none;
    }

    .modal-content {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important;
    }
}

.introjs-overlay {
    position: absolute;
    box-sizing: content-box;
    z-index: 999999;
    opacity: 0;
    transition: all .3s ease-out
}

.introjs-showElement {
    z-index: 9999999 !important
}

tr.introjs-showElement>td {
    z-index: 9999999 !important;
    position: relative
}

tr.introjs-showElement>th {
    z-index: 9999999 !important;
    position: relative
}

.introjs-disableInteraction {
    z-index: 99999999 !important;
    position: absolute;
    background-color: #fff;
    opacity: 0
}

.introjs-relativePosition {
    position: relative
}

.introjs-helperLayer {
    box-sizing: content-box;
    position: absolute;
    z-index: 9999998;
    border-radius: 4px;
    transition: all .3s ease-out
}

.introjs-helperLayer * {
    box-sizing: content-box
}

.introjs-helperLayer :before {
    box-sizing: content-box
}

.introjs-helperLayer :after {
    box-sizing: content-box
}

.introjs-tooltipReferenceLayer {
    font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif;
    box-sizing: content-box;
    position: absolute;
    visibility: hidden;
    z-index: 100000000;
    background-color: transparent;
    transition: all .3s ease-out
}

.introjs-tooltipReferenceLayer * {
    font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif
}

.introjs-helperNumberLayer {
    font-family: "Helvetica Neue", Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif;
    color: #9e9e9e;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px
}

.introjs-arrow {
    border: 5px solid transparent;
    content: "";
    position: absolute
}

.introjs-arrow.top {
    top: -10px;
    left: 10px;
    border-bottom-color: #fff
}

.introjs-arrow.top-right {
    top: -10px;
    right: 10px;
    border-bottom-color: #fff
}

.introjs-arrow.top-middle {
    top: -10px;
    left: 50%;
    margin-left: -5px;
    border-bottom-color: #fff
}

.introjs-arrow.right {
    right: -10px;
    top: 10px;
    border-left-color: #fff
}

.introjs-arrow.right-bottom {
    bottom: 10px;
    right: -10px;
    border-left-color: #fff
}

.introjs-arrow.bottom {
    bottom: -10px;
    left: 10px;
    border-top-color: #fff
}

.introjs-arrow.bottom-right {
    bottom: -10px;
    right: 10px;
    border-top-color: #fff
}

.introjs-arrow.bottom-middle {
    bottom: -10px;
    left: 50%;
    margin-left: -5px;
    border-top-color: #fff
}

.introjs-arrow.left {
    left: -10px;
    top: 10px;
    border-right-color: #fff
}

.introjs-arrow.left-bottom {
    left: -10px;
    bottom: 10px;
    border-right-color: #fff
}

.introjs-tooltip {
    box-sizing: content-box;
    position: absolute;
    visibility: visible;
    background-color: #fff;
    min-width: 250px;
    max-width: 300px;
    border-radius: 5px;
    box-shadow: 0 3px 30px rgba(33, 33, 33, .3);
    transition: opacity .1s ease-out
}

.introjs-tooltiptext {
    padding: 20px
}

.introjs-dontShowAgain {
    padding-left: 20px;
    padding-right: 20px
}

.introjs-dontShowAgain input {
    padding: 0;
    margin: 0;
    margin-bottom: 2px;
    display: inline;
    width: 10px;
    height: 10px
}

.introjs-dontShowAgain label {
    font-size: 14px;
    display: inline-block;
    font-weight: 400;
    margin: 0 0 0 5px;
    padding: 0;
    background-color: #fff;
    color: #616161;
    -webkit-user-select: none;
    user-select: none
}

.introjs-tooltip-title {
    font-size: 18px;
    width: 90%;
    min-height: 1.5em;
    margin: 0;
    padding: 0;
    font-weight: 700;
    line-height: 1.5
}

.introjs-tooltip-header {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    min-height: 1.5em
}

.introjs-tooltipbuttons {
    border-top: 1px solid #e0e0e0;
    padding: 10px;
    text-align: right;
    white-space: nowrap
}

.introjs-tooltipbuttons:after {
    content: "";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both
}

.introjs-button {
    box-sizing: content-box;
    position: relative;
    overflow: visible;
    padding: .5rem 1rem;
    border: 1px solid #bdbdbd;
    text-decoration: none;
    text-shadow: 1px 1px 0 #fff;
    font-size: 14px;
    color: #424242;
    white-space: nowrap;
    cursor: pointer;
    outline: 0;
    background-color: #f4f4f4;
    border-radius: .2em;
    zoom: 1;
    display: inline
}

.introjs-button:hover {
    outline: 0;
    text-decoration: none;
    border-color: #9e9e9e;
    background-color: #e0e0e0;
    color: #212121
}

.introjs-button:focus {
    outline: 0;
    text-decoration: none;
    background-color: #eee;
    box-shadow: 0 0 0 .2rem rgba(158, 158, 158, .5);
    border: 1px solid #616161;
    color: #212121
}

.introjs-button:active {
    outline: 0;
    text-decoration: none;
    background-color: #e0e0e0;
    border-color: #9e9e9e;
    color: #212121
}

.introjs-button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.introjs-skipbutton {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #616161;
    font-size: 22px;
    cursor: pointer;
    font-weight: 700;
    text-align: center;
    text-decoration: none
}

.introjs-skipbutton:focus,
.introjs-skipbutton:hover {
    color: #212121;
    outline: 0;
    text-decoration: none
}

.introjs-prevbutton {
    float: left
}

.introjs-nextbutton {
    float: right
}

.introjs-disabled {
    color: #9e9e9e;
    border-color: #bdbdbd;
    box-shadow: none;
    cursor: default;
    background-color: #f4f4f4;
    background-image: none;
    text-decoration: none
}

.introjs-disabled:focus,
.introjs-disabled:hover {
    color: #9e9e9e;
    border-color: #bdbdbd;
    box-shadow: none;
    cursor: default;
    background-color: #f4f4f4;
    background-image: none;
    text-decoration: none
}

.introjs-hidden {
    display: none
}

.introjs-bullets {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px
}

.introjs-bullets ul {
    box-sizing: content-box;
    clear: both;
    margin: 0 auto 0;
    padding: 0;
    display: inline-block
}

.introjs-bullets ul li {
    box-sizing: content-box;
    list-style: none;
    float: left;
    margin: 0 2px
}

.introjs-bullets ul li a {
    transition: width .1s ease-in;
    box-sizing: content-box;
    display: block;
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer
}

.introjs-bullets ul li a:focus,
.introjs-bullets ul li a:hover {
    width: 15px;
    background: #999;
    text-decoration: none;
    outline: 0
}

.introjs-bullets ul li a.active {
    width: 15px;
    background: #999
}

.introjs-progress {
    box-sizing: content-box;
    overflow: hidden;
    height: 10px;
    margin: 10px;
    border-radius: 4px;
    background-color: #e0e0e0
}

.introjs-progressbar {
    box-sizing: content-box;
    float: left;
    width: 0%;
    height: 100%;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
    background-color: #08c
}

.introjsFloatingElement {
    position: absolute;
    height: 0;
    width: 0;
    left: 50%;
    top: 50%
}

.introjs-fixedTooltip {
    position: fixed
}

.introjs-hint {
    box-sizing: content-box;
    position: absolute;
    background: 0 0;
    width: 20px;
    height: 15px;
    cursor: pointer
}

.introjs-hint:focus {
    border: 0;
    outline: 0
}

.introjs-hint:hover>.introjs-hint-pulse {
    background-color: rgba(60, 60, 60, .57)
}

.introjs-hidehint {
    display: none
}

.introjs-fixedhint {
    position: fixed
}

@keyframes introjspulse {
    0% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, .7)
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px transparent
    }

    100% {
        transform: scale(.95);
        box-shadow: 0 0 0 0 transparent
    }
}

.introjs-hint-pulse {
    box-sizing: content-box;
    width: 15px;
    height: 15px;
    border-radius: 30px;
    background-color: rgba(136, 136, 136, .24);
    z-index: 10;
    position: absolute;
    transition: all .2s ease-out;
    animation: introjspulse 2s infinite
}

.introjs-hint-no-anim .introjs-hint-pulse {
    animation: none
}

.introjs-hint-dot {
    box-sizing: content-box;
    background: 0 0;
    border-radius: 60px;
    height: 50px;
    width: 50px;
    position: absolute;
    top: -18px;
    left: -18px;
    z-index: 1;
    opacity: 0
}

.cLD4YbNqIJl6u2ZcPFOp {
  background: white;
  box-shadow: 3px 3px 8px 8px rgba(0, 0, 0, 0.1);
  flex-direction: column;
  display: flex;
  justify-content: center;
  color: #152c5b;
  align-items: center;
  border-radius: 1rem;
  min-width: 30vw;
  align-items: center;
}

/*!
 * Quill Editor v1.3.7
 * https://quilljs.com/
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0px;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before {
  pointer-events: none;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor ul,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol,
.ql-editor ul {
  padding-left: 1.5em;
}
.ql-editor ol > li,
.ql-editor ul > li {
  list-style-type: none;
}
.ql-editor ul > li::before {
  content: '\2022';
}
.ql-editor ul[data-checked=true],
.ql-editor ul[data-checked=false] {
  pointer-events: none;
}
.ql-editor ul[data-checked=true] > li *,
.ql-editor ul[data-checked=false] > li * {
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before,
.ql-editor ul[data-checked=false] > li::before {
  color: #777;
  cursor: pointer;
  pointer-events: all;
}
.ql-editor ul[data-checked=true] > li::before {
  content: '\2611';
}
.ql-editor ul[data-checked=false] > li::before {
  content: '\2610';
}
.ql-editor li::before {
  display: inline-block;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li:not(.ql-direction-rtl)::before {
  margin-left: -1.5em;
  margin-right: 0.3em;
  text-align: right;
}
.ql-editor li.ql-direction-rtl::before {
  margin-left: 0.3em;
  margin-right: -1.5em;
}
.ql-editor ol li:not(.ql-direction-rtl),
.ql-editor ul li:not(.ql-direction-rtl) {
  padding-left: 1.5em;
}
.ql-editor ol li.ql-direction-rtl,
.ql-editor ul li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor ol li {
  counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  counter-increment: list-0;
}
.ql-editor ol li:before {
  content: counter(list-0, decimal) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor ol li.ql-indent-1:before {
  content: counter(list-1, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-1 {
  counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor ol li.ql-indent-2:before {
  content: counter(list-2, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-2 {
  counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor ol li.ql-indent-3:before {
  content: counter(list-3, decimal) '. ';
}
.ql-editor ol li.ql-indent-3 {
  counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor ol li.ql-indent-4:before {
  content: counter(list-4, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-4 {
  counter-reset: list-5 list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor ol li.ql-indent-5:before {
  content: counter(list-5, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-5 {
  counter-reset: list-6 list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor ol li.ql-indent-6:before {
  content: counter(list-6, decimal) '. ';
}
.ql-editor ol li.ql-indent-6 {
  counter-reset: list-7 list-8 list-9;
}
.ql-editor ol li.ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor ol li.ql-indent-7:before {
  content: counter(list-7, lower-alpha) '. ';
}
.ql-editor ol li.ql-indent-7 {
  counter-reset: list-8 list-9;
}
.ql-editor ol li.ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor ol li.ql-indent-8:before {
  content: counter(list-8, lower-roman) '. ';
}
.ql-editor ol li.ql-indent-8 {
  counter-reset: list-9;
}
.ql-editor ol li.ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor ol li.ql-indent-9:before {
  content: counter(list-9, decimal) '. ';
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family: Georgia, Times New Roman, serif;
}
.ql-editor .ql-font-monospace {
  font-family: Monaco, Courier New, monospace;
}
.ql-editor .ql-size-small {
  font-size: 0.75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor.ql-blank::before {
  color: rgba(0,0,0,0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: '';
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
/* Previously: border-bottom: 1px solid #e1edff on .ant-collapse-header.
   That blue divider sat just inside the rounded gray outer border of the
   .skillSection card, so near each 8px rounded corner the curved gray
   border ran parallel to the straight blue line and read as a double
   line. Header/content separation is already handled by the header
   padding + the tag chips below, so the divider is dropped entirely. */
.skillSection > .ant-collapse-header {
  border-bottom: none;
}
.div th, .div td
{
    padding: 0px;
    text-align: center;
    position: relative;
        border: 1px solid #8080803b;
}
.FontTextBlue, .textTeamHead
{
    text-align: start !important;
}
.match input.ButtonNRate,
.match input.ButtonYRate
{
  display: none;
}
.teamNameForOdds
{
   font-weight: 600;
}
.textTeamHead span
{ 
    font-weight: 500;
    text-transform: uppercase;
}
.textTeamHead span b
{ 
    font-weight: 600;
    /* text-transform: uppercase; */
}
.FontTextWhite10px
{
    text-align: center !important;
}
.plus_text
{
 font-weight: 600;
 color: blue;
 font-size: 16px;
}
.minus_text
{
 font-weight: 600;
 color: red;
  font-size: 16px;
}
.old-match-bets
{
    background-color: white;
}
.textTeamHead p {
    margin-top: 10px;
    font-weight: 400 !important;
}
.cardStyle input
{
  height: 40px !important;
} 