.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;
    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;
}
.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;
}
.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;
    }
}
