@charset "utf-8";

*,*::after,*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    background-color: #fff;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    margin: 0;
    padding: 0;
    font-size: 100%;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeSpeed;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: scroll;
}
button, label, textarea, input, select {
    font: inherit;
    border-radius: .375rem;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    vertical-align: baseline;
    outline: none;
    box-shadow: none;
}
input, textarea, select {
    border: 1px solid #ccc;
}
button {
    cursor: pointer;
    background-color: transparent;
    border-width: 0;
}
h1,h2,h3,h4,h5,h6,p {
    margin-top: 0;
}
h1,h2,h3,h4,h5,h6 {
    line-height: 1.2em;
}
a {
    color: inherit;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    transition: .5s;
}
[type="submit"], [type="reset"], [type="button"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}
svg:not(:root) {
    overflow: hidden;
}
g, path, circle, rect {
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    transform-origin: 50% 50%;
    animation-duration: 18s;
    animation-direction: normal;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    border: none;
    outline: 0 none;
}
img:not([data-src]) {
    -webkit-animation: fadeInImages 1s ease;
    -moz-animation: fadeInImages 1s ease;
    animation: fadeInImages 1s ease;
}
@keyframes fadeInImages {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    vertical-align: top;
}
tr:nth-of-type(odd) td {
    background-color: rgb(160 149 149/5%)!important;
}
td, th {
    padding: 10px;
    text-align: center;
}
th {
    padding: 15px 10px;
}
td {
    border-top: 1px solid #dee2e6;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.tomato {
    color: tomato !important;
}
.fa-check {
    color: #62a83d;
}
.fa-times {
    color: red;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -.75rem;
    margin-right: -.75rem;
}
.row>div {
    position: relative;
}
.row>* {
    width: 100%;
    max-width: 100%;
    padding-left: .75rem;
    padding-right: .75rem;
}
.row .col {
    display: flex;
    flex-direction: column;
}
.text-gradient {
    background: linear-gradient(92deg, #6f5a99 2.7%, #e24175 53.71%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.borderbound {
    background-color: #fff;
    border: 1px solid rgba(38,56,150,.1411764705882353);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px 0 rgb(34 41 47 / 12%);
}
.position-relative {
    position: relative;
}