@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");

:root {
    --blue: #007BFF;
    --indigo: #6610F2;
    --purple: #6F42C1;
    --pink: #E83E8C;
    --red: #DC3545;
    --orange: #FD7E14;
    --yellow: #FFC107;
    --green: #28A745;
    --teal: #20C997;
    --cyan: #17A2B8;
    --white: #FFF;
    --gray: #6C757D;
    --gray-dark: #343A40;
    --primary: #007BFF;
    --secondary: #6C757D;
    --success: #28A745;
    --info: #17A2B8;
    --warning: #FFC107;
    --danger: #DC3545;
    --light: #F8F9FA;
    --dark: #343A40;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@keyframes fadeIn {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes flicker {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.blink-1 {
    animation: flicker ease 1s infinite alternate;
}

.blink-2 {
    animation: flicker ease 2s infinite alternate;
}

.blink-3 {
    animation: flicker ease 3s infinite alternate;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
    outline: 0 !important;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.5 !important;
    color: #000;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit;
}

ol,
ul,
dl {
    margin-top: 0;
    margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: .5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sub {
    bottom: -.25em;
}

sup {
    top: -.5em;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

a:not([href]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):hover {
    color: inherit;
    text-decoration: none;
}

pre,
code,
kbd,
samp {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 1em;
}

pre {
    margin-top: 0;
    margin-bottom: 1rem;
    overflow: auto;
}

figure {
    margin: 0 0 1rem;
}

img {
    vertical-align: middle;
    border-style: none;
}

svg {
    overflow: hidden;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

svg.red {
    stroke: #f00 !important;
}

svg.green {
    stroke: #0f0 !important;
}

table {
    border-collapse: collapse;
}

caption {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom;
}

th {
    text-align: inherit;
}

label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

button {
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    background: none;
    padding: 0;
}

button:focus {
    outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

select {
    word-wrap: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: 0;
    background: #000;
    color: #fff;
    padding: 10px 30px;
    border: 1px solid #BF2E2E;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

textarea {
    overflow: auto;
    resize: vertical;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    outline-offset: -2px;
    -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    font: inherit;
    -webkit-appearance: button;
}

output {
    display: inline-block;
}

summary {
    display: list-item;
    cursor: pointer;
}

template {
    display: none;
}

[hidden] {
    display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
}

h1,
.h1 {
    font-size: 2.5rem;
}

h2,
.h2 {
    font-size: 2rem;
}

h3,
.h3 {
    font-size: 1.75rem;
}

h4,
.h4 {
    font-size: 1.5rem;
}

h5,
.h5 {
    font-size: 1.25rem;
}

h6,
.h6 {
    font-size: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
}

small,
.small {
    font-size: 80%;
    font-weight: 400;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.list-inline-item {
    display: inline-block;
}

.list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d;
}

.blockquote-footer::before {
    content: "\2014\00A0";
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.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,
.col-auto,
.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,
.col-sm-auto,
.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,
.col-md-auto,
.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,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.row-cols-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.row-cols-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.row-cols-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.row-cols-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.row-cols-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.row-cols-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333%;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
}

.col-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66667%;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
}

.col-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333%;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}

.col-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66667%;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
}

.col-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.col-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333%;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
}

.col-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66667%;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
}

.col-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.col-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333%;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
}

.col-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66667%;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%;
}

.col-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.order-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
    -ms-flex-order: 13;
    order: 13;
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
    -ms-flex-order: 6;
    order: 6;
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
    -ms-flex-order: 7;
    order: 7;
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
    -ms-flex-order: 8;
    order: 8;
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
    -ms-flex-order: 9;
    order: 9;
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10;
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
    -ms-flex-order: 11;
    order: 11;
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
    -ms-flex-order: 12;
    order: 12;
}

.offset-1 {
    margin-left: 8.33333%;
}

.offset-2 {
    margin-left: 16.66667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.33333%;
}

.offset-5 {
    margin-left: 41.66667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.33333%;
}

.offset-8 {
    margin-left: 66.66667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.33333%;
}

.offset-11 {
    margin-left: 91.66667%;
}

.modal-open {
    overflow: hidden;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
    background: url("../imgs/modal.png") no-repeat;
    background-size: 120% 180%;
    background-position-y: 50%;
    background-position-x: 50%;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none;
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    -ms-transform: translate(0, -50px);
    transform: translate(0, -50px);
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

.modal-dialog-scrollable {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-height: -webkit-calc(100% - 1rem);
    max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
    max-height: -webkit-calc(100vh - 1rem);
    max-height: calc(100vh - 1rem);
    overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
    overflow-y: auto;
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: -webkit-calc(100% - 1rem);
    min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
    display: block;
    height: -webkit-calc(100vh - 1rem);
    height: calc(100vh - 1rem);
    content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
    max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
    content: none;
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.9;
}

.modal-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    -webkit-border-top-left-radius: -webkit-calc(0.3rem - 1px);
    border-top-left-radius: calc(0.3rem - 1px);
    -webkit-border-top-right-radius: -webkit-calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
}

.modal-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}

.modal-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    -webkit-border-bottom-right-radius: -webkit-calc(0.3rem - 1px);
    border-bottom-right-radius: calc(0.3rem - 1px);
    -webkit-border-bottom-left-radius: -webkit-calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
    margin: 0.25rem;
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.d-inline-flex {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
}

.flex-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}

.flex-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}

.flex-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    -webkit-flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    -webkit-flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}

.justify-content-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}

.justify-content-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}

.align-items-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.align-items-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}

.align-items-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}

.align-content-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}

.align-content-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}

.align-content-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}

.align-content-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}

.align-content-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}

.align-content-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}

.align-self-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}

.align-self-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}

.align-self-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}

.align-self-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
}

.align-self-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}

.align-self-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

.text-monospace {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
    text-align: justify !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-lighter {
    font-weight: lighter !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-weight-bolder {
    font-weight: bolder !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #0056b3 !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #494f54 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #19692c !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #0f6674 !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #ba8b00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #a71d2a !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover,
a.text-light:focus {
    color: #cbd3da !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover,
a.text-dark:focus {
    color: #121416 !important;
}

.text-body {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-gray {
    color: #94a2ac !important;
}

.text-black {
    color: #000;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-break {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}

.text-reset {
    color: inherit !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }
}

.fade {
    -webkit-transition: opacity 0.15s linear;
    -o-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height 0.35s ease;
    -o-transition: height 0.35s ease;
    transition: height 0.35s ease;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb.woff2") format("woff2"), url("../fonts/IRANYekanWeb.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb-Light.woff2") format("woff2"), url("../fonts/IRANYekanWeb-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb-Black.woff2") format("woff2"), url("../fonts/IRANYekanWeb-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb-Bold.woff2") format("woff2"), url("../fonts/IRANYekanWeb-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb-ExtraBold.woff2") format("woff2"), url("../fonts/IRANYekanWeb-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb-Medium.woff2") format("woff2"), url("../fonts/IRANYekanWeb-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'IRANYekan';
    src: url("../fonts/IRANYekanWeb-Thin.woff2") format("woff2"), url("../fonts/IRANYekanWeb-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
}

.thinFont {
    font-weight: 100;
}

.lightFont {
    font-weight: 300;
}

.regularFont,
html,
body {
    font-weight: normal;
}

.mediumFont {
    font-weight: 500;
}

.boldFont,
.mainContent .topItems .right .item .subTitle .bold,
.mainContent .topItems .left .item .subTitle .bold,
.accordion .listItem .iconRight,
.bankCard .bankName,
.levelDesc .levelTitle,
#convertModal .elem .text .bold,
.mainDashboard .leftCircleContainer .circleHolder .circle .name,
.taadol .taadolFirst::before,
.taadol .carouselContainer::before,
.taadol .taadolThird::before,
.auth .authBox.invite .right .prof .name,
.auth .authBox.invite .right .state .title {
    font-weight: 700;
}

.extraBoldFont {
    font-weight: 800;
}

.blackFont {
    font-weight: 900;
}

.font-9,
.sendMailBox .typeTitle,
.hangItems .item_content .code,
.mainDashboard .cartItem .assets .type.type1 .detail .typeTitle {
    font-size: 9px !important;
}

.font-10,
.mainContent .legend .item,
.mainContent .searchBox .cat,
.hangItems .item_content,
.card .topLabel,
.card .box .content,
.levelDesc .levelDescription,
.modal .node .hint,
.mainDashboard .leftCircleContainer .circleHolder .circle,
.inviteForm .node .hint,
.inviteForm .submitBtn,
.walletContainer .formRow .selectBox label {
    font-size: 10px !important;
}

.font-12,
.mainContent .topItems,
.messageBox .text,
.levelDesc .levelType,
.linkBox,
.tableLegend .item,
#convertModal .elem,
.walletContainer .balance .amount {
    font-size: 12px !important;
}

.font-13,
.hangItems .item__content .pos {
    font-size: 13px !important;
}

.pos {
    display: inline-block;
    font-weight: bolder !important;
}

.pos span {
    opacity: 0.5;
}

.font-14,
html,
body,
.mainContent .topItems .right .item .subTitle .bold,
.mainContent .topItems .left .item .subTitle .bold,
.userInfoCard .item .stats .statItem .title,
.userInfoCard .item .stats .statItem .subTitle,
.pageTitle,
.walletContainer .title {
    font-size: 14px !important;
    direction: ltr;
}

.font-16,
.userInfoCard .item .avatar .name,
.card .box .content .title,
.iconTitle,
#convertModal .elem .text .bold,
.mainDashboard .leftCircleContainer .circleHolder .circle .name,
.mainDashboard .cartItem .assets .iconn .count,
.auth .authBox h1 {
    font-size: 16px !important;
}

.font-18,
.card .topLabel .bold,
.card .box .content strong,
.card .box .content .mainBtn,
.bankCard .cardNum,
.walletContainer .balance .amount .bold {
    font-size: 18px !important;
}

.font-20,
.accordion .listItem .iconRight,
.auth .authBox.invite .right .prof .name {
    font-size: 20px !important;
}

.font-21,
#giftReject .emtiaz span.bold,
#giftReject .emtiaz span.green {
    font-size: 21px !important;
}

.font-22 {
    font-size: 22px !important;
}

.font-28,
.taadol .taadolFirst::before,
.taadol .taadolThird::before {
    font-size: 28px !important;
}

.font-38 {
    font-size: 38px !important;
}

* {
    outline: none !important;
}

html,
body {
    font-family: IRANYekan, Montserrat, sans-serif !important;
    text-align: right;
    color: #fff;
    overflow-x: hidden !important;
    direction: rtl;
    background: #000;
    line-height: 1.5 !important;
}

ul {
    margin: 0;
    padding: 0;
}

a,
a:focus,
a:hover,
a:-webkit-any-link,
a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

li:not(.list) {
    padding: 0;
    margin: 0;
    list-style: none;
}

input,
input:focus {
    border: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: transparent;
}

input[type="number"],
input[type="number"]:hover,
input[type="number"]:focus {
    -moz-appearance: textfield;
    -webkit-appearance: none;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mainContent {
    position: relative;
    height: 100vh;
    padding: 30px 15px;
    background: url("../imgs/body.png") no-repeat;
    background-size: 100%;
    background-position-y: 20px;
}

.mainContent .topItems {
    position: absolute;
    top: 25px;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    z-index: 2;
    padding: 0 25px;
}

.mainContent .topItems .right,
.mainContent .topItems .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.mainContent .topItems .right .item,
.mainContent .topItems .left .item {
    text-align: center;
}

.mainContent .topItems .right .item .iconHolder,
.mainContent .topItems .left .item .iconHolder {
    width: 40px;
    height: 40px;
    background: #000;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 8px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #BF2E2E;
}

.mainContent .topItems .right .item .iconHolder.gold,
.mainContent .topItems .left .item .iconHolder.gold {
    background: #FFC660;
}

.mainContent .topItems .right .item .iconHolder.gold svg,
.mainContent .topItems .left .item .iconHolder.gold svg {
    stroke: #000;
}

.mainContent .topItems .right .item .iconHolder.rotate,
.mainContent .topItems .left .item .iconHolder.rotate {
    margin-bottom: 63px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.mainContent .topItems .right .item .iconHolder.rotate.active,
.mainContent .topItems .left .item .iconHolder.rotate.active {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mainContent .topItems .right .item .iconHolder.rotate.active svg,
.mainContent .topItems .left .item .iconHolder.rotate.active svg {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mainContent .topItems .right .item .iconHolder svg,
.mainContent .topItems .left .item .iconHolder svg {
    width: 12px;
    height: 12px;
}

.mainContent .topItems .right .item .title,
.mainContent .topItems .left .item .title {
    color: #EC9999;
    margin-bottom: 5px;
}

.mainContent .legend {
    position: absolute;
    top: 138px;
    right: 10%;
    z-index: 2;
}

.mainContent .legend .item {
    position: relative;
    margin-bottom: 5px;
}

.mainContent .legend .item::before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 3px;
    background: #fff;
    margin-left: 10px;
}

.mainContent .legend .item.green::before {
    background: #28a745;
    -webkit-box-shadow: 0 0 15px 0 #28a745;
    box-shadow: 0 0 15px 0 #28a745;
}

.mainContent .legend .item.yellow::before {
    background: #ffc107;
    -webkit-box-shadow: 0 0 15px 0 #ffc107;
    box-shadow: 0 0 15px 0 #ffc107;
}

.mainContent .searchBox {
    position: absolute;
    top: 22px;
    z-index: 3;
    width: 30%;
    height: 43px;
    padding: 10px 20px;
    right: -webkit-calc(50% - 15%);
    right: calc(50% - 15%);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.mainContent .searchBox .cat {
    color: #EC9999;
    padding-left: 10px;
    cursor: pointer;
}

.mainContent .searchBox .cat:hover .drop {
    opacity: 1;
    visibility: visible;
}

.mainContent .searchBox .cat:hover .icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.mainContent .searchBox .cat .icon {
    width: 13px;
    height: 13px;
    stroke: #BF2E2E;
    margin-left: 5px;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.mainContent .searchBox .cat .drop {
    position: absolute;
    top: 100%;
    width: 90px;
    background: #000;
    z-index: 2;
    padding: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.mainContent .searchBox .cat .drop ul li {
    padding: 3px 1px;
    border-bottom: 1px solid rgba(118, 118, 118, 0.5);
}

.mainContent .searchBox .cat .drop ul li:last-child {
    border-bottom: none;
}

.mainContent .searchBox .cat .drop ul li:hover {
    color: #BF2E2E;
}

.mainContent .searchBox input[type="text"] {
    background: transparent;
    color: #fff;
    width: 50%;
}

.mainContent .searchBox input[type="text"]::-webkit-input-placeholder {
    color: #fff;
    font-size: 11px;
}

.mainContent .searchBox input[type="text"]::-moz-placeholder {
    color: #fff;
    font-size: 11px;
}

.mainContent .searchBox input[type="text"]:-ms-input-placeholder {
    color: #fff;
    font-size: 11px;
}

.mainContent .searchBox input[type="text"]:-moz-placeholder {
    color: #fff;
    font-size: 11px;
}

.mainContent .searchBox .searchBtn svg {
    width: 15px;
    height: 15px;
    stroke: #BF2E2E;
}

.mainContent .contentWrapper {
    position: relative;
    z-index: 1;
}

.hexagons {
    position: fixed;
    bottom: -293px;
    width: 360px;
    height: auto;
    right: 15%;
    opacity: 0.5;
    stroke: transparent;
}

.hexagons .hex1 {
    -webkit-animation: fadingH 3s infinite;
    -moz-animation: fadingH 3s infinite;
}

.hexagons .hex2 {
    -webkit-animation: fadingH 3s infinite;
    -moz-animation: fadingH 3s infinite;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.hexagons .hex3 {
    -webkit-animation: fadingH 3s infinite;
    -moz-animation: fadingH 3s infinite;
    -webkit-animation-delay: 1.6s;
    animation-delay: 1.6s;
}

.hexagons .hex4 {
    -webkit-animation: fadingH 3s infinite;
    -moz-animation: fadingH 3s infinite;
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

.alertContainer {
    position: relative;
    min-height: 60px;
}

.messageBox {
    position: relative;
    width: 100%;
    min-height: 55px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: url("../imgs/messageback.svg") no-repeat;
    background-size: 100%;
}

.messageBox.closed {
    display: none;
}

.messageBox .close {
    font-size: 20px;
    color: #BF2E2E;
    position: relative;
    right: 14px;
    top: 9px;
}

.messageBox .imgBox {
    overflow: hidden;
    width: 80px;
    height: 50px;
    margin-right: 23px;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: end;
    transform: skew(-45deg, 0deg);
    -webkit-transform: skew(-45deg, 0deg);
    -moz-transform: skew(-45deg, 0deg);
    -ms-transform: skew(-45deg, 0deg);
    -o-transform: skew(-45deg, 0deg);
}

.messageBox .imgBox img {
    transform: skew(45deg, 0deg);
    -webkit-transform: skew(45deg, 0deg);
    -moz-transform: skew(45deg, 0deg);
    -ms-transform: skew(45deg, 0deg);
    -o-transform: skew(45deg, 0deg);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    min-width: 165%;
}

.messageBox .title {
    padding: 0 25px 0 15px;
}

.messageBox .text {
    padding: 0 15px;
}

.messageBox .arrows {
    padding: 0 15px;
}

.messageBox .arrows .large {
    stroke: #BF2E2E;
    margin-right: -13px;
    opacity: 0.7;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.messageBox .arrows .small {
    width: 13px;
    height: 13px;
    margin-right: 10px;
}

.sendMailBox p {
    margin: 0;
}

.sendMailBox p.title {
    color: #EC9999;
    font-size: 9px;
}

.sendMailBox p span {
    font-size: 9px;
    color: #767676;
}

.sendMailBox p svg {
    stroke: transparent;
    fill: #BF2E2E;
}

.sendMailBox .typeTitle {
    transform: skew(-25deg, 0deg);
    -webkit-transform: skew(-25deg, 0deg);
    -moz-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    -o-transform: skew(-25deg, 0deg);
    background: #BF2E2E;
    padding: 4px 7px;
    margin-left: 10px;
}

.sendMailBox .typeTitle p {
    transform: skew(25deg, 0deg);
    -webkit-transform: skew(25deg, 0deg);
    -moz-transform: skew(25deg, 0deg);
    -ms-transform: skew(25deg, 0deg);
    -o-transform: skew(25deg, 0deg);
}

.sendMailBox .link {
    transform: skew(-25deg, 0deg);
    -webkit-transform: skew(-25deg, 0deg);
    -moz-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    -o-transform: skew(-25deg, 0deg);
    background: #767676;
    padding: 1px 7px;
    margin-right: 10px;
    line-height: 1.2;
}

.sendMailBox .link svg {
    width: 10px;
    height: 10px;
    transform: skew(25deg, 0deg) rotate(180deg);
    -webkit-transform: skew(25deg, 0deg) rotate(180deg);
    -moz-transform: skew(25deg, 0deg) rotate(180deg);
    -ms-transform: skew(25deg, 0deg) rotate(180deg);
    -o-transform: skew(25deg, 0deg) rotate(180deg);
}

.owl-carousel {
    direction: ltr;
}

.owl-carousel .owl-nav {
    display: block !important;
    height: 0;
}

.owl-carousel .owl-nav button {
    position: absolute;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
}

.owl-carousel .owl-nav button.owl-next {
    right: -30px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.owl-carousel .owl-nav button.owl-prev {
    left: -30px;
}

.owl-carousel .owl-nav button svg {
    width: 15px;
    height: 15px;
}

.mainBtn {
    cursor: pointer !important;
    all: unset;
    padding: 10px 15px;
    background: #fff;
    color: #000 !important;
    text-align: center;
    display: inline-block;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.mainBtn.gold:hover {
    background: #806030 !important;
    border-color: #806030 !important;
    color: #000 !important;
}

.mainBtn.green:hover {
    background: #007f1d !important;
    border-color: #007f1d !important;
    color: #fff !important;
}

.mainBtn.gray:hover {
    background: #555 !important;
    border-color: #555 !important;
    color: #fff !important;
}

.mainBtn.transparent {
    background: transparent;
    color: #fff !important;
    border: 1px solid #fff;
}

.mainBtn.gold {
    background: #FFC660;
    color: #000 !important;
    border: 1px solid #FFC660;
}

.mainBtn.green {
    background: #28A745;
    color: #fff !important;
    border: 1px solid #28A745;
}

.mainBtn.blue {
    background: #007BFF;
    color: #fff !important;
    border: 1px solid #007BFF;
}

.mainBtn.red {
    background: #BF2E2E;
    color: #fff !important;
    border: 1px solid #BF2E2E;
}

.mainBtn.gray {
    background: #767676;
    color: #fff !important;
    border: 1px solid #767676;
}

.hangItems {
    position: relative;
    z-index: 2;
    width: 240px;
    min-height: 150px;
}

.hangItems .item {
    width: 70px;
    height: 70px;
    display: inline-block;
    position: absolute;
    z-index: 2;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.hangItems .item.position0 {
    border: 1px solid #EC9999 !important;
}

.hangItems .item.position1 {
    border: 1px solid #EC9999 !important;
}

.hangItems .item.position2 {
    border: 1px solid #EC9999 !important;
}

.hangItems .item.position3 {
    border: 1px solid #EC9999 !important;
}

.hangItems .item.position4 {
    border: 1px solid #EC9999 !important;
}

.line0 {
    background-color: #000 !important;
    stroke: #000 !important;
}

.line1 {
    background-color: #fff !important;
    stroke: #fff !important;
}

.line2 {
    background-color: #767676 !important;
    stroke: #767676 !important;
}

.line3 {
    background-color: #A58346 !important;
    stroke: #A58346 !important;
}

.line4 {
    background-color: #78007C !important;
    stroke: #78007C !important;
}

.text-position0 {
    color: #fff;
}

.text-position1 {
    color: #fff;
}

.text-position2 {
    color: #767676;
}

.text-position3 {
    color: #A58346;
}

.text-position4 {
    color: #F700FF;
}

.shadow-position0 {
    box-shadow: 0 0 10px 5px #777 !important;
}

.shadow-position1 {
    box-shadow: 0 0 10px 5px #fff !important;
}

.shadow-position2 {
    box-shadow: 0 0 10px 5px #767676 !important;
}

.shadow-position3 {
    box-shadow: 0 0 10px 5px #A58346 !important;
}

.shadow-position4 {
    box-shadow: 0 0 10px 5px #F700FF !important;
}

.noshadow, .noshadow:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.position0 {
    background: #000;
    border-color: #777;
    -webkit-box-shadow: 0 0 50px 0 transparent;
    box-shadow: 0 0 50px 0 transparent;
}

.position0:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.4);
}

.position1 {
    background: #fff;
    border-color: #fff;
    -webkit-box-shadow: 0 0 50px 0 transparent;
    box-shadow: 0 0 50px 0 transparent;
}

.position1:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.7);
}

.position2 {
    background: #767676;
    border-color: #fff;
    -webkit-box-shadow: 0 0 50px 0 transparent;
    box-shadow: 0 0 50px 0 transparent;
}

.position2:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 50px 0 rgba(255, 255, 255, 0.4);
}

.position3 {
    background: #A58346;
    border-color: #E5B96A;
    -webkit-box-shadow: 0 0 50px 0 transparent;
    box-shadow: 0 0 50px 0 transparent;
}

.position3:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0.4);
    box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0.4);
}

.position4 {
    background: #78007C;
    border-color: #F700FF;
    -webkit-box-shadow: 0 0 50px 0 transparent;
    box-shadow: 0 0 50px 0 transparent;
}

.position4:hover {
    -webkit-box-shadow: 0 0 50px 0 rgba(247, 0, 255, 0.4);
    box-shadow: 0 0 50px 0 rgba(247, 0, 255, 0.4);
}

.hangItems .item.right {
    right: 0;
    top: 0;
}

.hangItems .item.center {
    right: -webkit-calc(50% - 52px);
    right: calc(50% - 52px);
    top: 60px;
}

.hangItems .item.center .line {
    stroke: #777;
}

.hangItems .item.left {
    left: 35px;
    top: 0;
}

.hangItems .item.left .line {
    stroke: #FFC660;
}

.hangItems .item.empty {
    border-color: #777 !important;
}

.hangItems .item.red {
    border-color: #c00 !important;
}

.hangItems .item.yellow {
    border-color: #cc0 !important;
}

.hangItems .item.green {
    border-color: #0c0 !important;
}

.hangItems .item_content {
    text-align: center;
    position: relative;
    right: -3px;
    top: 0;
    width: 70px;
    height: 70px;
    line-height: 1.2;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.hangItems .item_content svg {
    width: 15px;
    height: 15px;
    margin-bottom: 6px;
}

.hangItems .item_content .line {
    width: 55px;
    height: 5px;
    margin-bottom: 0;
}

.mainTable {
    width: 100%;
    text-align: center;
}

.mainTable .green {
    background: #28A745 !important;
    color: #fff;
}

.mainTable .orange {
    background: #fd7e14 !important;
    color: #fff;
}

.mainTable .red {
    background: #BF2E2E !important;
    color: #fff;
}

.mainTable .pink {
    background: #EC9999 !important;
    color: #fff;
}

.mainTable svg {
    width: 15px;
    height: 15px;
}

.mainTable svg.green {
    stroke: #28A745;
    background: transparent !important;
}

.mainTable svg.red {
    stroke: #BF2E2E;
    background: transparent !important;
}

.mainTable thead th {
    background: #BF2E2E;
    color: #fff;
    padding: 5px;
    border: 1px solid #000;
}

.mainTable tbody svg {
    stroke: #000;
}

.mainTable tbody tr .checkLabel label {
    border: 1px solid #000;
}

.mainTable tbody tr .checkLabel label::after {
    color: #000;
}

.mainTable tbody tr:nth-child(even) td {
    padding: 5px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #000;
}

.mainTable tbody tr:nth-child(odd) td {
    padding: 5px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid #000;
}

.mainTable tbody tr.active td {
    background: rgba(255, 255, 255, 0.5);
}

.mainTable tbody tr.active + .hidden {
    display: table-row;
    width: 100%;
}

.mainTable tbody tr.hidden {
    display: none;
    height: 100px;
}

.mainTable tbody tr.hidden .medalLabel {
    float: right;
    margin-bottom: 7px;
    background: #fff;
    color: #000;
}

.medalLabel {
    border: 2px solid #777;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 5px;
    direction: ltr;
    width: 170px;
    max-width: 170px;
    height: 40px;
    margin-right: 30px;
    font-size: 11px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.medalLabel.empty {
    background: #000;
    color: #fff;
}

.medalLabel.red {
    background: #BF2E2E;
    color: #fff;
}

.medalLabel.green {
    background: #2cc970;
    color: #fff;
}

.medalLabel.yellow {
    background: #eddf64;
    color: #fff;
}

.medalLabel.full {
    background: #fff;
    color: #000;
}

.medalLabel.empty span.medal {
    background: #000;
    border: 2px solid #777;
    color: #BF2E2E;
}

.medalLabel.full span.medal {
    background: #fff;
    border: 2px solid #777;
    color: #000;
}

.medalLabel span.medal * {
    transform: rotate(-45deg);
}

.medalLabel.empty {
    border: 3px solid #777 !important;
}

.medalLabel.full.border-red, .medalLabel.red.border-red, .medalLabel.green.border-red, .medalLabel.yellow.border-red {
    border: 3px solid #a83635 !important;
}

.medalLabel.full.border-yellow, .medalLabel.red.border-yellow, .medalLabel.green.border-yellow, .medalLabel.yellow.border-yellow {
    border: 3px solid #eddf64 !important;
}

.medalLabel.full.border-green, .medalLabel.red.border-green, .medalLabel.green.border-green, .medalLabel.yellow.border-green {
    border: 3px solid #2cc970 !important;
}

.medal.position0 {
    background: #000 !important;
    border-color: #777 !important;
    color: #fff !important;
}

.medal.position1 {
    background: #fff !important;
    border-color: #777 !important;
    box-shadow: 0 0 10px #777 !important;
    color: #000 !important;
}

.medal.position2 {
    background: #767676 !important;
    border-color: #aaa !important;
    box-shadow: 0 0 10px #767676 !important;
    color: #fff !important;
}

.medal.position3 {
    background: #A58346 !important;
    border-color: #E5B96A !important;
    box-shadow: 0 0 10px #A58346 !important;
    color: #fff !important;
}

.medal.position4 {
    background: #78007C !important;
    border-color: #F700FF !important;
    box-shadow: 0 0 10px #78007C !important;
    color: #fff !important;
}

.medalLabel.spGreen {
    background: #28A745;
}

.medalLabel.spGold {
    background: #FFC660;
}

.medalLabel span.medal > a {
    padding: 0 5px;
}

.medalLabel span.medal > a span {
    padding: 5px 0;
}

.medalLabel span.separator {
    border-right: 1px solid rgba(118, 118, 118, 0.3);
}

.medalLabel span:first-child {
    border-left: none;
}

.medalLabel span:last-child {
    border-right: none;
}

.medalLabel span.medal {
    width: 25px;
    height: 25px;
    position: absolute;
    right: -13.5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.medalLabel span.medal svg {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.medalBadge {
    display: inline-block;
    width: 25px;
    height: 25px;
    right: -13.5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.medalBadge .medal {
    display: inline-block;
    width: 100%;
    height: 100%;
    border: solid 2px;
}

.medalBadge .medal span {
    position: relative;
    top: -2px;
    left: -1px;
}

.medalBadge svg, .medalBadge img {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.tabContainer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.tabContainer .tab {
    cursor: pointer;
    padding: 10px 25px;
    border: 1px solid #fff;
    border-top: none;
    transform: skew(-45deg, 0deg);
    -webkit-transform: skew(-45deg, 0deg);
    -moz-transform: skew(-45deg, 0deg);
    -ms-transform: skew(-45deg, 0deg);
    -o-transform: skew(-45deg, 0deg);
}

.tabContainer .tab:first-child {
    border-right: none;
}

.tabContainer .tab:last-child {
    border-left: none;
}

.tabContainer .tab.active {
    background: #000;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000), color-stop(100%, #BF2E2E));
    background: -o-linear-gradient(top, #000 0%, #BF2E2E 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#BF2E2E));
    background: linear-gradient(to bottom, #000 0%, #BF2E2E 100%);
}

.tabContainer .tab.active span svg {
    stroke: #fff;
}

.tabContainer .tab > span {
    display: block;
    transform: skew(45deg, 0deg);
    -webkit-transform: skew(45deg, 0deg);
    -moz-transform: skew(45deg, 0deg);
    -ms-transform: skew(45deg, 0deg);
    -o-transform: skew(45deg, 0deg);
}

.tabContainer .tab span svg {
    margin-left: 10px;
}

option {
    background: #EFEFEF;
    color: #000;
    padding: 10px 20px;
}

option.yekan {
    font-family: IRANYekan, Tahoma, sans-serif !important;
}

.checkLabel {
    position: relative;
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

.checkLabel input[type="checkbox"],
.checkLabel input[type="radio"] {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.checkLabel input[type="checkbox"]:checked + .label::after,
.checkLabel input[type="radio"]:checked + .label::after {
    opacity: 1 !important;
}

.checkLabel .label {
    cursor: pointer;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #fff;
}

.checkLabel .label::after {
    content: '\2713';
    position: absolute;
    left: 0;
    top: -12px;
    font-size: 28px;
    opacity: 0;
}

.userInfoCard {
    max-width: 850px;
    margin: auto;
    background: url("../imgs/body.png") no-repeat;
    background-size: 100% 100%;
    padding: 70px;
}

.userInfoCard .owl-nav .owl-prev {
    padding: 10px !important;
    background: #BF2E2E;
    left: -55px;
}

.userInfoCard .owl-nav .owl-next {
    padding: 10px !important;
    background: #BF2E2E;
    right: -55px;
}

.userInfoCard .owl-item {
    padding-top: 20px;
    padding-right: 30px;
    padding-left: 30px;
}

.userInfoCard .item {
    direction: rtl;
    padding-bottom: 30px;
}

.userInfoCard .item .stats {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px auto 40px;
}

.userInfoCard .item .stats .statItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}

.userInfoCard .item .stats .statItem .iconHolder {
    width: 50px;
    height: 50px;
    border: 1px solid #EC9999;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #000;
    margin-left: 10px;
}

.userInfoCard .item .stats .statItem .iconHolder svg {
    stroke: #fff;
}

.userInfoCard .item .stats .statItem .title {
    color: #EC9999;
    margin-bottom: 5px;
}

.userInfoCard .item .stats .statItem .subTitle {
    margin-bottom: 0;
}

.userInfoCard .item .avatar {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.userInfoCard .item .avatar figure {
    width: 120px;
    height: 120px;
}

.userInfoCard .item .avatar figure img {
    -o-object-fit: cover;
    object-fit: cover;
}

.userInfoCard .item .avatar .name {
    width: -webkit-calc(100% - 120px);
    width: calc(100% - 120px);
    max-width: -webkit-calc(100% - 120px);
    max-width: calc(100% - 120px);
    color: #fff;
    padding: 10px;
}

.userInfoCard .item .contactRow {
    margin-bottom: 6px;
}

.userInfoCard .item .contactRow svg {
    width: 15px;
    height: 15px;
    margin-left: 8px;
}

.userInfoCard .item .hangItems {
    width: 100%;
    text-align: center;
}

.userInfoCard .item .hangItems .item {
    position: relative;
    left: 0;
    top: 0;
    -ms-transform: scale(2) rotate(45deg);
    transform: scale(2) rotate(45deg);
    -webkit-transform: scale(2) rotate(45deg);
    -moz-transform: scale(2) rotate(45deg);
    margin-top: 58px;
}

.levelTitle {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

hr {
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    height: 1px !important;
    background: #767676 !important;
}

.levelTitle::after {
    content: '';
    position: absolute;
    left: 0;
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    height: 1px;
    background: #767676;
}

.levelTitle.noLine::after {
    display: none;
}

.levelTitle .number {
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 5px;
    background: #BF2E2E;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.levelTitle .number span {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.levelTitle .text {
    padding: 10px 20px 10px 15px;
}

.formInput {
    height: 40px;
    padding: 10px;
    border: 1px solid #fff;
    color: #fff;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    background: transparent;
}

.formInput::-webkit-input-placeholder {
    color: #767676;
    font-size: 12px;
}

.formInput::-moz-placeholder {
    color: #767676;
    font-size: 12px;
}

.formInput:-ms-input-placeholder {
    color: #767676;
    font-size: 12px;
}

.formInput:-moz-placeholder {
    color: #767676;
    font-size: 12px;
    text-transform: uppercase;
}

.formInput:focus {
    border: 1px solid #fff;
}

.formInput.light {
    border: 1px solid #000;
    color: #000;
}

.formInput.light:focus {
    border: 1px solid #000;
}

.loadMore {
    display: block;
    padding: 20px 0;
}

.loadMore .button {
    text-align: center;
    display: block;
    width: 150px;
    font-size: 12px;
    margin: auto;
}

.loadMore .button .sign {
    border: 1px solid #fff;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    padding: 0 3px;
    font-size: 15px;
    margin-bottom: 8px;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pageTitle {
    color: #fff;
    display: inline-block;
    padding: 0 0 13px;
    margin-bottom: 20px;
    border-bottom: 1px solid #767676;
}

.formCheck {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.formCheck input[type="checkbox"],
.formCheck input[type="radio"] {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.formCheck input[type="checkbox"]:checked + .label::before,
.formCheck input[type="radio"]:checked + .label::before {
    border-color: #28A745;
}

.formCheck input[type="checkbox"]:checked + .label::after,
.formCheck input[type="radio"]:checked + .label::after {
    opacity: 1 !important;
}

.formCheck .label {
    cursor: pointer;
    position: relative;
    z-index: 0;
    padding-right: 30px;
}

.formCheck .label::before {
    content: '';
    position: absolute;
    right: 0;
    top: -webkit-calc(50% - 9px);
    top: calc(50% - 9px);
    width: 17px;
    height: 17px;
    border: 1px solid #fff;
    -webkit-border-radius: 2px;
    border-radius: 2px;
}

.formCheck .label::after {
    content: '\2713';
    position: absolute;
    right: 0;
    top: -webkit-calc(50% - 15px);
    top: calc(50% - 15px);
    font-size: 20px;
    opacity: 0;
    color: #28A745;
}

.card {
    margin: 0 15px;
    padding: 0;
}

.card .topLabel {
    background: #FFC660;
    color: #000;
    padding: 5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 150px;
}

.card .topLabel svg {
    stroke: #000;
}

.card .topLabel .bold {
    margin: 0 6px;
    font-weight: bold;
}

.card .box {
    background: #fff;
    color: #767676;
}

.card .box:hover .figure::after {
    opacity: 0.4;
    visibility: visible;
}

.card .box:hover .figure .icons {
    top: -webkit-calc(50% - 20px);
    top: calc(50% - 20px);
    opacity: 1;
    visibility: visible;
}

.card .box .figure {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.card .box .figure::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

/*
.card .box .figure img {
    position: absolute;
    left: 50%;
    top: 50%;
    min-width: 100%;
    min-height: 100%;
    max-width: 150%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}
*/

.card .box .figure .icons {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    direction: ltr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: -webkit-calc(50% - 50px);
    top: calc(50% - 50px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.card .box .figure .icons svg {
    margin: 0 5px;
}

.card .box .figure .icons svg:nth-child(2) {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.card .box .logo {
    width: 70px;
    height: 70px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-top: -40px;
    background: #fff;
    position: relative;
    z-index: 2;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #767676;
}

.card .box .logo svg {
    width: 40px;
    height: 40px;
    stroke: none;
    fill: #767676;
}

.card .box .content {
    padding: 15px;
    text-align: center;
}

.card .box .content .point {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card .box .content .point .stars {
    direction: ltr;
}

.card .box .content .point .stars svg {
    stroke: #767676;
    margin: -1px;
    width: 15px;
    height: 15px;
}

.card .box .content .point .stars svg.gold {
    stroke: #FFC660;
    fill: #FFC660;
}

.card .box .content strong {
    color: #FFC660;
}

.card .box .content .mainBtn {
    line-height: 13px;
    padding: 4px;
}

.card .box .content .timeBox .tick .tick-label {
    color: #767676 !important;
}

.card .box .content .timeBox .red {
    color: #BF2E2E;
}

.card .box .content .timeBox .red svg {
    stroke: #BF2E2E;
}

.eventCarousel .card {
    direction: rtl;
}

.accordion .cnt {
    padding: 1em 2em 1em 2em;
}

.accordion .listItem {
    padding-right: 20px;
}

.accordion .listItem.sub {
    width: -webkit-calc(100% - 25px);
    width: calc(100% - 25px);
    margin-right: 25px;
}

.accordion .listItem .iconRight {
    color: #BF2E2E;
}

.accordion {
    position: relative;
}

.accordionTitle,
.accordion__Heading {
    background-color: #000;
    text-align: right;
    font-weight: 700;
    padding: 15px;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -webkit-box-shadow: 0 0 5px 1px #BF2E2E;
    box-shadow: 0 0 5px 1px #BF2E2E;
}

.accordionTitle:before,
.accordion__Heading:before {
    content: "+";
    font-size: 14px;
    line-height: 1;
    float: right;
    margin-top: 5px;
    margin-left: 10px;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
    color: #BF2E2E;
}

.accordionItem {
    height: auto;
    overflow: hidden;
    max-height: 50em;
    -webkit-transition: max-height 1s;
    -o-transition: max-height 1s;
    transition: max-height 1s;
    background: #fff;
    margin: 7px 0;
    color: #000;
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: max-content;
}

.animateIn {
    -webkit-animation: accordionIn 0.45s normal ease-in-out both 1;
    animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
    -webkit-animation: accordionOut 0.45s alternate ease-in-out both 1;
    animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@-webkit-keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(0.9) rotateX(-60deg);
        transform: scale(0.9) rotateX(-60deg);
    }
}

.largeTab .largeTabBtn {
    background-color: #000;
    text-align: right;
    font-weight: 700;
    padding: 15px;
    display: block;
    margin-bottom: 5px;
    color: #fff;
    cursor: pointer;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    -webkit-box-shadow: 0 0 5px 1px #BF2E2E;
    box-shadow: 0 0 5px 1px #BF2E2E;
}

.largeTab .largeTabBtn:hover,
.largeTab .largeTabBtn.active {
    background: #fff;
    color: #000;
}

.largeTab .largeTabBtn:hover .num,
.largeTab .largeTabBtn.active .num {
    margin-left: 4px;
}

.largeTab .largeTabBtn .num {
    width: 20px;
    height: 20px;
    border: 1px solid #BF2E2E;
    margin-left: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    text-align: center;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.largeTab .largeTabContent {
    background: #fff;
    color: #000;
    padding: 15px;
    max-height: -webkit-calc(100vh - 180px);
    max-height: calc(100vh - 180px);
    -webkit-box-shadow: 0 0 5px 1px #BF2E2E;
    box-shadow: 0 0 5px 1px #BF2E2E;
}

.sideWrapper {
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.sideWrapper.toggled {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 6%;
    -ms-flex: 0 0 6%;
    flex: 0 0 6%;
    max-width: 6%;
}

.sideWrapper.toggled .userIconHolder {
    display: none;
}

.sideWrapper.toggled nav ul li .text {
    display: none;
}

.sideWrapper.toggled .sideBottom {
    width: 26px;
}

.sideWrapper.toggled .sideBottom .logo,
.sideWrapper.toggled .sideBottom .label {
    display: none;
}

.fullWrapper {
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.fullWrapper.toggled {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 94%;
    -ms-flex: 0 0 94%;
    flex: 0 0 94%;
    max-width: 94%;
}

.fullWrapper.toggled .contentWrapper {
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    padding-top: 20px;
}

.fullWrapper.toggled .messageBox,
.fullWrapper.toggled .alertContainer {
    min-height: 70px;
}

.iconTitle {
    color: #fff;
}

.iconTitle.gold {
    color: #FFC660;
}

.iconTitle.gold svg {
    stroke: #FFC660;
}

.bankCard {
    background: url("../imgs/card.png") no-repeat;
    background-size: cover;
    padding: 5px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    height: 175px;
    width: 280px;
}

.bankCard .bankLogo {
    height: 64px;
    left: 22px;
    position: absolute;
    top: 67px;
    width: 64px;
}

.bankCard .cardName {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    color: #000;
    margin-right: 10px;
    width: 100%;
    height: 75%;
    font-weight: bold;
}

.bankCard .cardNum {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    color: #000;
    width: 100%;
    height: 20%;
    font-weight: bold;
}

.bankCard .cardIBAN {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    justify-content: center;
    color: #333;
    width: 100%;
    height: 7%;
    font-weight: bold;
}

.s-alert {
    background: #BF2E2E;
    padding: 15px;
    margin-bottom: 20px;
}

.s-alert svg {
    margin-left: 15px;
}

.oblique {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 5px 25px;
    position: relative;
    text-align: right;
}

.oblique::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #767676;
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}

.oblique:last-child::after {
    display: none;
}

.oblique .icon {
    margin-left: 10px;
}

.oblique .icon svg {
    stroke: #BF2E2E;
}

.oblique .text .red {
    color: #BF2E2E;
    margin-bottom: 6px;
    margin-top: 10px;
}

.mainIcon {
    width: 70px;
    height: 70px;
    margin: 0 20px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainIcon svg {
    fill: #767676;
    stroke: none !important;
    width: 40px;
    height: 40px;
}

.levelDesc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #767676;
    background: #efefef;
    -webkit-border-radius: 0 25px 25px 0;
    border-radius: 0 25px 25px 0;
    padding: 0 0 0 15px;
    margin-bottom: 15px;
}

.levelDesc svg {
    stroke: #767676;
}

.levelDesc .redText {
    color: #BF2E2E;
}

.levelDesc .redIcon {
    stroke: #BF2E2E;
}

.levelDesc .levelIcon {
    min-width: 35px;
    max-width: 35px;
    min-height: 35px;
    max-height: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #A58346;
    margin-left: 20px;
}

.levelDesc .levelIcon svg {
    stroke: none;
    fill: #fff;
}

.levelDesc .levelTitle {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    color: #000;
    position: relative;
}

.levelDesc .levelTitle::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(118, 118, 118, 0.5);
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}

.levelDesc .levelDescription {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    padding-right: 10px;
}

.levelDesc .levelDescription::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(118, 118, 118, 0.5);
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}

.levelDesc .levelType {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 17%;
    -ms-flex: 0 0 17%;
    flex: 0 0 17%;
    max-width: 17%;
    padding-right: 10px;
}

.levelDesc .chevron {
    width: 10px;
    height: 10px;
}

.statElem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.statElem.green .iconHolder {
    border-color: #28A745;
}

.statElem.green .iconHolder svg {
    stroke: #28A745;
}

.statElem.green .text p:first-child {
    color: #28A745;
}

.statElem .iconHolder {
    width: 50px;
    height: 50px;
    background: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 10px;
    border: 1px solid #BF2E2E;
}

.statElem .iconHolder svg {
    stroke: #fff;
}

.statElem .text {
    font-size: 12px;
}

.statElem .text .pink {
    color: #EC9999;
    margin-top: 10px;
    margin-bottom: 4px;
}

.linkBox {
    background: #BF2E2E;
    color: #fff;
    padding: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.linkBox .copy {
    margin-right: 8px;
}

.linkBox .copy svg {
    width: 15px;
    height: 15px;
}

.contactSearch {
    border: 1px solid #fff;
    padding: 10px;
}

.contactSearch input {
    width: -webkit-calc(100% - 25px);
    width: calc(100% - 25px);
    border: none;
    background: transparent;
    color: #fff;
}

.contactSearch svg {
    width: 20px;
    height: 20px;
    stroke: #BF2E2E;
}

.tableLegend {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.tableLegend .item {
    margin-left: 15px;
    position: relative;
    color: #767676;
}

.tableLegend .item::before {
    content: '';
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 2px;
    margin-left: 9px;
}

.tableLegend .item.green::before {
    background: #28a745;
}

.tableLegend .item.pink::before {
    background: #EC9999;
}

.tableLegend .item.orange::before {
    background: #FD7E14;
}

.tableLegend .item.red::before {
    background: #BF2E2E;
}

.kindTab .item {
    position: relative;
    margin-left: 15px;
    font-size: 10px;
}

.kindTab .item input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: pointer;
    opacity: 0;
}

.kindTab .item input:checked + label {
    color: #28A745;
    border-bottom: 1px solid #28A745;
}

.kindTab .item label {
    padding-bottom: 10px;
    color: #fff;
}

.innerAccordionTitle {
    cursor: pointer;
}

.innerAccordionContent {
    opacity: 0;
    height: 0;
    visibility: hidden;
}

.innerAccordionContent.active {
    opacity: 1;
    height: auto;
    visibility: visible;
}

@keyframes giftLoad {
    from {
        top: -200%;
        opacity: 1;
        visibility: visible;
    }

    to {
        top: 200%;
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes giftLoad {
    from {
        top: -100%;
        opacity: 1;
        visibility: visible;
    }

    to {
        top: 200%;
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fading {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@-webkit-keyframes fading {
    from {
        opacity: 0;
    }

    to {
        opacity: 0.5;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadingH {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 0.5;
    }
}

@-webkit-keyframes fadingH {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 0.5;
    }
}

.siteSidebar {
    padding: 30px 15px;
    height: 100vh;
    overflow-y: auto !important;
    overflow-x: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    animation: fadeIn 4s;
    -webkit-animation: fadeIn 4s;
    transition: all ease-in-out 0.3s;
    -moz-transition: all ease-in-out 0.3s;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
}

.siteSidebar.active {
    right: 0;
}

.siteSidebar .menuIcon {
    stroke: #fff;
    cursor: pointer;
}

.siteSidebar .menuClose {
    font-size: 26px;
}

.siteSidebar .userIconHolder {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.siteSidebar .userIconHolder .circle {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.siteSidebar .userIconHolder .circle.circle1 {
    width: 150px;
    height: 150px;
    background: rgba(191, 46, 46, 0.5);
    margin: auto;
}

.siteSidebar .userIconHolder .circle.circle2 {
    width: 105px;
    height: 105px;
    background: rgba(191, 46, 46, 0.7);
}

.siteSidebar .userIconHolder .circle.circle3 {
    width: 85px;
    height: 85px;
    background: #fff;
}

.circular {
    border-radius: 50%;
}

.square {
    height: 25px;
    width: 25px;
}

.square50 {
    height: 50px;
    width: 50px;
}

.square100 {
    height: 100px;
    width: 100px;
}

.siteSidebar .userIconHolder .icon {
    stroke: #BF2E2E;
}

.siteSidebar .userIconHolder .name {
    margin-top: 15px;
}

.siteSidebar nav ul li {
    margin: 20px 0;
}

.siteSidebar nav ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.siteSidebar nav ul li a:hover .iconHolder::before {
    opacity: 1;
}

.siteSidebar nav ul li a:hover .iconHolder .icon {
    stroke: #fff;
}

.siteSidebar nav ul li a .iconHolder {
    position: relative;
    margin-left: 10px;
}

.siteSidebar nav ul li a .iconHolder::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: -14px;
    right: -15px;
    -webkit-filter: blur(15px);
    filter: blur(15px);
    -ms-filter: blur(15px);
    background: #BF2E2E;
    z-index: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    opacity: 0;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.siteSidebar nav ul li a .iconHolder .icon {
    stroke: #BF2E2E;
    position: relative;
    z-index: 1;
}

.siteSidebar nav ul li.hasChild .child {
    padding-right: 30px;
    display: none;
}

.siteSidebar nav ul li.hasChild .child ul li a::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 10px;
    height: 1px;
    background: #fff;
    margin-left: 12px;
}

.siteSidebar nav ul li.open .child {
    display: block;
}

.siteSidebar nav ul li.open > a {
    color: #FFC660;
}

.siteSidebar nav ul li.open > a .iconHolder .icon {
    stroke: #FFC660;
}

.siteSidebar .sideBottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: fixed;
    bottom: 9px;
    right: 27px;
    width: 19%;
    z-index: 10;
    overflow: hidden;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.siteSidebar .sideBottom .logo {
    width: 90px;
}

.siteSidebar .sideBottom .label {
    font-size: 10px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.05);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.siteSidebar .sideBottom .logOut {
    width: 90px;
    color: #FFFFFF;
}

.rect-auto,
.c100.p51 .slice,
.c100.p52 .slice,
.c100.p53 .slice,
.c100.p54 .slice,
.c100.p55 .slice,
.c100.p56 .slice,
.c100.p57 .slice,
.c100.p58 .slice,
.c100.p59 .slice,
.c100.p60 .slice,
.c100.p61 .slice,
.c100.p62 .slice,
.c100.p63 .slice,
.c100.p64 .slice,
.c100.p65 .slice,
.c100.p66 .slice,
.c100.p67 .slice,
.c100.p68 .slice,
.c100.p69 .slice,
.c100.p70 .slice,
.c100.p71 .slice,
.c100.p72 .slice,
.c100.p73 .slice,
.c100.p74 .slice,
.c100.p75 .slice,
.c100.p76 .slice,
.c100.p77 .slice,
.c100.p78 .slice,
.c100.p79 .slice,
.c100.p80 .slice,
.c100.p81 .slice,
.c100.p82 .slice,
.c100.p83 .slice,
.c100.p84 .slice,
.c100.p85 .slice,
.c100.p86 .slice,
.c100.p87 .slice,
.c100.p88 .slice,
.c100.p89 .slice,
.c100.p90 .slice,
.c100.p91 .slice,
.c100.p92 .slice,
.c100.p93 .slice,
.c100.p94 .slice,
.c100.p95 .slice,
.c100.p96 .slice,
.c100.p97 .slice,
.c100.p98 .slice,
.c100.p99 .slice,
.c100.p100 .slice {
    clip: rect(auto, auto, auto, auto);
}

.pie,
.c100 .bar,
.c100.p51 .fill,
.c100.p52 .fill,
.c100.p53 .fill,
.c100.p54 .fill,
.c100.p55 .fill,
.c100.p56 .fill,
.c100.p57 .fill,
.c100.p58 .fill,
.c100.p59 .fill,
.c100.p60 .fill,
.c100.p61 .fill,
.c100.p62 .fill,
.c100.p63 .fill,
.c100.p64 .fill,
.c100.p65 .fill,
.c100.p66 .fill,
.c100.p67 .fill,
.c100.p68 .fill,
.c100.p69 .fill,
.c100.p70 .fill,
.c100.p71 .fill,
.c100.p72 .fill,
.c100.p73 .fill,
.c100.p74 .fill,
.c100.p75 .fill,
.c100.p76 .fill,
.c100.p77 .fill,
.c100.p78 .fill,
.c100.p79 .fill,
.c100.p80 .fill,
.c100.p81 .fill,
.c100.p82 .fill,
.c100.p83 .fill,
.c100.p84 .fill,
.c100.p85 .fill,
.c100.p86 .fill,
.c100.p87 .fill,
.c100.p88 .fill,
.c100.p89 .fill,
.c100.p90 .fill,
.c100.p91 .fill,
.c100.p92 .fill,
.c100.p93 .fill,
.c100.p94 .fill,
.c100.p95 .fill,
.c100.p96 .fill,
.c100.p97 .fill,
.c100.p98 .fill,
.c100.p99 .fill,
.c100.p100 .fill {
    position: absolute;
    border: 0.08em solid #28A745;
    width: 0.84em;
    height: 0.84em;
    clip: rect(0em, 0.5em, 1em, 0em);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.pie-fill,
.c100.p51 .bar:after,
.c100.p51 .fill,
.c100.p52 .bar:after,
.c100.p52 .fill,
.c100.p53 .bar:after,
.c100.p53 .fill,
.c100.p54 .bar:after,
.c100.p54 .fill,
.c100.p55 .bar:after,
.c100.p55 .fill,
.c100.p56 .bar:after,
.c100.p56 .fill,
.c100.p57 .bar:after,
.c100.p57 .fill,
.c100.p58 .bar:after,
.c100.p58 .fill,
.c100.p59 .bar:after,
.c100.p59 .fill,
.c100.p60 .bar:after,
.c100.p60 .fill,
.c100.p61 .bar:after,
.c100.p61 .fill,
.c100.p62 .bar:after,
.c100.p62 .fill,
.c100.p63 .bar:after,
.c100.p63 .fill,
.c100.p64 .bar:after,
.c100.p64 .fill,
.c100.p65 .bar:after,
.c100.p65 .fill,
.c100.p66 .bar:after,
.c100.p66 .fill,
.c100.p67 .bar:after,
.c100.p67 .fill,
.c100.p68 .bar:after,
.c100.p68 .fill,
.c100.p69 .bar:after,
.c100.p69 .fill,
.c100.p70 .bar:after,
.c100.p70 .fill,
.c100.p71 .bar:after,
.c100.p71 .fill,
.c100.p72 .bar:after,
.c100.p72 .fill,
.c100.p73 .bar:after,
.c100.p73 .fill,
.c100.p74 .bar:after,
.c100.p74 .fill,
.c100.p75 .bar:after,
.c100.p75 .fill,
.c100.p76 .bar:after,
.c100.p76 .fill,
.c100.p77 .bar:after,
.c100.p77 .fill,
.c100.p78 .bar:after,
.c100.p78 .fill,
.c100.p79 .bar:after,
.c100.p79 .fill,
.c100.p80 .bar:after,
.c100.p80 .fill,
.c100.p81 .bar:after,
.c100.p81 .fill,
.c100.p82 .bar:after,
.c100.p82 .fill,
.c100.p83 .bar:after,
.c100.p83 .fill,
.c100.p84 .bar:after,
.c100.p84 .fill,
.c100.p85 .bar:after,
.c100.p85 .fill,
.c100.p86 .bar:after,
.c100.p86 .fill,
.c100.p87 .bar:after,
.c100.p87 .fill,
.c100.p88 .bar:after,
.c100.p88 .fill,
.c100.p89 .bar:after,
.c100.p89 .fill,
.c100.p90 .bar:after,
.c100.p90 .fill,
.c100.p91 .bar:after,
.c100.p91 .fill,
.c100.p92 .bar:after,
.c100.p92 .fill,
.c100.p93 .bar:after,
.c100.p93 .fill,
.c100.p94 .bar:after,
.c100.p94 .fill,
.c100.p95 .bar:after,
.c100.p95 .fill,
.c100.p96 .bar:after,
.c100.p96 .fill,
.c100.p97 .bar:after,
.c100.p97 .fill,
.c100.p98 .bar:after,
.c100.p98 .fill,
.c100.p99 .bar:after,
.c100.p99 .fill,
.c100.p100 .bar:after,
.c100.p100 .fill {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.c100 {
    position: relative;
    font-size: 120px;
    width: 1em;
    height: 1em;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    float: left;
    margin: 0 0.1em 0.1em 0;
    background-color: #cccccc;
}

.c100 *,
.c100 *:before,
.c100 *:after {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

.c100.center {
    float: none;
    margin: 0 auto;
}

.c100.big {
    font-size: 240px;
}

.c100.small {
    font-size: 80px;
}

.c100 > span {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 5em;
    line-height: 5em;
    font-size: 0.2em;
    color: #cccccc;
    display: block;
    text-align: center;
    white-space: nowrap;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.c100:after {
    position: absolute;
    top: 0.08em;
    left: 0.08em;
    display: block;
    content: " ";
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #f5f5f5;
    width: 0.84em;
    height: 0.84em;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-in;
    -o-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
}

.c100 .slice {
    position: absolute;
    width: 1em;
    height: 1em;
    clip: rect(0em, 1em, 1em, 0.5em);
}

.c100.p1 .bar {
    -webkit-transform: rotate(3.6deg);
    -ms-transform: rotate(3.6deg);
    transform: rotate(3.6deg);
}

.c100.p2 .bar {
    -webkit-transform: rotate(7.2deg);
    -ms-transform: rotate(7.2deg);
    transform: rotate(7.2deg);
}

.c100.p3 .bar {
    -webkit-transform: rotate(10.8deg);
    -ms-transform: rotate(10.8deg);
    transform: rotate(10.8deg);
}

.c100.p4 .bar {
    -webkit-transform: rotate(14.4deg);
    -ms-transform: rotate(14.4deg);
    transform: rotate(14.4deg);
}

.c100.p5 .bar {
    -webkit-transform: rotate(18deg);
    -ms-transform: rotate(18deg);
    transform: rotate(18deg);
}

.c100.p6 .bar {
    -webkit-transform: rotate(21.6deg);
    -ms-transform: rotate(21.6deg);
    transform: rotate(21.6deg);
}

.c100.p7 .bar {
    -webkit-transform: rotate(25.2deg);
    -ms-transform: rotate(25.2deg);
    transform: rotate(25.2deg);
}

.c100.p8 .bar {
    -webkit-transform: rotate(28.8deg);
    -ms-transform: rotate(28.8deg);
    transform: rotate(28.8deg);
}

.c100.p9 .bar {
    -webkit-transform: rotate(32.4deg);
    -ms-transform: rotate(32.4deg);
    transform: rotate(32.4deg);
}

.c100.p10 .bar {
    -webkit-transform: rotate(36deg);
    -ms-transform: rotate(36deg);
    transform: rotate(36deg);
}

.c100.p11 .bar {
    -webkit-transform: rotate(39.6deg);
    -ms-transform: rotate(39.6deg);
    transform: rotate(39.6deg);
}

.c100.p12 .bar {
    -webkit-transform: rotate(43.2deg);
    -ms-transform: rotate(43.2deg);
    transform: rotate(43.2deg);
}

.c100.p13 .bar {
    -webkit-transform: rotate(46.8deg);
    -ms-transform: rotate(46.8deg);
    transform: rotate(46.8deg);
}

.c100.p14 .bar {
    -webkit-transform: rotate(50.4deg);
    -ms-transform: rotate(50.4deg);
    transform: rotate(50.4deg);
}

.c100.p15 .bar {
    -webkit-transform: rotate(54deg);
    -ms-transform: rotate(54deg);
    transform: rotate(54deg);
}

.c100.p16 .bar {
    -webkit-transform: rotate(57.6deg);
    -ms-transform: rotate(57.6deg);
    transform: rotate(57.6deg);
}

.c100.p17 .bar {
    -webkit-transform: rotate(61.2deg);
    -ms-transform: rotate(61.2deg);
    transform: rotate(61.2deg);
}

.c100.p18 .bar {
    -webkit-transform: rotate(64.8deg);
    -ms-transform: rotate(64.8deg);
    transform: rotate(64.8deg);
}

.c100.p19 .bar {
    -webkit-transform: rotate(68.4deg);
    -ms-transform: rotate(68.4deg);
    transform: rotate(68.4deg);
}

.c100.p20 .bar {
    -webkit-transform: rotate(72deg);
    -ms-transform: rotate(72deg);
    transform: rotate(72deg);
}

.c100.p21 .bar {
    -webkit-transform: rotate(75.6deg);
    -ms-transform: rotate(75.6deg);
    transform: rotate(75.6deg);
}

.c100.p22 .bar {
    -webkit-transform: rotate(79.2deg);
    -ms-transform: rotate(79.2deg);
    transform: rotate(79.2deg);
}

.c100.p23 .bar {
    -webkit-transform: rotate(82.8deg);
    -ms-transform: rotate(82.8deg);
    transform: rotate(82.8deg);
}

.c100.p24 .bar {
    -webkit-transform: rotate(86.4deg);
    -ms-transform: rotate(86.4deg);
    transform: rotate(86.4deg);
}

.c100.p25 .bar {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.c100.p26 .bar {
    -webkit-transform: rotate(93.6deg);
    -ms-transform: rotate(93.6deg);
    transform: rotate(93.6deg);
}

.c100.p27 .bar {
    -webkit-transform: rotate(97.2deg);
    -ms-transform: rotate(97.2deg);
    transform: rotate(97.2deg);
}

.c100.p28 .bar {
    -webkit-transform: rotate(100.8deg);
    -ms-transform: rotate(100.8deg);
    transform: rotate(100.8deg);
}

.c100.p29 .bar {
    -webkit-transform: rotate(104.4deg);
    -ms-transform: rotate(104.4deg);
    transform: rotate(104.4deg);
}

.c100.p30 .bar {
    -webkit-transform: rotate(108deg);
    -ms-transform: rotate(108deg);
    transform: rotate(108deg);
}

.c100.p31 .bar {
    -webkit-transform: rotate(111.6deg);
    -ms-transform: rotate(111.6deg);
    transform: rotate(111.6deg);
}

.c100.p32 .bar {
    -webkit-transform: rotate(115.2deg);
    -ms-transform: rotate(115.2deg);
    transform: rotate(115.2deg);
}

.c100.p33 .bar {
    -webkit-transform: rotate(118.8deg);
    -ms-transform: rotate(118.8deg);
    transform: rotate(118.8deg);
}

.c100.p34 .bar {
    -webkit-transform: rotate(122.4deg);
    -ms-transform: rotate(122.4deg);
    transform: rotate(122.4deg);
}

.c100.p35 .bar {
    -webkit-transform: rotate(126deg);
    -ms-transform: rotate(126deg);
    transform: rotate(126deg);
}

.c100.p36 .bar {
    -webkit-transform: rotate(129.6deg);
    -ms-transform: rotate(129.6deg);
    transform: rotate(129.6deg);
}

.c100.p37 .bar {
    -webkit-transform: rotate(133.2deg);
    -ms-transform: rotate(133.2deg);
    transform: rotate(133.2deg);
}

.c100.p38 .bar {
    -webkit-transform: rotate(136.8deg);
    -ms-transform: rotate(136.8deg);
    transform: rotate(136.8deg);
}

.c100.p39 .bar {
    -webkit-transform: rotate(140.4deg);
    -ms-transform: rotate(140.4deg);
    transform: rotate(140.4deg);
}

.c100.p40 .bar {
    -webkit-transform: rotate(144deg);
    -ms-transform: rotate(144deg);
    transform: rotate(144deg);
}

.c100.p41 .bar {
    -webkit-transform: rotate(147.6deg);
    -ms-transform: rotate(147.6deg);
    transform: rotate(147.6deg);
}

.c100.p42 .bar {
    -webkit-transform: rotate(151.2deg);
    -ms-transform: rotate(151.2deg);
    transform: rotate(151.2deg);
}

.c100.p43 .bar {
    -webkit-transform: rotate(154.8deg);
    -ms-transform: rotate(154.8deg);
    transform: rotate(154.8deg);
}

.c100.p44 .bar {
    -webkit-transform: rotate(158.4deg);
    -ms-transform: rotate(158.4deg);
    transform: rotate(158.4deg);
}

.c100.p45 .bar {
    -webkit-transform: rotate(162deg);
    -ms-transform: rotate(162deg);
    transform: rotate(162deg);
}

.c100.p46 .bar {
    -webkit-transform: rotate(165.6deg);
    -ms-transform: rotate(165.6deg);
    transform: rotate(165.6deg);
}

.c100.p47 .bar {
    -webkit-transform: rotate(169.2deg);
    -ms-transform: rotate(169.2deg);
    transform: rotate(169.2deg);
}

.c100.p48 .bar {
    -webkit-transform: rotate(172.8deg);
    -ms-transform: rotate(172.8deg);
    transform: rotate(172.8deg);
}

.c100.p49 .bar {
    -webkit-transform: rotate(176.4deg);
    -ms-transform: rotate(176.4deg);
    transform: rotate(176.4deg);
}

.c100.p50 .bar {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.c100.p51 .bar {
    -webkit-transform: rotate(183.6deg);
    -ms-transform: rotate(183.6deg);
    transform: rotate(183.6deg);
}

.c100.p52 .bar {
    -webkit-transform: rotate(187.2deg);
    -ms-transform: rotate(187.2deg);
    transform: rotate(187.2deg);
}

.c100.p53 .bar {
    -webkit-transform: rotate(190.8deg);
    -ms-transform: rotate(190.8deg);
    transform: rotate(190.8deg);
}

.c100.p54 .bar {
    -webkit-transform: rotate(194.4deg);
    -ms-transform: rotate(194.4deg);
    transform: rotate(194.4deg);
}

.c100.p55 .bar {
    -webkit-transform: rotate(198deg);
    -ms-transform: rotate(198deg);
    transform: rotate(198deg);
}

.c100.p56 .bar {
    -webkit-transform: rotate(201.6deg);
    -ms-transform: rotate(201.6deg);
    transform: rotate(201.6deg);
}

.c100.p57 .bar {
    -webkit-transform: rotate(205.2deg);
    -ms-transform: rotate(205.2deg);
    transform: rotate(205.2deg);
}

.c100.p58 .bar {
    -webkit-transform: rotate(208.8deg);
    -ms-transform: rotate(208.8deg);
    transform: rotate(208.8deg);
}

.c100.p59 .bar {
    -webkit-transform: rotate(212.4deg);
    -ms-transform: rotate(212.4deg);
    transform: rotate(212.4deg);
}

.c100.p60 .bar {
    -webkit-transform: rotate(216deg);
    -ms-transform: rotate(216deg);
    transform: rotate(216deg);
}

.c100.p61 .bar {
    -webkit-transform: rotate(219.6deg);
    -ms-transform: rotate(219.6deg);
    transform: rotate(219.6deg);
}

.c100.p62 .bar {
    -webkit-transform: rotate(223.2deg);
    -ms-transform: rotate(223.2deg);
    transform: rotate(223.2deg);
}

.c100.p63 .bar {
    -webkit-transform: rotate(226.8deg);
    -ms-transform: rotate(226.8deg);
    transform: rotate(226.8deg);
}

.c100.p64 .bar {
    -webkit-transform: rotate(230.4deg);
    -ms-transform: rotate(230.4deg);
    transform: rotate(230.4deg);
}

.c100.p65 .bar {
    -webkit-transform: rotate(234deg);
    -ms-transform: rotate(234deg);
    transform: rotate(234deg);
}

.c100.p66 .bar {
    -webkit-transform: rotate(237.6deg);
    -ms-transform: rotate(237.6deg);
    transform: rotate(237.6deg);
}

.c100.p67 .bar {
    -webkit-transform: rotate(241.2deg);
    -ms-transform: rotate(241.2deg);
    transform: rotate(241.2deg);
}

.c100.p68 .bar {
    -webkit-transform: rotate(244.8deg);
    -ms-transform: rotate(244.8deg);
    transform: rotate(244.8deg);
}

.c100.p69 .bar {
    -webkit-transform: rotate(248.4deg);
    -ms-transform: rotate(248.4deg);
    transform: rotate(248.4deg);
}

.c100.p70 .bar {
    -webkit-transform: rotate(252deg);
    -ms-transform: rotate(252deg);
    transform: rotate(252deg);
}

.c100.p71 .bar {
    -webkit-transform: rotate(255.6deg);
    -ms-transform: rotate(255.6deg);
    transform: rotate(255.6deg);
}

.c100.p72 .bar {
    -webkit-transform: rotate(259.2deg);
    -ms-transform: rotate(259.2deg);
    transform: rotate(259.2deg);
}

.c100.p73 .bar {
    -webkit-transform: rotate(262.8deg);
    -ms-transform: rotate(262.8deg);
    transform: rotate(262.8deg);
}

.c100.p74 .bar {
    -webkit-transform: rotate(266.4deg);
    -ms-transform: rotate(266.4deg);
    transform: rotate(266.4deg);
}

.c100.p75 .bar {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.c100.p76 .bar {
    -webkit-transform: rotate(273.6deg);
    -ms-transform: rotate(273.6deg);
    transform: rotate(273.6deg);
}

.c100.p77 .bar {
    -webkit-transform: rotate(277.2deg);
    -ms-transform: rotate(277.2deg);
    transform: rotate(277.2deg);
}

.c100.p78 .bar {
    -webkit-transform: rotate(280.8deg);
    -ms-transform: rotate(280.8deg);
    transform: rotate(280.8deg);
}

.c100.p79 .bar {
    -webkit-transform: rotate(284.4deg);
    -ms-transform: rotate(284.4deg);
    transform: rotate(284.4deg);
}

.c100.p80 .bar {
    -webkit-transform: rotate(288deg);
    -ms-transform: rotate(288deg);
    transform: rotate(288deg);
}

.c100.p81 .bar {
    -webkit-transform: rotate(291.6deg);
    -ms-transform: rotate(291.6deg);
    transform: rotate(291.6deg);
}

.c100.p82 .bar {
    -webkit-transform: rotate(295.2deg);
    -ms-transform: rotate(295.2deg);
    transform: rotate(295.2deg);
}

.c100.p83 .bar {
    -webkit-transform: rotate(298.8deg);
    -ms-transform: rotate(298.8deg);
    transform: rotate(298.8deg);
}

.c100.p84 .bar {
    -webkit-transform: rotate(302.4deg);
    -ms-transform: rotate(302.4deg);
    transform: rotate(302.4deg);
}

.c100.p85 .bar {
    -webkit-transform: rotate(306deg);
    -ms-transform: rotate(306deg);
    transform: rotate(306deg);
}

.c100.p86 .bar {
    -webkit-transform: rotate(309.6deg);
    -ms-transform: rotate(309.6deg);
    transform: rotate(309.6deg);
}

.c100.p87 .bar {
    -webkit-transform: rotate(313.2deg);
    -ms-transform: rotate(313.2deg);
    transform: rotate(313.2deg);
}

.c100.p88 .bar {
    -webkit-transform: rotate(316.8deg);
    -ms-transform: rotate(316.8deg);
    transform: rotate(316.8deg);
}

.c100.p89 .bar {
    -webkit-transform: rotate(320.4deg);
    -ms-transform: rotate(320.4deg);
    transform: rotate(320.4deg);
}

.c100.p90 .bar {
    -webkit-transform: rotate(324deg);
    -ms-transform: rotate(324deg);
    transform: rotate(324deg);
}

.c100.p91 .bar {
    -webkit-transform: rotate(327.6deg);
    -ms-transform: rotate(327.6deg);
    transform: rotate(327.6deg);
}

.c100.p92 .bar {
    -webkit-transform: rotate(331.2deg);
    -ms-transform: rotate(331.2deg);
    transform: rotate(331.2deg);
}

.c100.p93 .bar {
    -webkit-transform: rotate(334.8deg);
    -ms-transform: rotate(334.8deg);
    transform: rotate(334.8deg);
}

.c100.p94 .bar {
    -webkit-transform: rotate(338.4deg);
    -ms-transform: rotate(338.4deg);
    transform: rotate(338.4deg);
}

.c100.p95 .bar {
    -webkit-transform: rotate(342deg);
    -ms-transform: rotate(342deg);
    transform: rotate(342deg);
}

.c100.p96 .bar {
    -webkit-transform: rotate(345.6deg);
    -ms-transform: rotate(345.6deg);
    transform: rotate(345.6deg);
}

.c100.p97 .bar {
    -webkit-transform: rotate(349.2deg);
    -ms-transform: rotate(349.2deg);
    transform: rotate(349.2deg);
}

.c100.p98 .bar {
    -webkit-transform: rotate(352.8deg);
    -ms-transform: rotate(352.8deg);
    transform: rotate(352.8deg);
}

.c100.p99 .bar {
    -webkit-transform: rotate(356.4deg);
    -ms-transform: rotate(356.4deg);
    transform: rotate(356.4deg);
}

.c100.p100 .bar {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.c100:hover {
    cursor: default;
}

.c100:hover > span {
    width: 3.33em;
    line-height: 3.33em;
    font-size: 0.3em;
    color: #307bbb;
}

.c100:hover:after {
    top: 0.04em;
    left: 0.04em;
    width: 0.92em;
    height: 0.92em;
}

.c100.dark {
    background-color: #777777;
}

.c100.dark .bar,
.c100.dark .fill {
    border-color: #c6ff00 !important;
}

.c100.dark > span {
    color: #777777;
}

.c100.dark:after {
    background-color: #666666;
}

.c100.dark:hover > span {
    color: #c6ff00;
}

.c100.green .bar,
.c100.green .fill {
    border-color: #4db53c !important;
}

.c100.green:hover > span {
    color: #4db53c;
}

.c100.green.dark .bar,
.c100.green.dark .fill {
    border-color: #5fd400 !important;
}

.c100.green.dark:hover > span {
    color: #5fd400;
}

.c100.orange .bar,
.c100.orange .fill {
    border-color: #dd9d22 !important;
}

.c100.orange:hover > span {
    color: #dd9d22;
}

.c100.orange.dark .bar,
.c100.orange.dark .fill {
    border-color: #e08833 !important;
}

.c100.orange.dark:hover > span {
    color: #e08833;
}

.modal .modal-dialog {
    max-width: 768px;
}

.modal .modal-content {
    background-color: transparent;
    min-height: 400px;
    padding: 33px 0 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal .successMessage {
    color: #28A745;
}

.modal textarea {
    background: transparent;
    border: 1px solid #767676;
    padding: 15px;
    color: #fff;
}

.modal .node {
    padding: 10px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.modal .node .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 15px;
    height: 15px;
}

.modal .node .hint {
    color: #767676;
    margin: 0 15px;
}

.modal .userInfoCard {
    background: none !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.modal .node .input {
    background: transparent;
    width: 13px;
    border: none;
    border-right: 1px solid #767676;
    padding: 0 2px;
    color: #fff;
}

.modal .node .input.long {
    width: 107px;
    border-right: none;
}

#giftReject .emtiaz {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    direction: ltr;
}

#giftReject .emtiaz .iconHolder.gold {
    width: 30px;
    height: 30px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #FFC660;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px;
}

#giftReject .emtiaz .iconHolder.gold svg {
    stroke: #000;
}

#giftReject .emtiaz span.bold {
    margin-right: 7px;
}

#giftReject .emtiaz span.green {
    color: #28a745;
}

#convertModal .elem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

#convertModal .elem .iconHolder {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

#convertModal .elem .iconHolder.green {
    background: #28A745;
}

#convertModal .elem .iconHolder.gold {
    background: #FFC660;
}

#convertModal .elem .iconHolder svg {
    stroke: #000;
}

#convertModal .elem .text {
    padding: 0 6px;
}

#convertModal .elem .text .pink {
    color: #EC9999;
    margin-bottom: 5px;
    margin-top: 22px;
}

#giftModal .giftCarousel .owl-stage-outer {
    padding: 20px 0;
}

#giftModal .giftCarousel .owl-item.center .item .checkMark {
    opacity: 1;
}

#giftModal .giftCarousel .owl-item.center .item .innerCircle {
    border: 3px solid #28A745;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
}

#giftModal .giftCarousel .owl-item.center .item .innerCircle img {
    width: 100px;
}

#giftModal .giftCarousel .owl-item .item {
    position: relative;
    width: 100px;
    margin: auto;
}

#giftModal .giftCarousel .owl-item .item .checkMark {
    position: absolute;
    right: 0;
    top: -7px;
    background: #28A745;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

#giftModal .giftCarousel .owl-item .item .checkMark svg {
    width: 10px;
    height: 10px;
}

#giftModal .giftCarousel .owl-item .item .innerCircle {
    overflow: hidden;
    width: 100px;
    height: 100px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

#giftModal .giftCarousel .owl-item .item .innerCircle img {
    width: 80px;
}

#pointModal {
    /****** Style Star Rating Widget *****/
    /***** CSS Magic to Highlight Stars on Hover *****/
    /* hover previous stars in list */
}

#pointModal fieldset,
#pointModal label {
    margin: 0;
    padding: 0;
}

#pointModal .rating {
    border: none;
}

#pointModal .rating > input {
    display: none;
}

#pointModal .rating svg {
    width: 30px;
    height: 30px;
    margin: 0 5px;
}

#pointModal .rating > input:checked ~ label,
#pointModal .rating:not(:checked) > label:hover,
#pointModal .rating:not(:checked) > label:hover ~ label svg {
    stroke: #FFC660;
    fill: #FFC660;
}

#pointModal .rating > input:checked + label:hover,
#pointModal .rating > input:checked ~ label:hover,
#pointModal .rating > label:hover ~ input:checked ~ label,
#pointModal .rating > input:checked ~ label:hover ~ label svg {
    fill: #FFC660;
    stroke: #FFC660;
}

#userModal .userInfoCard {
    background: none;
    max-width: 100%;
}

.mainDashboard {
    position: relative;
    margin-top: 50px;
}

.mainDashboard.mainDashboard2 {
    height: -webkit-calc(100vh - 120px);
    height: calc(100vh - 120px);
}

.mainDashboard .leftCircleContainer {
    position: relative;
    text-align: center;
}

.mainDashboard .leftCircleContainer .circleHolder {
    position: relative;
    width: 160px;
    height: 160px;
    margin-right: 30px;
}

.mainDashboard .leftCircleContainer .circleHolder .back {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: -65px;
    width: 699px;
    height: auto;
    stroke: transparent;
}

.mainDashboard .leftCircleContainer .circleHolder .circle {
    background: #fff;
    width: 100%;
    height: 100%;
    margin-left: auto;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #767676;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px;
    position: relative;
    top: 70px;
    z-index: 0;
}

.mainDashboard .leftCircleContainer .circleHolder .circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 80px 15px red;
    box-shadow: 0 0 80px 15px red;
}

.mainDashboard .leftCircleContainer .circleHolder .circle p {
    margin-bottom: 5px;
}

.mainDashboard .leftCircleContainer .circleHolder .circle .icon {
    stroke: #BF2E2E;
    margin-bottom: 5px;
}

.mainDashboard .leftCircleContainer .circleHolder .circle .name {
    color: #000;
}

.mainDashboard .leftCircleContainer .circleHolder .circle .degree {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 37px;
    stroke: #BF2E2E;
    opacity: 0.5;
}

.mainDashboard .leftCircleContainer .hangItems {
    margin-top: 101px;
    right: 10px;
    width: 240px;
}

.mainDashboard .leftCircleContainer .hangItems .item.right .connectLine {
    position: absolute;
    top: -14px;
    left: -12px;
    width: 1px;
    height: 70px;
    z-index: -1;
    -webkit-transform: rotate(97deg);
    -ms-transform: rotate(97deg);
    transform: rotate(97deg);
}

.mainDashboard .leftCircleContainer .hangItems .item.center .connectLine {
    position: absolute;
    top: -68px;
    left: -24px;
    width: 1px;
    height: 90px;
    z-index: -1;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.mainDashboard .leftCircleContainer .hangItems .item.left .connectLine {
    position: absolute;
    top: -49px;
    left: 19px;
    width: 1px;
    height: 70px;
    z-index: -1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mainDashboard .leftCircleContainer .hangItems .rain {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0;
    z-index: 0;
    stroke: transparent;
}

.mainDashboard .leftCircleContainer .hangItems .rain2 {
    position: absolute;
    width: auto;
    height: auto;
    top: -30px;
    right: 20px;
    z-index: 0;
    stroke: transparent;
}

.mainDashboard .leftCircleContainer .hangItems .rain3 {
    position: absolute;
    width: auto;
    height: auto;
    top: 30px;
    left: 0;
    z-index: 0;
    stroke: transparent;
}

.mainDashboard .leftCircleContainer .hangItems .rise {
    animation: fading 1s infinite;
    -webkit-animation: fading 1s infinite;
}

.mainDashboard .leftCircleContainer .hangItems .rise.n2 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.mainDashboard .leftCircleContainer .hangItems .rise.n3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.mainDashboard .leftCircleContainer .hangItems .rise.n4 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.mainDashboard .leftCircleContainer .hangItems .rise.n5 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.mainDashboard .leftCircleContainer .hangItems .rise.n6 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.mainDashboard .leftCircleContainer .hangItems .rise.n7 {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.mainDashboard .cartItem {
    position: relative;
    width: 580px;
    padding: 10px;
    margin-right: auto;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    z-index: 3;
}

.mainDashboard .cartItem .lineItem {
    position: absolute;
    z-index: -1;
    width: 1px;
    background: #BF2E2E;
}

.mainDashboard .cartItem:nth-child(1) .lineItem {
    height: 101px;
    left: -29px;
    top: 14px;
    -webkit-transform: rotate(55deg);
    -ms-transform: rotate(55deg);
    transform: rotate(55deg);
}

.mainDashboard .cartItem:nth-child(2) .lineItem {
    height: 64px;
    left: -23px;
    top: 8px;
    -webkit-transform: rotate(75deg);
    -ms-transform: rotate(75deg);
    transform: rotate(75deg);
}

.mainDashboard .cartItem:nth-child(3) .lineItem {
    height: 76px;
    left: -24px;
    top: -15px;
    -webkit-transform: rotate(106deg);
    -ms-transform: rotate(106deg);
    transform: rotate(106deg);
}

.mainDashboard .cartItem:nth-child(4) .lineItem {
    height: 107px;
    left: -32px;
    top: -52px;
    -webkit-transform: rotate(127deg);
    -ms-transform: rotate(127deg);
    transform: rotate(127deg);
}

.mainDashboard .cartItem .frame {
    width: 100%;
    position: absolute;
    height: 63px;
    left: -3px;
    top: -2px;
    z-index: 0;
    fill: #000;
}

.mainDashboard .cartItem .assets {
    position: relative;
    z-index: 1;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.mainDashboard .cartItem .assets .iconn {
    width: 40px;
    height: 40px;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}

.mainDashboard .cartItem .assets .iconn svg {
    stroke: #000;
    width: 15px;
    height: 15px;
}

.mainDashboard .cartItem .assets .iconn .count {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #BF2E2E;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    height: 34px;
    min-width: 34px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 4px;
    border: 2px solid #fff;
    z-index: 4;
}

.mainDashboard .cartItem .assets .iconn .count .shine {
    position: absolute;
    right: 0;
    top: 2px;
    width: 6px;
    height: 6px;
    z-index: 5;
    background: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -ms-filter: blur(5px);
    animation: fadeIn 1s infinite;
    -webkit-animation: fadeIn 1s infinite;
    -moz-animation: fadeIn 1s infinite;
    -webkit-box-shadow: 0 0 14px 3px #fff;
    box-shadow: 0 0 14px 3px #fff;
}

.mainDashboard .cartItem .assets .type {
    position: relative;
    padding: 0 15px;
}

.mainDashboard .cartItem .assets .type > .topBox {
    position: absolute;
    bottom: -webkit-calc(100% + 4px);
    bottom: calc(100% + 4px);
}

.mainDashboard .cartItem .assets .type::after {
    content: '';
    position: absolute;
    right: 0;
    top: -webkit-calc(50% - 10px);
    top: calc(50% - 10px);
    width: 1px;
    height: 20px;
    background: #767676;
}

.mainDashboard .cartItem .assets .type:last-child::after {
    display: none;
}

.mainDashboard .cartItem .assets .type.title {
    width: 115px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.mainDashboard .cartItem .assets .type.type1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    font-size: 11px;
}

.mainDashboard .cartItem .assets .type.type1 .icon {
    stroke: #fff;
    margin-right: 5px;
    width: 20px;
    height: 20px;
}

.mainDashboard .cartItem .assets .type.type1 .icon svg {
    height: 10px;
    left: 3px;
    position: relative;
    top: -5px;
}

.mainDashboard .cartItem .assets .type.type1 .icon.gray {
    stroke: #000;
    background: #777;
    padding: 4px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.mainDashboard .cartItem .assets .type.type1 .icon.green {
    stroke: #000;
    background: #28A745;
    padding: 4px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.mainDashboard .cartItem .assets .type.type1 .icon.gold {
    stroke: #000;
    background: #FFC660;
    padding: 4px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.mainDashboard .cartItem .assets .type.type1 .icon.red {
    stroke: #000;
    background: #BF2E2E;
    padding: 4px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.mainDashboard .cartItem .assets .type.type1 .img {
    max-height: 37px;
}

.mainDashboard .cartItem .assets .type.type1 .detail p {
    margin: 0;
}

.mainDashboard .cartItem .assets .type.type1 .detail p.title {
    color: #EC9999;
    font-size: 9px;
}

.mainDashboard .cartItem .assets .type.type1 .detail p span {
    font-size: 9px;
    color: #767676;
}

.mainDashboard .cartItem .assets .type.type1 .detail p svg {
    stroke: transparent;
    fill: #BF2E2E;
}

.mainDashboard .cartItem .assets .type.type1 .detail .typeTitle {
    transform: skew(-25deg, 0deg);
    -webkit-transform: skew(-25deg, 0deg);
    -moz-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    -o-transform: skew(-25deg, 0deg);
    background: #BF2E2E;
    padding: 4px 7px;
    margin-left: 10px;
}

.mainDashboard .cartItem .assets .type.type1 .detail .typeTitle p {
    transform: skew(25deg, 0deg);
    -webkit-transform: skew(25deg, 0deg);
    -moz-transform: skew(25deg, 0deg);
    -ms-transform: skew(25deg, 0deg);
    -o-transform: skew(25deg, 0deg);
    white-space: nowrap;
}

.mainDashboard .cartItem .assets .type.type1 .detail .link {
    transform: skew(-25deg, 0deg);
    -webkit-transform: skew(-25deg, 0deg);
    -moz-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    -o-transform: skew(-25deg, 0deg);
    background: #767676;
    padding: 1px 7px;
    margin-right: 10px;
    line-height: 1.2;
}

.mainDashboard .cartItem .assets .type.type1 .detail .link svg {
    width: 10px;
    height: 10px;
    transform: skew(25deg, 0deg) rotate(180deg);
    -webkit-transform: skew(25deg, 0deg) rotate(180deg);
    -moz-transform: skew(25deg, 0deg) rotate(180deg);
    -ms-transform: skew(25deg, 0deg) rotate(180deg);
    -o-transform: skew(25deg, 0deg) rotate(180deg);
}

.homeMessage {
    animation: fadeIn 4s;
    -webkit-animation: fadeIn 4s;
}

.giftLargeImg {
    position: absolute;
    top: -200%;
    left: 0;
    width: 100%;
    z-index: 1000;
    animation: giftLoad 5s;
    -webkit-animation: giftLoad 5s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.giftWrapper {
    padding: 0 100px;
}

.giftWrapper .header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: -20px;
    margin-bottom: -17px;
}

.giftWrapper .header .right {
    width: 40%;
}

.giftWrapper .header .mainTitle {
    color: #EC9999;
    font-size: 15px;
    width: 20%;
    text-align: center;
}

.giftWrapper .header .left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -39px;
    width: 40%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.giftWrapper .header .left .box {
    width: 40px;
    height: 40px;
    background: #FFC660;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.giftWrapper .header .left .box svg {
    stroke: #000;
}

.giftWrapper .header .left .title {
    color: #EC9999;
    margin: 10px 0;
}

.giftWrapper .giftCarousel .owl-item {
    padding: 30px 0 25px;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.giftWrapper .giftCarousel .owl-item.center {
    transform: scale(1.3) translate(2px, 0);
    -webkit-transform: scale(1.3) translate(2px, 0);
    -moz-transform: scale(1.3) translate(2px, 0);
    -ms-transform: scale(1.3) translate(2px, 0);
    -o-transform: scale(1.3) translate(2px, 0);
}

.giftWrapper .giftCarousel .owl-item .item {
    position: relative;
    width: 140px;
    height: 140px;
    margin: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.giftWrapper .giftCarousel .owl-item .item .c100 {
    background: rgba(118, 118, 118, 0.4);
}

.giftWrapper .giftCarousel .owl-item .item .c100::before {
    content: '';
    position: absolute;
    left: -7px;
    top: -7px;
    width: -webkit-calc(100% + 14px);
    width: calc(100% + 14px);
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    border: 1px solid #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.giftWrapper .giftCarousel .owl-item .item .c100::after {
    background: #2a0a0a;
    width: -webkit-calc(100% - 8px);
    width: calc(100% - 8px);
    height: -webkit-calc(100% - 8px);
    height: calc(100% - 8px);
    left: 4px;
    top: 4px;
}

.giftWrapper .giftCarousel .owl-item .item .c100:hover .hover {
    opacity: 1;
}

.giftWrapper .giftCarousel .owl-item .item .c100:hover .main {
    opacity: 0;
}

.giftWrapper .giftCarousel .owl-item .item .c100 .flip-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.giftWrapper .giftCarousel .owl-item .item .c100 .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    -o-transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.giftWrapper .giftCarousel .owl-item .item .c100 .flip-card:hover .flip-card-inner {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.giftWrapper .giftCarousel .owl-item .item .c100 .flip-card-front,
.giftWrapper .giftCarousel .owl-item .item .c100 .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.giftWrapper .giftCarousel .owl-item .item .c100 .flip-card-back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.giftWrapper .giftCarousel .owl-item .item .c100 span {
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -webkit-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
}

.giftWrapper .giftCarousel .owl-item .item .c100 span .large {
    font-size: 14px;
    width: auto;
    height: auto;
}

.giftWrapper .giftCarousel .owl-item .item .c100 span.main {
    opacity: 1;
}

.giftWrapper .giftCarousel .owl-item .item .c100 span.hover {
    opacity: 0;
    background: #fff;
    width: -webkit-calc(100% - 14px);
    width: calc(100% - 14px);
    height: -webkit-calc(100% - 14px);
    height: calc(100% - 14px);
    top: 7px;
    left: 7px;
}

.giftWrapper .giftCarousel .owl-item .item .c100 .slice .bar {
    border: 0.08em solid #28A745;
}

.giftWrapper .specialGifts {
    margin-top: -20px;
}

.giftWrapper .specialGifts .title {
    color: #FFC660;
    font-size: 12px;
}

.giftWrapper .specialGifts .title svg {
    stroke: #FFC660;
    margin-left: 7px;
}

.giftWrapper .specialGifts .carousel {
    padding: 10px 0;
}

.giftWrapper .specialGifts .carousel .item {
    padding: 10px 0;
    font-size: 11px;
    position: relative;
}

.giftWrapper .specialGifts .carousel .item.finished::before {
    position: absolute;
    left: 10px;
    top: 0;
    z-index: 3;
    font-size: 12px;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #BF2E2E;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    padding: 4px;
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
    -webkit-box-shadow: 0 0 20px 0 rgba(191, 46, 46, 0.5);
    box-shadow: 0 0 20px 0 rgba(191, 46, 46, 0.5);
}

.giftWrapper .specialGifts .carousel .item .box {
    border: 1px solid #fff;
    padding: 15px;
}

.giftWrapper .specialGifts .carousel .item .box .largeText {
    font-size: 14px;
}

.giftWrapper .specialGifts .carousel .item .box img {
    height: 60px;
    width: auto;
    max-width: 100%;
    margin: auto;
}

.giftWrapper .specialGifts .carousel .item .box p {
    margin: 0;
}

.giftWrapper .specialGifts .carousel .item .box .time {
    background: #767676;
    font-weight: 900;
    padding: 3px 4px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    text-align: center;
    margin-bottom: 6px;
    display: inline-block;
}

.tick {
    font-size: 12px;
    white-space: nowrap;
    font-family: arial, sans-serif;
}

.tick > div {
    font-size: 12px !important;
}

.tick-flip,
.tick-text-inline {
    font-size: 12px;
}

.tick-label {
    margin-top: 14px;
    font-size: 9px;
    color: #fff !important;
}

.tick-char {
    width: 1.5em;
}

.tick-text-inline {
    display: inline-block;
    text-align: center;
    min-width: 1em;
    color: #595d63 !important;
}

.tick-text-inline + .tick-text-inline {
    margin-left: -.325em;
}

.tick-group {
    margin: 0 1px;
    text-align: center;
}

.tick-flip-panel {
    color: #fff !important;
    background-color: #3c3e3c !important;
}

.tick-flip-panel-text-wrapper {
    line-height: 2.45 !important;
}

.tick-flip-card {
    padding: 13px 0;
}

.tick-flip {
    -webkit-border-radius: 0.12em !important;
    border-radius: 0.12em !important;
    font-size: 12px !important;
    width: 14px;
}

.taadol {
    position: relative;
}

.taadol .taadolLine {
    position: absolute;
    top: 0;
    left: -webkit-calc(50% + 10px);
    left: calc(50% + 10px);
    width: 3px;
    height: 100%;
    z-index: 5;
    opacity: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(65%, dodgerBlue), color-stop(0%, rgba(255, 255, 255, 0)));
    background-image: -o-linear-gradient(dodgerBlue 65%, rgba(255, 255, 255, 0) 0%);
    background-image: linear-gradient(dodgerBlue 65%, rgba(255, 255, 255, 0) 0%);
    background-position: right;
    background-size: 5px 20px;
    background-repeat: repeat-y;
}

.taadol .taadolLine.visible {
    opacity: 1;
}

.taadol .hangItems .item.right::before {
    content: '';
    position: absolute;
    left: -93%;
    top: 56%;
    width: 90%;
    height: 1px;
    background: #fff;
}

.taadol .hangItems .item.center {
    right: -webkit-calc(50% - 49px);
    right: calc(50% - 49px);
}

.taadol .hangItems .item.center::before {
    content: '';
    position: absolute;
    right: 85%;
    top: -41%;
    width: 110%;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.taadol .hangItems .item.left::before {
    content: '';
    position: absolute;
    right: 10%;
    top: -44%;
    width: 84%;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.taadol .taadolFirst {
    position: relative;
}

.taadol .taadolFirst::before {
    content: '1';
    position: absolute;
    right: 7%;
    top: -webkit-calc(50% + 14px);
    top: calc(50% + 14px);
    opacity: 0.3;
}

.taadol .taadolFirst .hangItems {
    margin-top: 10px;
}

.taadol .taadolFirst .hangItems .item.left::after {
    content: '';
    position: absolute;
    right: -39%;
    top: 198%;
    width: 188%;
    height: 1px;
    background: #fff;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.taadol .taadolFirst .hangItems .item.left.transparent::after {
    background: rgba(255, 255, 255, 0) !important;
}

.taadol .taadolFirst .hangItems .item.center::after {
    content: '';
    position: absolute;
    right: -5%;
    top: 98%;
    width: 1px;
    height: 7px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.taadol .taadolFirst .hangItems .item.center.transparent::after {
    background: rgba(255, 255, 255, 0) !important;
}

.taadol .taadolFirst .hangItems .item.right::after {
    content: '';
    position: absolute;
    left: 105%;
    top: 52%;
    width: 182%;
    height: 1px;
    background: #fff;
}

.taadol .taadolFirst .hangItems .item.right.transparent::after {
    background: rgba(255, 255, 255, 0) !important;
}

.taadol .carouselContainer {
    position: relative;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    height: 115px;
    margin: auto;
    background: url("../imgs/zoom.png") no-repeat;
    background-size: cover;
    border-top: 1px dashed #BF2E2E;
    border-bottom: 1px dashed #BF2E2E;
}

.taadol .carouselContainer::before {
    content: '3';
    position: absolute;
    right: 7%;
    top: -webkit-calc(50% - 30px);
    top: calc(50% - 30px);
    opacity: 0.3;
    font-size: 60px;
    line-height: 1;
}

.taadol .carouselContainer .taadolSecond {
    max-width: 550px;
    margin: auto;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems {
    margin-top: -13px;
    right: 25px;
    position: relative;
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems::before {
    content: '';
    position: absolute;
    top: -28px;
    left: -webkit-calc(50% + 8px);
    left: calc(50% + 8px);
    width: 12px;
    height: 12px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #fff;
    z-index: 3;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.green::before {
    background: #28a745;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.green .item.left {
    -webkit-box-shadow: 0 0 20px 0 #28a745;
    box-shadow: 0 0 20px 0 #28a745;
    border-color: #28a745;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.green .item.center {
    -webkit-box-shadow: 0 0 20px 0 #28a745;
    box-shadow: 0 0 20px 0 #28a745;
    border-color: #28a745;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.green .item.right {
    -webkit-box-shadow: 0 0 20px 0 #28a745;
    box-shadow: 0 0 20px 0 #28a745;
    border-color: #28a745;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow::before {
    background: #ffc107;
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: 8;
    animation-iteration-count: 8;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow .item.left {
    -webkit-box-shadow: 0 0 20px 0 #ffc107;
    box-shadow: 0 0 20px 0 #ffc107;
    border-color: #ffc107;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow .item.left.noShine {
    -webkit-box-shadow: 0 0 20px 0 transparent;
    box-shadow: 0 0 20px 0 transparent;
    border-color: transparent;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow .item.center {
    -webkit-box-shadow: 0 0 20px 0 #ffc107;
    box-shadow: 0 0 20px 0 #ffc107;
    border-color: #ffc107;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow .item.center.noShine {
    -webkit-box-shadow: 0 0 20px 0 transparent;
    box-shadow: 0 0 20px 0 transparent;
    border-color: transparent;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow .item.right {
    -webkit-box-shadow: 0 0 20px 0 #ffc107;
    box-shadow: 0 0 20px 0 #ffc107;
    border-color: #ffc107;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.taadol .carouselContainer .taadolSecond .owl-stage-outer .hangItems.yellow .item.right.noShine {
    -webkit-box-shadow: 0 0 20px 0 transparent;
    box-shadow: 0 0 20px 0 transparent;
    border-color: transparent;
}

.taadol .carouselContainer .taadolSecond .owl-nav .owl-prev {
    left: -35%;
    top: 35px;
    background: #BF2E2E;
    padding: 6px !important;
}

.taadol .carouselContainer .taadolSecond .owl-nav .owl-next {
    right: -35%;
    top: 35px;
    background: #BF2E2E;
    padding: 6px !important;
}

.taadol .contentBoxTaadol {
    height: 230px;
}

.taadol .contentBoxTaadol .mCSB_dragger_bar {
    background-color: #ffc107;
    width: 9px;
}

.taadol .taadolThird {
    position: relative;
}

.taadol .taadolThird::before {
    content: '4';
    position: absolute;
    right: 7%;
    top: 37px;
    opacity: 0.3;
}

.taadol .taadolThird .row {
    height: 70px;
    position: relative;
}

.taadol .taadolThird .row::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #BF2E2E;
}

.taadol .taadolThird .row:nth-child(1) {
    margin-top: -30px;
}

.taadol .taadolThird .row:nth-child(3) {
    height: 100px;
}

.taadol .taadolThird .hangItems {
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
    transform: scale(0.4);
    display: inline-block;
    width: 0;
    margin: 0 35px;
    right: -3px;
}

.taadol .taadolThird .hangItems.green::before {
    background: #28a745;
}

.taadol .taadolThird .hangItems.green .item.left {
    -webkit-box-shadow: 0 0 20px 0 #28a745;
    box-shadow: 0 0 20px 0 #28a745;
    border-color: #28a745;
}

.taadol .taadolThird .hangItems.green .item.center {
    -webkit-box-shadow: 0 0 20px 0 #28a745;
    box-shadow: 0 0 20px 0 #28a745;
    border-color: #28a745;
}

.taadol .taadolThird .hangItems.green .item.right {
    -webkit-box-shadow: 0 0 20px 0 #28a745;
    box-shadow: 0 0 20px 0 #28a745;
    border-color: #28a745;
}

.taadol .taadolThird .hangItems.yellow::before {
    background: #ffc107;
    animation: fadeIn 0.5s;
    -webkit-animation: fadeIn 0.5s;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-iteration-count: 8;
    animation-iteration-count: 8;
}

.taadol .taadolThird .hangItems.yellow .item.left {
    -webkit-box-shadow: 0 0 20px 0 #ffc107;
    box-shadow: 0 0 20px 0 #ffc107;
    border-color: #ffc107;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.taadol .taadolThird .hangItems.yellow .item.left.noShine {
    -webkit-box-shadow: 0 0 20px 0 transparent;
    box-shadow: 0 0 20px 0 transparent;
    border-color: transparent;
}

.taadol .taadolThird .hangItems.yellow .item.center {
    -webkit-box-shadow: 0 0 20px 0 #ffc107;
    box-shadow: 0 0 20px 0 #ffc107;
    border-color: #ffc107;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.taadol .taadolThird .hangItems.yellow .item.center.noShine {
    -webkit-box-shadow: 0 0 20px 0 transparent;
    box-shadow: 0 0 20px 0 transparent;
    border-color: transparent;
}

.taadol .taadolThird .hangItems.yellow .item.right {
    -webkit-box-shadow: 0 0 20px 0 #ffc107;
    box-shadow: 0 0 20px 0 #ffc107;
    border-color: #ffc107;
    transition: all ease-in-out 0.5s;
    -moz-transition: all ease-in-out 0.5s;
    -webkit-transition: all ease-in-out 0.5s;
    -o-transition: all ease-in-out 0.5s;
}

.taadol .taadolThird .hangItems.yellow .item.right.noShine {
    -webkit-box-shadow: 0 0 20px 0 transparent;
    box-shadow: 0 0 20px 0 transparent;
    border-color: transparent;
}

.taadol .taadolThird .hangItems.empty .item {
    background: transparent !important;
}

.taadol .taadolThird .hangItems.blur {
    opacity: 0.3 !important;
}

.taadol .taadolThird .hangItems .item {
    width: 50px;
    height: 50px;
}

.taadol .taadolThird .hangItems .item.left {
    right: 35px;
    left: unset;
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0);
    box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0);
}

.taadol .taadolThird .hangItems .item.center {
    left: -webkit-calc(50% - 41px);
    left: calc(50% - 41px);
    top: 44px;
    right: unset;
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0);
    box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0);
}

.taadol .taadolThird .hangItems .item.right {
    left: 7px;
    right: unset;
    -webkit-box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0);
    box-shadow: 0 0 50px 0 rgba(255, 198, 96, 0);
}

.taadol .taadolThird .hangItems .item__content {
    width: 50px;
    height: 50px;
}

.taadol .rightTable {
    width: -webkit-calc(100% - 200px);
    width: calc(100% - 200px);
    max-width: -webkit-calc(100% - 200px);
    max-width: calc(100% - 200px);
}

.taadol .leftTable {
    width: 200px;
    max-width: 200px;
}

.taadol .leftTable thead th {
    background: #28a745 !important;
    color: #fff !important;
}

.taadol .leftTable tbody td {
    background: #28a745 !important;
    color: #fff !important;
    padding: 43px 15px !important;
}

.taadol .leftTable tbody td .mainBtn {
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.taadol .leftTable tbody td .mainBtn svg {
    width: 10px;
}

.taadol .leftTable tbody td .mainBtn:hover svg {
    stroke: #fff;
}

.taadol .userInfoCard .hangItems .item::after,
.taadol .userInfoCard .hangItems .item::before {
    display: none !important;
}

.inviteSearch .submitBtn {
    width: 100%;
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    background: #28A745;
    color: #fff;
    font-size: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.inviteSearch .submitBtn:hover {
    background: #fff;
    color: #000;
}

.inviteSearch .submitBtn:hover svg {
    stroke: #000;
}

.inviteSearch .submitBtn svg {
    display: block;
    margin-bottom: 8px;
}

.medalTaadol .taadolFirst::before {
    display: none !important;
}

.medalTaadol .hangItems {
    right: 20px;
}

.medalTaadol .medalGrid {
    max-width: 590px;
    margin: auto;
    height: 200px;
}

.medalTaadol .medalGrid .mCSB_container {
    padding-right: 20px;
}

.medalTaadol .medalGrid .medalLabel {
    margin: auto auto 10px;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.inviteForm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
}

.inviteForm input.number {
    width: 150px;
    margin: 0;
}

.inviteForm .node {
    padding: 10px;
    border: 1px solid #fff;
    height: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.inviteForm .node .arrow {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    width: 15px;
    height: 15px;
}

.inviteForm .node .hint {
    color: #767676;
    margin: 0 15px;
}

.inviteForm .node .input {
    background: transparent;
    width: 13px;
    border: none;
    border-right: 1px solid #767676;
    padding: 0 2px;
    color: #fff;
}

.inviteForm .node .input.long {
    width: 107px;
    border-right: none;
}

.privacyIls {
    position: relative;
    text-align: center;
    margin-top: 75px;
}

.privacyIls .border {
    position: absolute;
    width: 240px;
    height: 240px;
    left: -webkit-calc(50% - 120px);
    left: calc(50% - 120px);
    top: 0;
    stroke: transparent;
}

.privacyIls .shape {
    width: 160px;
    height: 160px;
    margin-top: 36px;
    stroke: transparent;
}

.privacyRow.deactive {
    opacity: 0.4;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.auth {
    position: relative;
    padding: 3rem 2rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    background: url("../imgs/bg-login.png") no-repeat;
    background-size: cover;
    min-height: 100vh;
}

.auth .logoBox {
    position: absolute;
    left: 52px;
    top: 90px;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    direction: ltr;
    flex-direction: column;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
}

.auth .logoBox .hexagons {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.4;
    left: -73px;
    top: -85px;
    z-index: 1;
}

.auth .logoBox .logo {
    position: relative;
    z-index: 2;
    margin-right: 20px;
}

.auth .logoBox .label {
    color: #fff;
    text-transform: uppercase;
    font-size: 11px;
    padding: 1px 3px;
    background: rgba(118, 118, 118, 0.2);
    -webkit-border-radius: 3px 6px 3px 6px;
    border-radius: 3px 6px 3px 6px;
}

.auth .authBox {
    max-width: 500px;
    background: #fff;
    margin: auto;
    padding: 45px 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    z-index: 2;
}

.auth .authBox.invite {
    max-width: 1000px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
}

.auth .authBox.invite .right {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 67%;
    -ms-flex: 0 0 67%;
    flex: 0 0 67%;
    max-width: 67%;
    background: #efefef;
    padding: 73px 30px;
    border-left: 1px dashed #BF2E2E;
}

.auth .authBox.invite .right .social {
    color: #767676;
    margin-bottom: 25px;
}

.auth .authBox.invite .right .social span {
    margin-left: 20px;
}

.auth .authBox.invite .right .social svg {
    margin-left: 8px;
    stroke: #767676;
}

.auth .authBox.invite .right .prof {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
}

.auth .authBox.invite .right .prof figure {
    width: 80px;
    height: 80px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 25px;
}

.auth .authBox.invite .right .prof figure img {
    width: 100%;
}

.auth .authBox.invite .right .prof .name {
    color: #000;
    margin-bottom: 10px;
}

.auth .authBox.invite .right .prof .date {
    color: #000;
}

.auth .authBox.invite .right .prof .date svg {
    stroke: #000;
    margin-left: 10px;
}

.auth .authBox.invite .right .quote {
    padding: 20px;
    color: #fff;
    background: #28A745;
    position: relative;
    margin-bottom: 30px;
    z-index: 2;
}

.auth .authBox.invite .right .quote::before {
    content: '';
    position: absolute;
    right: 35px;
    top: -2.5px;
    z-index: 1;
    background: #28A745;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.auth .authBox.invite .right .state {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.auth .authBox.invite .right .state .title svg {
    stroke: #BF2E2E;
    margin-right: 10px;
    width: 15px;
    height: 15px;
}

.auth .authBox.invite .left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33%;
    -ms-flex: 0 0 33%;
    flex: 0 0 33%;
    max-width: 33%;
    padding: 20px 30px;
}

.auth .authBox h1 {
    color: #BF2E2E;
    margin-bottom: 30px;
    text-align: center;
}

.auth .authBox form {
    max-width: 300px;
    margin: auto;
}

.auth .authBox form .formCheck input[type="checkbox"]:checked + .label,
.auth .authBox form .formCheck input[type="radio"]:checked + .label {
    color: #28A745;
}

.auth .authBox form .formCheck input[type="checkbox"]:checked + .label::before,
.auth .authBox form .formCheck input[type="radio"]:checked + .label::before {
    border-color: #28A745;
}

.auth .authBox form .formCheck .label::before {
    border: 1px solid #000;
}

.w-max {
    width: -webkit-calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
}

.profile {
    text-align: center;
}

.profile .avatarRow {
    padding: 40px 0;
    position: relative;
}

.profile .avatarRow .back {
    position: absolute;
    width: 100%;
    height: 100%;
    stroke: none;
    left: 0;
    top: 14px;
}

.profile .avatarRow figure {
    width: 100px;
    height: 100px;
    overflow: hidden;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin: auto;
}

.profile .form {
    max-width: 900px;
    margin: auto;
}

.profile .form input {
    color: #fff;
}

.profile .form input::-webkit-input-placeholder {
    color: #fff;
    font-size: 12px;
}

.profile .form input::-moz-placeholder {
    color: #fff;
    font-size: 12px;
}

.profile .form input:-ms-input-placeholder {
    color: #fff;
    font-size: 12px;
}

.profile .form input:-moz-placeholder {
    color: #fff;
    font-size: 12px;
}

.radios input:checked + .label {
    border-color: #28a745;
}

.radios .checkLabel .label {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border-color: #BF2E2E;
}

.radios .checkLabel .label::after {
    content: '';
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #28a745;
}

#chart svg {
    width: auto;
    height: auto;
    stroke: transparent;
}

#chart .highcharts-background {
    fill: transparent;
}

#chart .highcharts-title,
#chart .highcharts-credits {
    display: none;
}

#chart .highcharts-legend text {
    color: #fff !important;
    fill: #fff !important;
}

#chart .highcharts-grid-line {
    stroke: #767676;
    opacity: 0.5;
}

#chart text {
    font-family: 'IRANYekan', 'Tahoma', serif !important;
    font-size: 10px !important;
    font-weight: bold !important;
}

/*

#chart .highcharts-yaxis-grid .highcharts-grid-line {
    stroke: transparent;
}

#chart text {
    color: #fff !important;
    fill: #fff !important;
}

#chart .highcharts-graph {
    stroke: #BF2E2E;
}

#chart .highcharts-point {
    fill: #BF2E2E;
}

#chart .highcharts-tooltip text {
    color: #000 !important;
    fill: #000 !important;
}
*/

.walletContainer {
    max-width: 600px;
    margin: auto;
}

.walletContainer .title {
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
}

.walletContainer .balance {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.walletContainer .balance .iconHolder {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.walletContainer .balance .iconHolder.gray {
    background: #efefef;
}

.walletContainer .balance .iconHolder.green {
    background: #28A745;
}

.walletContainer .balance .iconHolder svg {
    stroke: #000;
}

.walletContainer .balance .amount {
    color: #fff;
}

.walletContainer .balance .amount p:first-child {
    margin-top: 13px;
    margin-bottom: 4px;
}

.walletContainer .balance .amount .bold {
    margin-left: 5px;
}

.walletContainer .formRow {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.walletContainer .formRow .circleBtn {
    margin-top: 20px;
}

.walletContainer .formRow .circleBtn svg {
    width: 40px;
    height: 40px;
}

.walletContainer .formRow .selectBox label {
    display: block;
}

.walletContainer .formRow .selectBox select {
    background: transparent;
    border-color: #28A745;
}

.walletContainer .formRow .selectBox input {
    background: transparent;
    border: 1px solid #28A745;
    height: 43px;
    padding: 10px;
    color: #fff;
}

.walletContainer .formRow .selectBox input.small {
    width: 80px;
}

.walletContainer .formRow .selectBox2 {
    border: 1px solid #fff;
    height: 43px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.walletContainer .formRow .selectBox2 .icon {
    margin-left: 15px;
    margin-right: 15px;
}

.walletContainer .formRow .selectBox2 select {
    background: transparent;
    border: none;
    font-size: 10px;
}

.walletContainer .formRow .selectBox2 input[type="text"],
.walletContainer .formRow .selectBox2 input[type="tel"],
.walletContainer .formRow .selectBox2 input[type="number"] {
    background: transparent;
    border: none;
    color: #fff;
    height: 43px;
}

.walletContainer .formRow .selectBox2 input[type="text"].cardNum,
.walletContainer .formRow .selectBox2 input[type="tel"].cardNum,
.walletContainer .formRow .selectBox2 input[type="number"].cardNum {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    border-right: 1px solid #fff;
}

.walletContainer .formRow .selectBox2 input[type="text"].cardNum:first-child,
.walletContainer .formRow .selectBox2 input[type="tel"].cardNum:first-child,
.walletContainer .formRow .selectBox2 input[type="number"].cardNum:first-child {
    border-right: none;
}

.walletContainer .formRow .mainBtn {
    margin-top: 20px;
}

.walletContainer .delete svg {
    stroke: #767676;
    width: 15px;
    height: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }

    .container,
    .container-sm {
        max-width: 540px;
    }

    .col-sm {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-sm-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-sm-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-sm-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-sm-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-sm-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-sm-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-sm-0 {
        margin-left: 0;
    }

    .offset-sm-1 {
        margin-left: 8.33333%;
    }

    .offset-sm-2 {
        margin-left: 16.66667%;
    }

    .offset-sm-3 {
        margin-left: 25%;
    }

    .offset-sm-4 {
        margin-left: 33.33333%;
    }

    .offset-sm-5 {
        margin-left: 41.66667%;
    }

    .offset-sm-6 {
        margin-left: 50%;
    }

    .offset-sm-7 {
        margin-left: 58.33333%;
    }

    .offset-sm-8 {
        margin-left: 66.66667%;
    }

    .offset-sm-9 {
        margin-left: 75%;
    }

    .offset-sm-10 {
        margin-left: 83.33333%;
    }

    .offset-sm-11 {
        margin-left: 91.66667%;
    }

    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-scrollable {
        max-height: -webkit-calc(100% - 3.5rem);
        max-height: calc(100% - 3.5rem);
    }

    .modal-dialog-scrollable .modal-content {
        max-height: -webkit-calc(100vh - 3.5rem);
        max-height: calc(100vh - 3.5rem);
    }

    .modal-dialog-centered {
        min-height: -webkit-calc(100% - 3.5rem);
        min-height: calc(100% - 3.5rem);
    }

    .modal-dialog-centered::before {
        height: -webkit-calc(100vh - 3.5rem);
        height: calc(100vh - 3.5rem);
    }

    .modal-sm {
        max-width: 300px;
    }

    .d-sm-none {
        display: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-sm-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-sm-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-sm-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-sm-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-sm-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-sm-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-sm-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-sm-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .text-sm-left {
        text-align: left !important;
    }

    .text-sm-right {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .mt-sm-0,
    .my-sm-0 {
        margin-top: 0 !important;
    }

    .mr-sm-0,
    .mx-sm-0 {
        margin-right: 0 !important;
    }

    .mb-sm-0,
    .my-sm-0 {
        margin-bottom: 0 !important;
    }

    .ml-sm-0,
    .mx-sm-0 {
        margin-left: 0 !important;
    }

    .m-sm-1 {
        margin: 0.25rem !important;
    }

    .mt-sm-1,
    .my-sm-1 {
        margin-top: 0.25rem !important;
    }

    .mr-sm-1,
    .mx-sm-1 {
        margin-right: 0.25rem !important;
    }

    .mb-sm-1,
    .my-sm-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-sm-1,
    .mx-sm-1 {
        margin-left: 0.25rem !important;
    }

    .m-sm-2 {
        margin: 0.5rem !important;
    }

    .mt-sm-2,
    .my-sm-2 {
        margin-top: 0.5rem !important;
    }

    .mr-sm-2,
    .mx-sm-2 {
        margin-right: 0.5rem !important;
    }

    .mb-sm-2,
    .my-sm-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-sm-2,
    .mx-sm-2 {
        margin-left: 0.5rem !important;
    }

    .m-sm-3 {
        margin: 1rem !important;
    }

    .mt-sm-3,
    .my-sm-3 {
        margin-top: 1rem !important;
    }

    .mr-sm-3,
    .mx-sm-3 {
        margin-right: 1rem !important;
    }

    .mb-sm-3,
    .my-sm-3 {
        margin-bottom: 1rem !important;
    }

    .ml-sm-3,
    .mx-sm-3 {
        margin-left: 1rem !important;
    }

    .m-sm-4 {
        margin: 1.5rem !important;
    }

    .mt-sm-4,
    .my-sm-4 {
        margin-top: 1.5rem !important;
    }

    .mr-sm-4,
    .mx-sm-4 {
        margin-right: 1.5rem !important;
    }

    .mb-sm-4,
    .my-sm-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-sm-4,
    .mx-sm-4 {
        margin-left: 1.5rem !important;
    }

    .m-sm-5 {
        margin: 3rem !important;
    }

    .mt-sm-5,
    .my-sm-5 {
        margin-top: 3rem !important;
    }

    .mr-sm-5,
    .mx-sm-5 {
        margin-right: 3rem !important;
    }

    .mb-sm-5,
    .my-sm-5 {
        margin-bottom: 3rem !important;
    }

    .ml-sm-5,
    .mx-sm-5 {
        margin-left: 3rem !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .pt-sm-0,
    .py-sm-0 {
        padding-top: 0 !important;
    }

    .pr-sm-0,
    .px-sm-0 {
        padding-right: 0 !important;
    }

    .pb-sm-0,
    .py-sm-0 {
        padding-bottom: 0 !important;
    }

    .pl-sm-0,
    .px-sm-0 {
        padding-left: 0 !important;
    }

    .p-sm-1 {
        padding: 0.25rem !important;
    }

    .pt-sm-1,
    .py-sm-1 {
        padding-top: 0.25rem !important;
    }

    .pr-sm-1,
    .px-sm-1 {
        padding-right: 0.25rem !important;
    }

    .pb-sm-1,
    .py-sm-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-sm-1,
    .px-sm-1 {
        padding-left: 0.25rem !important;
    }

    .p-sm-2 {
        padding: 0.5rem !important;
    }

    .pt-sm-2,
    .py-sm-2 {
        padding-top: 0.5rem !important;
    }

    .pr-sm-2,
    .px-sm-2 {
        padding-right: 0.5rem !important;
    }

    .pb-sm-2,
    .py-sm-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-sm-2,
    .px-sm-2 {
        padding-left: 0.5rem !important;
    }

    .p-sm-3 {
        padding: 1rem !important;
    }

    .pt-sm-3,
    .py-sm-3 {
        padding-top: 1rem !important;
    }

    .pr-sm-3,
    .px-sm-3 {
        padding-right: 1rem !important;
    }

    .pb-sm-3,
    .py-sm-3 {
        padding-bottom: 1rem !important;
    }

    .pl-sm-3,
    .px-sm-3 {
        padding-left: 1rem !important;
    }

    .p-sm-4 {
        padding: 1.5rem !important;
    }

    .pt-sm-4,
    .py-sm-4 {
        padding-top: 1.5rem !important;
    }

    .pr-sm-4,
    .px-sm-4 {
        padding-right: 1.5rem !important;
    }

    .pb-sm-4,
    .py-sm-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-sm-4,
    .px-sm-4 {
        padding-left: 1.5rem !important;
    }

    .p-sm-5 {
        padding: 3rem !important;
    }

    .pt-sm-5,
    .py-sm-5 {
        padding-top: 3rem !important;
    }

    .pr-sm-5,
    .px-sm-5 {
        padding-right: 3rem !important;
    }

    .pb-sm-5,
    .py-sm-5 {
        padding-bottom: 3rem !important;
    }

    .pl-sm-5,
    .px-sm-5 {
        padding-left: 3rem !important;
    }

    .m-sm-n1 {
        margin: -0.25rem !important;
    }

    .mt-sm-n1,
    .my-sm-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-sm-n1,
    .mx-sm-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-sm-n1,
    .my-sm-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-sm-n1,
    .mx-sm-n1 {
        margin-left: -0.25rem !important;
    }

    .m-sm-n2 {
        margin: -0.5rem !important;
    }

    .mt-sm-n2,
    .my-sm-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-sm-n2,
    .mx-sm-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-sm-n2,
    .my-sm-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-sm-n2,
    .mx-sm-n2 {
        margin-left: -0.5rem !important;
    }

    .m-sm-n3 {
        margin: -1rem !important;
    }

    .mt-sm-n3,
    .my-sm-n3 {
        margin-top: -1rem !important;
    }

    .mr-sm-n3,
    .mx-sm-n3 {
        margin-right: -1rem !important;
    }

    .mb-sm-n3,
    .my-sm-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-sm-n3,
    .mx-sm-n3 {
        margin-left: -1rem !important;
    }

    .m-sm-n4 {
        margin: -1.5rem !important;
    }

    .mt-sm-n4,
    .my-sm-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-sm-n4,
    .mx-sm-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-sm-n4,
    .my-sm-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-sm-n4,
    .mx-sm-n4 {
        margin-left: -1.5rem !important;
    }

    .m-sm-n5 {
        margin: -3rem !important;
    }

    .mt-sm-n5,
    .my-sm-n5 {
        margin-top: -3rem !important;
    }

    .mr-sm-n5,
    .mx-sm-n5 {
        margin-right: -3rem !important;
    }

    .mb-sm-n5,
    .my-sm-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-sm-n5,
    .mx-sm-n5 {
        margin-left: -3rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mt-sm-auto,
    .my-sm-auto {
        margin-top: auto !important;
    }

    .mr-sm-auto,
    .mx-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-auto,
    .my-sm-auto {
        margin-bottom: auto !important;
    }

    .ml-sm-auto,
    .mx-sm-auto {
        margin-left: auto !important;
    }
}

@media screen and (min-width: 48em) {
    .accordionItem {
        max-height: 15em;
        -webkit-transition: max-height 0.5s;
        -o-transition: max-height 0.5s;
        transition: max-height 0.5s;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }

    .col-md {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-md-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-md-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-md-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-md-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-md-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-md-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-md-0 {
        margin-left: 0;
    }

    .offset-md-1 {
        margin-left: 8.33333%;
    }

    .offset-md-2 {
        margin-left: 16.66667%;
    }

    .offset-md-3 {
        margin-left: 25%;
    }

    .offset-md-4 {
        margin-left: 33.33333%;
    }

    .offset-md-5 {
        margin-left: 41.66667%;
    }

    .offset-md-6 {
        margin-left: 50%;
    }

    .offset-md-7 {
        margin-left: 58.33333%;
    }

    .offset-md-8 {
        margin-left: 66.66667%;
    }

    .offset-md-9 {
        margin-left: 75%;
    }

    .offset-md-10 {
        margin-left: 83.33333%;
    }

    .offset-md-11 {
        margin-left: 91.66667%;
    }

    .d-md-none {
        display: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-md-inline-flex {
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-md-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-md-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-md-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-md-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-md-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-md-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-md-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-md-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-md-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-md-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-md-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-md-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-md-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .text-md-left {
        text-align: left !important;
    }

    .text-md-right {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }

    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }

    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }

    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }

    .m-md-1 {
        margin: 0.25rem !important;
    }

    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }

    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }

    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }

    .m-md-2 {
        margin: 0.5rem !important;
    }

    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }

    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }

    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }

    .m-md-3 {
        margin: 1rem !important;
    }

    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }

    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }

    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }

    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }

    .m-md-4 {
        margin: 1.5rem !important;
    }

    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }

    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }

    .m-md-5 {
        margin: 3rem !important;
    }

    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }

    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }

    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }

    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }

    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }

    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }

    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }

    .p-md-1 {
        padding: 0.25rem !important;
    }

    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }

    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }

    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }

    .p-md-2 {
        padding: 0.5rem !important;
    }

    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }

    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }

    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }

    .p-md-3 {
        padding: 1rem !important;
    }

    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }

    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }

    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }

    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }

    .p-md-4 {
        padding: 1.5rem !important;
    }

    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }

    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }

    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }

    .p-md-5 {
        padding: 3rem !important;
    }

    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }

    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }

    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }

    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }

    .m-md-n1 {
        margin: -0.25rem !important;
    }

    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }

    .m-md-n2 {
        margin: -0.5rem !important;
    }

    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }

    .m-md-n3 {
        margin: -1rem !important;
    }

    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }

    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }

    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }

    .m-md-n4 {
        margin: -1.5rem !important;
    }

    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }

    .m-md-n5 {
        margin: -3rem !important;
    }

    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }

    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }

    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }

    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }

    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }

    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }

    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }

    .col-lg {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-lg-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-lg-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-lg-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-lg-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-lg-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-lg-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-lg-0 {
        margin-left: 0;
    }

    .offset-lg-1 {
        margin-left: 8.33333%;
    }

    .offset-lg-2 {
        margin-left: 16.66667%;
    }

    .offset-lg-3 {
        margin-left: 25%;
    }

    .offset-lg-4 {
        margin-left: 33.33333%;
    }

    .offset-lg-5 {
        margin-left: 41.66667%;
    }

    .offset-lg-6 {
        margin-left: 50%;
    }

    .offset-lg-7 {
        margin-left: 58.33333%;
    }

    .offset-lg-8 {
        margin-left: 66.66667%;
    }

    .offset-lg-9 {
        margin-left: 75%;
    }

    .offset-lg-10 {
        margin-left: 83.33333%;
    }

    .offset-lg-11 {
        margin-left: 91.66667%;
    }

    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }

    .d-lg-none {
        display: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-lg-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-lg-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-lg-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-lg-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-lg-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-lg-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-lg-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-lg-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .text-lg-left {
        text-align: left !important;
    }

    .text-lg-right {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }

    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }

    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }

    .m-lg-1 {
        margin: 0.25rem !important;
    }

    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }

    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }

    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }

    .m-lg-2 {
        margin: 0.5rem !important;
    }

    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }

    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }

    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }

    .m-lg-3 {
        margin: 1rem !important;
    }

    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }

    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }

    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }

    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }

    .m-lg-4 {
        margin: 1.5rem !important;
    }

    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }

    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }

    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }

    .m-lg-5 {
        margin: 3rem !important;
    }

    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }

    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }

    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }

    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }

    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }

    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }

    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }

    .p-lg-1 {
        padding: 0.25rem !important;
    }

    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }

    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }

    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }

    .p-lg-2 {
        padding: 0.5rem !important;
    }

    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }

    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }

    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }

    .p-lg-3 {
        padding: 1rem !important;
    }

    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }

    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }

    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }

    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }

    .p-lg-4 {
        padding: 1.5rem !important;
    }

    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }

    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }

    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }

    .p-lg-5 {
        padding: 3rem !important;
    }

    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }

    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }

    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }

    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }

    .m-lg-n1 {
        margin: -0.25rem !important;
    }

    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }

    .m-lg-n2 {
        margin: -0.5rem !important;
    }

    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }

    .m-lg-n3 {
        margin: -1rem !important;
    }

    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }

    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }

    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }

    .m-lg-n4 {
        margin: -1.5rem !important;
    }

    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }

    .m-lg-n5 {
        margin: -3rem !important;
    }

    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }

    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }

    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }

    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }

    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }

    .col-xl {
        -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .row-cols-xl-1 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-cols-xl-2 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-cols-xl-3 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .row-cols-xl-4 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .row-cols-xl-5 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }

    .row-cols-xl-6 > * {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 8.33333%;
        -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
        max-width: 8.33333%;
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 16.66667%;
        -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
        max-width: 16.66667%;
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 33.33333%;
        -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 41.66667%;
        -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
        max-width: 41.66667%;
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 58.33333%;
        -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
        max-width: 58.33333%;
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 66.66667%;
        -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
        max-width: 66.66667%;
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 83.33333%;
        -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
        max-width: 83.33333%;
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 91.66667%;
        -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
        max-width: 91.66667%;
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -webkit-order: 13;
        -ms-flex-order: 13;
        order: 13;
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -webkit-order: 0;
        -ms-flex-order: 0;
        order: 0;
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
        -ms-flex-order: 4;
        order: 4;
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -ms-flex-order: 5;
        order: 5;
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
        -ms-flex-order: 6;
        order: 6;
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -webkit-order: 7;
        -ms-flex-order: 7;
        order: 7;
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -webkit-order: 8;
        -ms-flex-order: 8;
        order: 8;
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -webkit-order: 9;
        -ms-flex-order: 9;
        order: 9;
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -webkit-order: 10;
        -ms-flex-order: 10;
        order: 10;
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -webkit-order: 11;
        -ms-flex-order: 11;
        order: 11;
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -webkit-order: 12;
        -ms-flex-order: 12;
        order: 12;
    }

    .offset-xl-0 {
        margin-left: 0;
    }

    .offset-xl-1 {
        margin-left: 8.33333%;
    }

    .offset-xl-2 {
        margin-left: 16.66667%;
    }

    .offset-xl-3 {
        margin-left: 25%;
    }

    .offset-xl-4 {
        margin-left: 33.33333%;
    }

    .offset-xl-5 {
        margin-left: 41.66667%;
    }

    .offset-xl-6 {
        margin-left: 50%;
    }

    .offset-xl-7 {
        margin-left: 58.33333%;
    }

    .offset-xl-8 {
        margin-left: 66.66667%;
    }

    .offset-xl-9 {
        margin-left: 75%;
    }

    .offset-xl-10 {
        margin-left: 83.33333%;
    }

    .offset-xl-11 {
        margin-left: 91.66667%;
    }

    .modal-xl {
        max-width: 1140px;
    }

    .d-xl-none {
        display: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }

    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important;
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
    }

    .flex-xl-wrap {
        -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }

    .flex-xl-fill {
        -webkit-box-flex: 1 !important;
        -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
    }

    .flex-xl-grow-0 {
        -webkit-box-flex: 0 !important;
        -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        -webkit-box-flex: 1 !important;
        -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
    }

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important;
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -webkit-align-items: center !important;
        -ms-flex-align: center !important;
        align-items: center !important;
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important;
    }

    .align-content-xl-start {
        -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
        align-content: center !important;
    }

    .align-content-xl-between {
        -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
    }

    .align-content-xl-around {
        -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
        align-self: auto !important;
    }

    .align-self-xl-start {
        -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
        align-self: center !important;
    }

    .align-self-xl-baseline {
        -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
    }

    .text-xl-left {
        text-align: left !important;
    }

    .text-xl-right {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }

    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }

    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }

    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }

    .m-xl-1 {
        margin: 0.25rem !important;
    }

    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }

    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }

    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }

    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }

    .m-xl-2 {
        margin: 0.5rem !important;
    }

    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }

    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }

    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }

    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }

    .m-xl-3 {
        margin: 1rem !important;
    }

    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }

    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }

    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }

    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }

    .m-xl-4 {
        margin: 1.5rem !important;
    }

    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }

    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }

    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }

    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }

    .m-xl-5 {
        margin: 3rem !important;
    }

    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }

    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }

    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }

    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }

    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }

    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }

    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }

    .p-xl-1 {
        padding: 0.25rem !important;
    }

    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }

    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }

    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }

    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }

    .p-xl-2 {
        padding: 0.5rem !important;
    }

    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }

    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }

    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }

    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }

    .p-xl-3 {
        padding: 1rem !important;
    }

    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }

    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }

    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }

    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }

    .p-xl-4 {
        padding: 1.5rem !important;
    }

    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }

    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }

    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }

    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }

    .p-xl-5 {
        padding: 3rem !important;
    }

    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }

    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }

    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }

    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }

    .m-xl-n1 {
        margin: -0.25rem !important;
    }

    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }

    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }

    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }

    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }

    .m-xl-n2 {
        margin: -0.5rem !important;
    }

    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }

    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }

    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }

    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }

    .m-xl-n3 {
        margin: -1rem !important;
    }

    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }

    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }

    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }

    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }

    .m-xl-n4 {
        margin: -1.5rem !important;
    }

    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }

    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }

    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }

    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }

    .m-xl-n5 {
        margin: -3rem !important;
    }

    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }

    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }

    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }

    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }

    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }

    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}

@media only screen and (min-width: 1375px) {
    .messageBox {
        min-height: 80px;
        background-position-y: center;
    }

    .messageBox .imgBox {
        -webkit-align-self: unset;
        -ms-flex-item-align: unset;
        align-self: unset;
    }
}

@media only screen and (min-width: 1500px) {
    .mainContent {
        padding: 60px 15px;
    }

    .hexagons {
        bottom: -319px;
        width: 501px;
        right: 10%;
    }
}

@media only screen and (min-width: 1550px) {
    .messageBox .imgBox {
        height: 60px;
    }
}

@media only screen and (min-width: 1650px) {
    .mainContent .searchBox {
        top: 31px;
    }
}

@media only screen and (min-width: 1700px) {
    .messageBox .imgBox {
        height: 65px;
    }

    .hangItems {
        width: 297px;
    }

    .hangItems .item {
        width: 85px;
        height: 85px;
    }

    .hangItems .item.center {
        right: -webkit-calc(50% - 58px);
        right: calc(50% - 58px);
    }

    .hangItems .item_content {
        width: 85px;
        height: 85px;
    }

    .hangItems .item_content svg {
        width: 20px;
        height: 20px;
    }

    .hangItems .item_content .pos {
        font-size: 16px;
    }

    .hangItems .item_content .line {
        width: 75px;
    }

    .hangItems .item_content .code {
        font-size: 10px;
    }

    .mainDashboard .leftCircleContainer .circleHolder {
        width: 220px;
        height: 220px;
    }

    .mainDashboard .leftCircleContainer .circleHolder .back {
        top: -21px;
        left: -91px;
        width: 972px;
    }

    .mainDashboard .leftCircleContainer .circleHolder .circle .degree {
        width: 54px;
    }

    .mainDashboard .leftCircleContainer .hangItems {
        margin-top: 111px;
        width: 297px;
    }

    .mainDashboard .cartItem {
        margin-bottom: 36px;
        margin-left: 18px;
    }
}

@media only screen and (min-width: 1750px) {
    .mainContent {
        padding: 70px 15px;
    }
}

@media only screen and (min-width: 1840px) {
    .messageBox .imgBox {
        height: 72px;
        margin-right: 36px;
    }
}

@media only screen and (max-width: 1500px) {
    .giftWrapper {
        padding: 0 65px;
    }
}

@media only screen and (max-width: 1299px) {
    .sendMailBox .typeTitle {
        font-size: 8px;
        padding: 4px;
        margin-left: 3px;
    }

    .mainDashboard .cartItem {
        width: 530px;
        padding: 13px 10px;
    }

    .mainDashboard .cartItem .assets .iconn {
        width: 35px;
        height: 35px;
    }

    .mainDashboard .cartItem .assets .iconn .count {
        top: -15px;
        right: -12px;
        height: 30px;
        min-width: 30px;
    }

    .mainDashboard .cartItem .assets .type.type1 .detail .typeTitle {
        font-size: 8px;
        padding: 4px;
        margin-left: 3px;
    }
}

@media only screen and (max-width: 1280px) {
    .messageBox .imgBox {
        height: 49px;
    }
}

@media only screen and (max-width: 1199px) {
    .font-14,
    html,
    body,
    .mainContent .topItems .right .item .subTitle .bold,
    .mainContent .topItems .left .item .subTitle .bold,
    .userInfoCard .item .stats .statItem .title,
    .userInfoCard .item .stats .statItem .subTitle,
    .pageTitle,
    .walletContainer .title {
        font-size: 13px;
    }

    .font-16,
    .userInfoCard .item .avatar .name,
    .card .box .content .title,
    .iconTitle,
    #convertModal .elem .text .bold,
    .mainDashboard .leftCircleContainer .circleHolder .circle .name,
    .mainDashboard .cartItem .assets .iconn .count,
    .auth .authBox h1 {
        font-size: 14px;
    }

    .font-18,
    .card .topLabel .bold,
    .card .box .content strong,
    .card .box .content .mainBtn,
    .bankCard .cardNum,
    .walletContainer .balance .amount .bold {
        font-size: 15px;
    }

    .font-20,
    .accordion .listItem .iconRight,
    .auth .authBox.invite .right .prof .name {
        font-size: 16px;
    }

    .font-21,
    #giftReject .emtiaz span.bold,
    #giftReject .emtiaz span.green {
        font-size: 17px;
    }

    .font-22 {
        font-size: 18px;
    }

    .font-28,
    .taadol .taadolFirst::before,
    .taadol .taadolThird::before {
        font-size: 22px;
    }

    .font-38 {
        font-size: 30px;
    }

    .mainContent {
        background: none;
        border: 1px solid rgba(191, 46, 46, 0.5);
        height: auto;
        margin: 25px 0;
    }

    .mainContent .searchBox {
        width: 289px;
        right: -webkit-calc(50% - 145px);
        right: calc(50% - 145px);
    }

    .hexagons {
        display: none;
    }

    .messageBox {
        min-height: 50px;
        background: none;
        padding: 10px;
        border: 1px solid rgba(191, 46, 46, 0.5);
        background: rgba(191, 46, 46, 0.15);
    }

    .messageBox .close {
        top: 0;
        margin-left: 15px;
    }

    .messageBox .imgBox {
        display: none;
    }

    .hangItems {
        height: 110px;
    }

    .levelDesc {
        padding: 15px;
        -webkit-border-radius: 25px;
        border-radius: 25px;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .levelDesc .levelIcon {
        margin-left: 0;
    }

    .levelDesc .levelTitle {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 10px;
        text-align: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .levelDesc .levelTitle::after {
        display: none;
    }

    .levelDesc .levelDescription {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        padding-right: 0;
        margin-top: 10px;
    }

    .levelDesc .levelDescription::after {
        display: none;
    }

    .levelDesc .levelType {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0100%;
        -ms-flex: 0 0100%;
        flex: 0 0100%;
        max-width: 100%;
        padding-right: 0;
        margin-top: 10px;
    }

    .levelDesc .chevron {
        margin-top: 10px;
    }

    .mainDashboard .leftCircleContainer .circleHolder {
        margin: auto;
    }

    .mainDashboard .leftCircleContainer .hangItems {
        margin: 100px auto;
        height: 110px;
        right: 19px;
    }

    .mainDashboard .dashBoardCarts {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .mainDashboard .cartItem {
        margin: auto;
    }

    .mainDashboard .cartItem .lineItem {
        display: none;
    }

    .giftWrapper .header .left {
        margin-top: 0;
    }

    .auth .logoBox {
        display: none;
    }

    .profile .avatarRow .back {
        opacity: 0;
    }
}

@media only screen and (max-width: 991px) {
    .font-22 {
        font-size: 20px;
    }

    .font-28,
    .taadol .taadolFirst::before,
    .taadol .taadolThird::before {
        font-size: 20px;
    }

    .font-38 {
        font-size: 25px;
    }

    .siteSidebar {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        right: -100%;
        overflow-y: auto;
        overflow-x: hidden;
        background: #000;
        z-index: 1000;
    }

    .siteSidebar .sideBottom {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
    }

    .modal {
        background: none;
    }

    .modal .modal-content {
        background-color: #000;
        border: 1px solid rgba(191, 46, 46, 0.5);
        padding: 15px;
    }

    .modal .node {
        width: 100%;
        margin-right: 0;
    }

    .mainDashboard.mainDashboard2 {
        height: unset;
    }

    .inviteForm input.number {
        width: 100%;
        margin-bottom: 10px;
    }

    .inviteForm .colmn {
        width: 100%;
    }

    .inviteForm .node {
        width: 100%;
        margin-right: 0;
    }

    .inviteForm .submitBtn {
        width: 100%;
        margin-top: 10px;
    }

    .auth .authBox.invite {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .auth .authBox.invite .right {
        border-left: none;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .auth .authBox.invite .right .social {
        font-size: 10px;
    }

    .auth .authBox.invite .right .social span {
        margin-left: 10px;
    }

    .auth .authBox.invite .right .social svg {
        width: 10px;
        height: 10px;
    }

    .auth .authBox.invite .right .prof .date {
        font-size: 10px;
    }

    .auth .authBox.invite .right .prof .date svg {
        width: 15px;
        height: 15px;
    }

    .auth .authBox.invite .right .state .title svg {
        display: none;
    }

    .auth .authBox.invite .left {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .font-18,
    .card .topLabel .bold,
    .card .box .content strong,
    .card .box .content .mainBtn,
    .bankCard .cardNum,
    .walletContainer .balance .amount .bold {
        font-size: 14px;
    }

    .font-20,
    .accordion .listItem .iconRight,
    .auth .authBox.invite .right .prof .name {
        font-size: 14px;
    }

    .font-21,
    #giftReject .emtiaz span.bold,
    #giftReject .emtiaz span.green {
        font-size: 14px;
    }

    .font-22 {
        font-size: 15px;
    }

    .font-28,
    .taadol .taadolFirst::before,
    .taadol .taadolThird::before {
        font-size: 15px;
    }

    .font-38 {
        font-size: 18px;
    }

    .mainContent .topItems {
        position: relative;
        margin-top: 50px;
        font-size: 10px;
    }

    .mainContent .topItems .right,
    .mainContent .topItems .left {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 45%;
        -ms-flex: 0 0 45%;
        flex: 0 0 45%;
        max-width: 45%;
    }

    .mainContent .legend {
        position: relative;
        top: 20px;
        right: 0;
        text-align: center;
    }

    .messageBox .assets {
        width: 100%;
    }

    .messageBox .close {
        margin: 0;
        width: 100%;
        text-align: center;
        right: 0;
    }

    .messageBox .title {
        padding: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .messageBox .text {
        padding: 0;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .messageBox .arrows {
        display: none;
    }

    .sendMailBox .typeTitle {
        transform: skew(0, 0deg);
        -webkit-transform: skew(0, 0deg);
        -moz-transform: skew(0, 0deg);
        -ms-transform: skew(0, 0deg);
        -o-transform: skew(0, 0deg);
    }

    .sendMailBox .typeTitle p {
        transform: skew(0, 0deg);
        -webkit-transform: skew(0, 0deg);
        -moz-transform: skew(0, 0deg);
        -ms-transform: skew(0, 0deg);
        -o-transform: skew(0, 0deg);
    }

    .sendMailBox .link {
        transform: skew(0, 0deg);
        -webkit-transform: skew(0, 0deg);
        -moz-transform: skew(0, 0deg);
        -ms-transform: skew(0, 0deg);
        -o-transform: skew(0, 0deg);
    }

    .sendMailBox .link svg {
        transform: skew(0, 0deg) rotate(180deg);
        -webkit-transform: skew(0, 0deg) rotate(180deg);
        -moz-transform: skew(0, 0deg) rotate(180deg);
        -ms-transform: skew(0, 0deg) rotate(180deg);
        -o-transform: skew(0, 0deg) rotate(180deg);
    }

    .tableContainer {
        width: 100%;
        overflow-x: auto;
    }

    .mainTable {
        width: auto;
        min-width: 1000px;
    }

    .tabContainer .tab {
        padding: 10px 15px;
        font-size: 11px;
        transform: skew(0deg, 0deg);
        -webkit-transform: skew(0deg, 0deg);
        -moz-transform: skew(0deg, 0deg);
        -ms-transform: skew(0deg, 0deg);
        -o-transform: skew(0deg, 0deg);
    }

    .tabContainer .tab span {
        transform: skew(0deg, 0deg);
        -webkit-transform: skew(0deg, 0deg);
        -moz-transform: skew(0deg, 0deg);
        -ms-transform: skew(0deg, 0deg);
        -o-transform: skew(0deg, 0deg);
    }

    .userInfoCard {
        background: rgba(191, 46, 46, 0.3);
        border: 1px solid #BF2E2E;
        padding: 15px;
        font-size: 10px;
    }

    .userInfoCard .owl-item {
        padding-right: 0;
        padding-left: 0;
    }

    .userInfoCard .item .stats .statItem {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 10px;
    }

    .userInfoCard .item .avatar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .userInfoCard .item .avatar .name {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .userInfoCard .item .contactRow {
        text-align: center;
    }

    .userInfoCard .item .hangItems {
        -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
        transform: scale(0.6);
    }

    .mainDashboard .cartItem {
        border: 1px solid rgba(191, 46, 46, 0.5);
        margin-bottom: 15px;
    }

    .mainDashboard .cartItem .frame {
        display: none;
    }

    .mainDashboard .cartItem .assets .iconn {
        -webkit-border-radius: 0;
        border-radius: 0;
        background: #BF2E2E;
    }

    .mainDashboard .cartItem .assets .iconn svg {
        stroke: #fff;
    }

    .mainDashboard .cartItem .assets .iconn .count {
        -webkit-border-radius: 0;
        border-radius: 0;
        top: -8px;
        right: -12px;
        height: 23px;
        min-width: 23px;
        background: #fff;
        color: #BF2E2E;
        font-weight: 900;
    }

    .mainDashboard .cartItem .assets .type.type1 .detail .typeTitle {
        transform: skew(0, 0deg);
        -webkit-transform: skew(0, 0deg);
        -moz-transform: skew(0, 0deg);
        -ms-transform: skew(0, 0deg);
        -o-transform: skew(0, 0deg);
    }

    .mainDashboard .cartItem .assets .type.type1 .detail .typeTitle p {
        transform: skew(0, 0deg);
        -webkit-transform: skew(0, 0deg);
        -moz-transform: skew(0, 0deg);
        -ms-transform: skew(0, 0deg);
        -o-transform: skew(0, 0deg);
    }

    .mainDashboard .cartItem .assets .type.type1 .detail .link {
        transform: skew(0, 0deg);
        -webkit-transform: skew(0, 0deg);
        -moz-transform: skew(0, 0deg);
        -ms-transform: skew(0, 0deg);
        -o-transform: skew(0, 0deg);
    }

    .mainDashboard .cartItem .assets .type.type1 .detail .link svg {
        transform: skew(0, 0deg) rotate(180deg);
        -webkit-transform: skew(0, 0deg) rotate(180deg);
        -moz-transform: skew(0, 0deg) rotate(180deg);
        -ms-transform: skew(0, 0deg) rotate(180deg);
        -o-transform: skew(0, 0deg) rotate(180deg);
    }

    .giftWrapper .header .right {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 15px;
    }

    .giftWrapper .header .mainTitle {
        width: 100%;
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 28px;
    }

    .giftWrapper .header .left {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        margin-bottom: 15px;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .giftWrapper .specialGifts {
        margin-top: 15px;
    }

    .giftWrapper .specialGifts .title {
        text-align: center;
    }

    .taadol .taadolFirst .hangItems {
        right: 15px;
    }

    .taadol .taadolFirst .hangItems .item.left::after {
        display: none;
    }

    .taadol .taadolFirst .hangItems .item.right::after {
        display: none;
    }

    .taadol .carouselContainer {
        display: none;
    }

    .taadol .contentBoxTaadol {
        height: unset;
    }

    .taadol .taadolThird {
        display: none;
    }

    .walletContainer .balance {
        width: 217px;
        margin: auto;
    }
}

@media only screen and (max-width: 599px) {
    .mainDashboard .cartItem {
        width: 100%;
        padding-bottom: 0;
    }

    .mainDashboard .cartItem .assets {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .mainDashboard .cartItem .assets > div {
        margin-bottom: 10px;
    }

    .walletContainer .formRow .selectBox2 {
        margin-top: 20px;
        display: block;
    }

    .walletContainer .formRow .mainBtn {
        width: -webkit-calc(100% - 20px);
        width: calc(100% - 20px);
    }

    .walletContainer .formRow .radios {
        width: 100%;
    }

    .walletContainer .formRow .buttomForm {
        width: 100%;
        max-width: 100%;
    }

    .walletContainer .formRow .buttomForm .selectBox,
    .walletContainer .formRow .buttomForm .selectBox2 {
        width: 100%;
        margin-top: 20px;
    }

    .walletContainer .formRow .buttomForm input {
        width: 100%;
    }

    .walletContainer .formRow .buttomForm input.small {
        width: 100%;
    }

    .walletContainer .formRow .buttomForm input.cardNum {
        width: 30px !important;
    }
}

@media only screen and (max-width: 575px) {
    .owl-nav {
        display: none !important;
    }

    .tabContainer .tab {
        width: 100%;
        text-align: center;
        border-top: 1px solid #fff;
    }

    .tabContainer .tab:first-child {
        border-right: 1px solid #fff;
    }

    .tabContainer .tab:last-child {
        border-left: 1px solid #fff;
    }

    .bankCard {
        width: 100%;
    }

    .modal .node {
        height: auto;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .modal .node .arrow {
        width: 100%;
        text-align: center;
        margin: 0 0 8px;
    }

    .modal .node .hint {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .inviteForm .node {
        height: auto;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .inviteForm .node .arrow {
        width: 100%;
        text-align: center;
        margin: 0 0 8px;
    }

    .inviteForm .node .hint {
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .auth {
        padding: 0;
    }

    .auth .authBox {
        max-width: 100%;
        width: 100%;
        height: 100%;
    }
}

@media only screen and (max-width: 513px) {
    .mainDashboard .cartItem .assets .type > .topBox {
        position: relative;
        bottom: 0;
    }
}

@media only screen and (max-width: 499px) {
    .mainContent .topItems {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: initial;
        -webkit-align-items: initial;
        -ms-flex-align: initial;
        align-items: initial;
    }

    .mainContent .topItems .right,
    .mainContent .topItems .left {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .giftWrapper {
        padding: 0 15px;
    }
}

@media only screen and (max-width: 425px) {
    .mainDashboard .cartItem .assets > div {
        width: 100% !important;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .mainDashboard .cartItem .assets > div::after {
        display: none;
    }

    .mainDashboard .cartItem .assets .iconn .count {
        top: 0;
        right: 0;
        height: 100%;
        min-width: 23px;
        border: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .fade {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .collapsing {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

@media print {
    .d-print-none {
        display: none !important;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: -webkit-box !important;
        display: -webkit-flex !important;
        display: -ms-flexbox !important;
        display: flex !important;
    }

    .d-print-inline-flex {
        display: -webkit-inline-flex !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important;
    }
}

.captcha-refresh {
    transform: translate(0%, 25%);
}

.w-auto {
    width: auto !important;
}

.disabled {
    background-color: #DDD !important;
}

.round {
    border-radius: 5px;
}

.shadow-gold {
    box-shadow: 0 5px 15px rgba(255, 198, 96, 0.5) !important;
}

.shadow-gray {
    box-shadow: 0 5px 15px rgba(127, 127, 127, 0.5) !important;
}

.shadow-green {
    box-shadow: 0 5px 15px rgba(0, 127, 0, 0.5) !important;
}

.shadow-red {
    box-shadow: 0 5px 15px rgba(127, 0, 0, 0.5) !important;
}

.shadow-black {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5) !important;
}

.hidden {
    display: none;
}

.d-ltr {
    direction: ltr !important;
}

.d-rtl {
    direction: rtl !important;
}

.cursor-pointer {
    cursor: pointer !important;
}

.noresize {
    resize: none;
}

.height-auto {
    height: auto !important;
}

.opaque {
    opacity: 1 !important;
}

.bg-gradient {
    background: #000;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000), color-stop(100%, #BF2E2E));
    background: -o-linear-gradient(top, #000 0%, #BF2E2E 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#000), to(#BF2E2E));
    background: linear-gradient(to bottom, #000 0%, #BF2E2E 100%);
}

.stroke-white {
    stroke: white !important;
}

.w-fill {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.mask {
    background-color: #000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}

.page-item.active .page-link {
    z-index: 3;
    color: #000;
    background-color: #bd2e30 !important;
    border-color: #bd2e30 !important;
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-right: -1px;
    line-height: 1.25;
    color: #fff !important;
    background-color: #463637 !important;
    border: 1px solid #463637 !important;
}

.page-link:hover {
    z-index: 2;
    color: #fff !important;
    text-decoration: none;
    background-color: #000 !important;
    border-color: #000 !important;
}


.icon-circle {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    height: 20px !important;
    margin-left: 5px;
    padding: 2px 6px;
    stroke: #000;
    width: 20px !important;
}

.icon-circle.gray {
    background: #777;
}

.icon-circle.green {
    background: #28A745;
}

.icon-circle.gold {
    background: #FFC660;
}

.icon-circle.red {
    background: #BF2E2E;
}

.z2 {
    position: relative;
    z-index: 2 !important;
}

.w50 {
    width: 50px !important;
}

.w75 {
    width: 75px !important;
}

.w100 {
    width: 100px !important;
}

.w150 {
    width: 150px !important;
}

.w200 {
    width: 200px !important;
}

.w250 {
    width: 250px !important;
}

.w300 {
    width: 300px !important;
}

.w400 {
    width: 400px !important;
}
