/* components/animation/transitions/fade.css */.fadeanim-enter-from, .fadeanim-leave-to {
opacity: 0;
}
.fadeanim {
animation: fadeanim 2s ease-in-out;
}
@keyframes fadeanim {
 0% {
opacity: 0;
}
15% {
opacity: 1;
transform: translate(0, 0);
}
85% {
opacity: 1;
transform: translate(0, 0);
}
 100% {
opacity: 0;
}
}/* components/breadcrumb/chevron/basic.css */.chevron {
margin:0;
height:45px;
line-height:45px;
padding:0px;
color:var(--cl3);
opacity:0.8;
text-transform: capitalize;
}
.chevron.home {
margin: 0px -19px 0px 13px;
}
.navcrumb .iconShell {
float:left;
margin:0;
padding:0;
}
@media (max-width: 701px){
.chevron.home {
margin: 0px -13px 0px 0px;
}
}/* components/button/simple/basic.css */button {
outline:none;
border:0;
cursor: pointer;
-webkit-appearance: none;
background-color:transparent;
color: inherit;
font-family: var(--titleFont);
font-weight:500;
height:40px;
line-height:40px;
padding: 0px 15px;
opacity:0.9;
}
button:hover:not([disabled]){
opacity:1;
background:var(--bg3);
color:var(--cl1);
}
button:disabled {
cursor: default;
opacity:0.9;
}
button:hover:disabled {
background: unset !important;
color: unset !important;
}
.btnIcon {
width:40px;
padding:0;
margin:0 auto;
}
.btnIcon.xSmall {
width:20px !important;
}
.btnIcon.small {
width:30px !important;
}
.btnIcon.large {
width:50px !important;
}
.btnIcon.xLarge {
width:60px !important;
}
@media (max-width: 850px){
button {
opacity:1;
font-size:15px;
}
}/* components/form/input/basic.css */.inputShell {
width:100%;
margin:0 auto;
padding:0;
height:40px;
}
.inputShell input[type] {
font-family: var(--bodyFont);
width:99%;
height:100%;
line-height:100%;
padding:0px 1%;
box-sizing: border-box;
font-size: 16px !important;
opacity: 0.8;
background: rgb(200 200 200 / 15%);
color:var(--cl1);
outline: 0;
border-width: 0px;
border-bottom: 1px solid var(--cl3);
border-radius: 0px;
}
.inputShell input[type]:focus {
border-bottom:2px solid var(--accent);
outline:none;
background: transparent;
opacity:1;
box-shadow: inset 4px 4px 4px var(--bg3), inset -4px -4px 4px var(--bg1);
animation: bounceBasic .3s ease-in-out alternate;
}
.inputShell input[type]:disabled {
background:var(--bg2);
opacity: .7;
}
input::placeholder {
opacity: .5;
color: var(--cl3);
font-size:0.9em
}
label, label .titleFont {
height: 26px;
line-height: 26px;
font-family: var(--titleFont);
padding-left:8px;
}
@keyframes bounceBasic {
0% {
transform: scale(1);
}
100% {
transform: scale(1.02);
}
}/* components/form/append/php.css */.append {
position:relative;
}
.append button.appendix {
position:absolute;
top:0;
right: -3px;
height: 100%;
}/* components/form/select/vue.css */ /* components/hamburger/animated/basic.css */.hamburg div span {
display: block;
position: absolute;
height: 1.5px;
width: 100%;
opacity: 1;
right: 0;
transform: rotate(0deg);
transition: .5s ease-in-out;
background:var(--cl1);
}
.hamburg .starty span:nth-child(1) {
top: 6px;
transform-origin: left center;
width:25px;
}
.hamburg .starty span:nth-child(2) {
top: 12px;
transform-origin: left center;
width:20px;
}
.hamburg .starty span:nth-child(3) {
top: 18px;
transform-origin: left center;
width:14px;
}
.hamburg .close span:nth-child(1) {
transform: rotate(45deg);
margin-top:12px;
}
.hamburg .close span:nth-child(2) {
width: 0%;
opacity: 0;
transition: .1s;
}
.hamburg .close span:nth-child(3) {
transform: rotate(-45deg);
margin-top: 12px;
}
/* components/list/narrow/single.css */.ulsingle {
margin:0;
}
.ulsingle li {
height: 40px;
line-height: 40px;
width: 98%;
margin: 0;
padding: 0px 1%;
background: var(--bg2);
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.ulsingle li:nth-child(even) {
background: var(--bg1);
}
.ulsingle li .avatar {
float: left;
margin-right:6px;
}/* components/sidebar/leftbar/basic.css */#sidebar.starty {
width:50px;
}
#sidebar.starty .menuIcons {
background: var(--bg1);
}
#sidebar.nowActive {
width:100%;
}
#sidebar h3 {
float:left;
font-size:inherit;
height:50px;
line-height:50px;
padding:0;
margin:0;
position:relative;
}
#sidebar.starty h3 {
display:none;
}
#sidebar.nowActive h3 {
display:block;
width:94px;
padding-left:6px;
cursor:pointer;
font-size: 0.85em;
}
.headAccordion {
height:100%;
}
#sidebar.starty .sideleftmenu {
width:50px;
}

#sidebar.nowActive .sideleftmenu {
width:150px;
}

.sideleftmenu ul li {
margin:0;
padding:0;
clear:both;
width:100%;
text-align: left;
color:var(--cl1);
}
.headAccordion .btnIcon.large {
float: left;
border-radius:0px;
}
.sideleftmenu ul li.nowActive {
background:var(--bg3);
color:var(--accent);
}
.sideleftmenu ul li.nowActive h3::after {
content: '';
position:absolute;
right:0;
top:16px;
width: 0px;
height: 0px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid var(--bg3);
}
.siderightmenu ul {
width:100%;
margin:0;
padding:6px 0px;
}
.siderightmenu ul a {
text-decoration:none;
color:var(--cl1);
}
.siderightmenu ul li {
width:90%;
padding:0px 2%;
margin:0px 3%;
height:40px;
line-height:40px;
color:var(--cl1);
cursor:pointer;
font-size: 0.95em;
}
.siderightmenu ul li:hover {
background:var(--bg2);
}
.siderightmenu ul li.colorVars {
margin:0px 5% 10px 5%;
padding:0;
}
.siderightmenu ul li.colorVars div {
float:left;
width:20%;
height:40px;
margin:0;
padding:0;
}
@media (max-width: 701px){
#sidebar.starty {
transform: translateX(-50px);
}
#sidebar.nowActive {
transform: translateX(0);
}
}/* components/sidebar/leftbar/basicvue.css *//* components/title/span/basic.css */.titleSpan {
width: auto;
min-width:280px;
max-width:97%;
padding:0px 2% 15px 1%;
margin:0;
font-size:18px;
position: relative;
font-weight:normal;
line-height:1.2em;
text-align:left;
border-bottom:2px solid var(--bg3);
}
.titleSpan span {
position:absolute;
left:0px;
bottom:0px;
width:120px;
height:2px;
background:var(--accent);
}/* containers/card/card.css */.card {
width:96%;
padding:10px 2%;
margin:0;
clear:both;
position:relative;
box-shadow: 0 1px 3px 0 var(--bg3),0 0px 4px 0 var(--bg3);
min-height:40px;
}
.card.cardfull {
width:100%;
padding: 1px 0px;
min-height: 36px;
}
.card.cardfit {
width: 100%;
padding: 0;
}
@media (max-width: 700px){
.card {
width:92%;
margin:0px 2%;
}
.card.cardfull {
width:100%;
margin:0;
}
.card.cardfit {
width: 96%;
}
}/* containers/card/cardtop.css */.cardtitle {
height:35px;
}
.cardtop {
position:absolute;
top:0;
left:0;
right:0;
height:36px;
line-height:36px;
padding:0px 0px 0px 10px;
border-top-left-radius: var(--radius);
border-top-right-radius: var(--radius);
text-align: left;
}
.cardtop .titletop {
justify-items: left;
height: 36px;
line-height: 36px;
font-family: var(--titleFont);
text-transform: uppercase;
font-size:16px;
}
.cardtop .absoright {
float: right;
height: 36px;
line-height: 36px;
border-radius: 0px;
/*border-left: 2px solid var(--bg3);*/
cursor: pointer !important;
border-top-right-radius: var(--radius);
}
@media (max-width: 700px){
.card.cardfull .cardtop {
border-top-left-radius: 0;
border-top-right-radius: 0;
}
}/* containers/card/subCard.css */.subCard {
width:96%;
padding:10px 2%;
margin:0;
clear:both;
background:var(--bg2);
}
/* containers/col/col.css */.col {
float: left;
}
/* containers/col/colRight.css */.colRight {
float:right;
}
/* containers/cols2/fixed49between.css */.cols2.left49 {
width: 49%;
padding: 0;
margin: 0px 1% 0px 0px;
text-align: left;
clear: left;
}
.cols2.right49 {
float: right;
width: 49%;
padding: 0;
margin: 0px 0px 0px 1%;
text-align: left;
clear: right;
}
/* containers/flex/flex.css */.flex {
width:100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
text-align:center;
row-gap: 0;
}/* containers/flex/flexcols2.css */.flex.flexcols2 {
justify-content: space-between;
column-gap:2%;
row-gap: 25px;
text-align: left;
}
.flex.flexcols2 .child {
flex-direction: column;
position:relative;
}
.flex.flexcols2 .child .details {
display:none;
}
.flex.flexcols2 .child.centered, .flex.flexcols2 .child.frfull {
text-align: center;
}
.flex.flexcols2 .child .absoright {
position:absolute;
top:8px;
right:8px;
cursor:pointer;
}
.flex.flexcols2 .child.fr4, .flex.flexcols2 .child.frfull {
width: 100% !important;
}
.flex.flexcols2 .child.frfull .details  {
display: block;
}
@media (max-width: 700px){
.flex.flexcols2 .child {
width: 100%;
}
.flex.flexcols2 .child.fr1 {
width: 48%;
}
}
@media (min-width: 701px){
.flex.flexcols2 .child {
width: 48%;
}
.flex.flexcols2 .child.fr1 {
width: 23%;
}
.flex.flexcols2 .child.fr3 {
width: 73%;
}
.flex.flexcols2 .child.fr33 {
width: 31%;
}
}/* containers/flex/gap20.css */.gap20 {
column-gap: 20px;
}
/* containers/grid/gridcols2.css */.gridcols2 {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 20px;
row-gap: 10px;
}
@media (max-width: 700px){
.gridcols2 {
grid-template-columns: 1fr;
column-gap: 0px;
}
}/* containers/grid/inlineGrid.css */.inlineGrid {
display: inline-grid;
grid-auto-flow: column;
align-items: center;
grid-gap: 10px;
/*line-height: 0;*/
}/* containers/main/rowView.css */.rowView {
padding:0;
}/* containers/padding/vPad010.css */.vPad010, .vPad010mob {
clear:both;
padding-top:0px;
padding-bottom:10px;
}
@media (max-width: 700px){
.vPad010mob {
padding-top:10px;
}
}/* containers/padding/vPad10.css */.vPad10 {
clear:both;
padding-top:10px;
padding-bottom:10px;
}
/* containers/padding/vPad20.css */.vPad20 {
clear:both;
padding-top:20px;
padding-bottom:20px;
}
/* containers/padding/vPad5.css */.vPad5 {
padding-top: 5px;
padding-bottom: 5px;
}
/* containers/responsive/overflowy.css */.overflow.overflowy {
overflow-y: auto;
overflow-x: hidden;
}
.overflow.overflowy::-webkit-scrollbar {
width: 1em;
}/* containers/responsive/respFlow.css */@media (max-width: 701px){
.respFlow {
float:none !important;
width:100% !important;
max-width: 100% !important;
margin:0 !important;
padding:0 !important;
}
}
/* css/border-radius/avatar.css */.avatar {
border-radius: 50%;
}
/* css/border-radius/pill.css */.pill {
width: fit-content;
padding: 0px 20px;
text-align: center;
height:40px;
line-height:40px;
border-radius: 16px;
}
.pill.block {
display: block;
}
.pill.xSmall {
padding: 0px 8px;
}
.pill.small {
padding: 0px 15px;
}/* css/box-shadow/shadow0.css */.shadow0 {
box-shadow:none;
}
/* css/color/rainbow.css */.azureish, .outline-azureish, .clazureish {
color: #00adc2;
}
.redish, .outline-redish, .clredish {
color: #ea5455;
}
.greenish, .outline-greenish, .clgreenish {
color: #019b46;
}
.grayish, .outline-grayish, .clgrayish {
color: #979797;
}
.orangeish, .outline-orangeish, .clorangeish {
color: #ff7d00;
}
.purpleish, .outline-purpleish, .clpurpleish {
color: #7367f0;
}
.magentaish, .outline-magentaish, .clmagentaish {
color: #d700d2;
}
.goldish, .outline-goldish, .clgoldish {
color: #b19300;
}
.oliveish, .outline-oliveish, .cloliveish {
color: #20B2AA;
}
.blueish, .outline-blueish, .clblueish {
color: #1773cc;
}
.paleish, .outline-paleish, .clpaleish {
color: #DB7093;
}
.azureish, .bgazureish {
background-color: rgba(0, 207, 232, 0.05);
}
.redish, .bgredish {
background-color: rgba(234, 84, 85, 0.05);
}
.greenish, .bggreenish {
background-color: rgba(40, 199, 111, 0.05);
}
.grayish, .bggrayish {
background-color: rgba(151, 151, 151, 0.08);
}
.orangeish, .bgorangeish {
background-color: rgba(255, 159, 67, 0.05);
}
.purpleish, .bgpurpleish {
background-color: rgba(115, 103, 240, 0.05);
}
.magentaish, .bgmagentaish {
background-color: rgba(227, 0, 231, 0.04);
}
.goldish, .bggoldish {
background-color: rgba(152, 126, 0, 0.07);
}
.oliveish, .bgoliveish {
background-color: rgba(32, 178, 170, 0.05);
}
.blueish, .bgblueish {
background-color: rgba(23, 115, 204, 0.05);
}
.paleish, .bgpaleish {
background-color: rgba(219, 112, 147, 0.07);
}
.outline-azureish, .bdazureish {
border:1px solid #00adc2;
}
.outline-redish, .bdredish {
border:1px solid #ea5455;
}
.outline-greenish, .bdgreenish {
border:1px solid #019b46;
}
.outline-grayish, .bdgrayish {
border:1px solid #979797;
}
.outline-orangeish, .bdorangeish {
border:1px solid #ff7d00;
}
.outline-purpleish, .bdpurpleish {
border:1px solid #7367f0;
}
.outline-magentaish, .bdmagentaish {
border:1px solid #d700d2;
}
.outline-goldish, .bdgoldish {
border:1px solid #b19300;
}
.outline-oliveish, .bdoliveish {
border:1px solid #20B2AA;
}
.outline-blueish, .bdblueish {
border:1px solid #1773cc;
}
.outline-paleish, .bdpaleish {
border:1px solid #DB7093;
}/* css/hover/noHover.css */.noHover:hover {
background: unset !important;
color: unset !important;
cursor: default;
}/* css/main/template.css */body {
position:relative;
background-color:var(--bg1);
padding:0;
margin:0;
font-family: var(--bodyFont);
font-display: swap;
font-weight:300;
color:var(--cl3);
font-size:14px;
}
.titleFont {
color:var(--cl2);
}
a:link, a:visited {
text-decoration:none;
color:var(--accent);
}
.inherit, a:link, a:hover, a:visited {
color:inherit;
}
.linkShell {
position: relative;
width: 100%;
height: 100%;
}
.linkShell a {
position: absolute;
top: 0;
right: 0;
bottom:0;
left: 0;
width: 100%;
height: 100%;
}
h1, h2, h3, h4, .titleFont {
font-family:var(--titleFont);
font-display: swap;
font-weight:500;
}
ul {
list-style:none;
padding-left:0;
}
[v-cloak] {
display: none;
}
.clear {
clear:both;
}
.shadow1, .subCard, button, .basicTable, .dropDown {
box-shadow:0 1px 3px 0 var(--bg3),0 0px 4px 0 var(--bg3);
}
.radius, .card, .subCard, button {
border-radius: var(--radius);
}
.opac {
opacity:1;
}
.opac:hover {
opacity:0.8;
}
.iconShell {
margin: 0 auto;
}
.iconShell svg {
width:100%;
height:100%;
margin-left: auto;
margin-right: auto;
display: block !important;
}
@media (min-width: 701px){
.wideHide {
display: none;
}
}
@media (max-width: 700px){
body {
font-size:1.05rem;
}
.mobHide {
display: none;
}
}
.fade-enter-active, .fade-leave-active, .modalswipe-enter-active, .modalswipe-leave-active {
transition: all .8s ease;
}
.fade-enter-from, .fade-leave-to {
opacity: 0;
}
.modalswipe-enter-from, .modalswipe-leave-to {
transform: translateY(100%);
}/* css/main/variants.css */.primary, button.primary:hover:not([disabled]), .primaryHover:hover {
background:var(--accent);
color:var(--primatext);
border:1px solid var(--accent);
}
.secondary, .secondaryHover:hover {
background:linear-gradient(to right, var(--bg1), var(--bg3));
color:var(--cl2);
border:1px transparent;
}
.tertiary {
background: linear-gradient(0.25turn, var(--bg1), var(--bg2), var(--bg1));
}
.darkaccent {
background: color-mix(in srgb, #222023 30%, var(--accent));
}
.mixAccent {
color: color-mix(in srgb, var(--cl3) 60%, var(--accent));
}
.clBg1, .cl1Hover:hover {
color: var(--bg1) !important;
}
.clBg2, .cl2Hover:hover {
color: var(--bg2) !important;
}
.clBg3, .cl3Hover:hover {
color: var(--bg3) !important;
}
.outline-cl1, .clCl1, .bg1Hover:hover {
color: var(--cl1) !important;
}
.outline-cl2, .clCl2, .bg2Hover:hover {
color: var(--cl2) !important;
}
.outline, .outline-cl3, .clCl3, .bg3Hover:hover {
color: var(--cl3) !important;
}
.outline-accent, .clAccent {
color: var(--accent) !important;
}
.lightHover:hover, .primary:hover, .outline-accent:hover, .clBg1:hover, .clBg2:hover, .clBg3:hover {
background: var(--cl3);
border: 1px solid rgba(0, 0, 0, 0);
color:var(--bg1);
}
.bgBg1, .bg1Hover:hover {
background: var(--bg1) !important;
}
.bgBg2, .bg2Hover:hover {
background: var(--bg2) !important;
}
.bgBg3, .bg3Hover:hover {
background: var(--bg3) !important;
}
.bgCl1, .cl1Hover:hover {
background: var(--cl1) !important;
}
.bgCl2, .cl2Hover:hover {
background: var(--cl2) !important;
}
.bgCl3, .cl3Hover:hover {
background: var(--cl3) !important;
}
.bgAccent, .accentHover:hover {
background: var(--accent) !important;
color: var(--bg1);
}
.bdBg1 {
border:1px solid var(--bg1) !important;
}
.bdBg2 {
border:1px solid var(--bg2) !important;
}
.bdBg3 {
border:1px solid var(--bg3) !important;
}
.outline-cl1, .bdCl1 {
border:1px solid var(--cl1) !important;
}
.outline-cl2, .bdCl2 {
border:1px solid var(--cl2) !important;
}
.outline, .outline-cl3, .bdCl3 {
border:1px solid var(--cl3) !important;
}
.outline-accent, .bdAccent {
border:1px solid var(--accent) !important;
}
.xSmall {
height:20px !important;
line-height:20px !important;
}
.small {
height:30px !important;
line-height:30px !important;
}
.medium {
height:40px !important;
line-height:40px !important;
}
.large {
height:50px !important;
line-height:50px !important;
}
.xLarge {
height:60px !important;
line-height:60px !important;
}/* css/margin/mAuto.css */.mAuto {
margin:0 auto !important;
}
/* css/margin/mZero.css */.mZero {
margin:0 !important;
}
/* css/misc/ellips.css */.ellips {
text-overflow:ellipsis;
white-space:nowrap;
overflow:hidden;
}
/* css/misc/responsive.css */.responsive, img.responsive {
width:100%;
height:auto;
}
/* css/text-transform/upper.css */.upper {
text-transform:uppercase;
}
/* components/form/select/basic.css */.selectShell {
width:100%;
height:40px;
margin:0;
padding:0;
transition: all 0.5s;
position:relative;
text-align:left;
}
.selectShell .drop {
width:100%;
height: 100%;
line-height: 100%;
padding: 0px 8px;
border-width: 0px;
background: rgb(200 200 200 / 15%);
border-bottom: 1px solid var(--cl3);
border-radius: 0px;
color: var(--cl3);
text-align:left;
font-family: var(--bodyFont);
box-shadow: none;
}
.selectShell .drop:disabled {
background:var(--bg2);
opacity: .7;
}
.selectShell .drop:hover {
background:var(--bg2);
}
.selectShell .opened {
background: transparent;
border-bottom:2px solid var(--accent);
animation: bounceBasic .3s ease-in-out alternate;
}
.selectShell .drop .suffix {
position:absolute;
right: 10px;
top:15px;
opacity:0.8;
transition: all 0.5s;
border:0;
background:transparent;
}
.selectShell .drop .suffix.closed {
transform: rotate(180deg);
}
.selectShell .drop .suffix.opened {
transform: rotate(0);
}
.selectShell ul {
position:absolute;
top:28px;
left:0;
right:0;
z-index: 1003;
height:350px;
overflow-y: auto;
}
.selectShell ul::-webkit-scrollbar {
width: 1em;
background-color: rgba(var(--rgbaccent), 0.9);
}
.selectShell ul::-webkit-scrollbar-thumb {
background-color: var(--bg3);
}
.selectShell.bg2 ul::-webkit-scrollbar-thumb, .selectShell.bg3 ul::-webkit-scrollbar-thumb, .selectShell.cl3 ul::-webkit-scrollbar {
background-color: var(--accent);
}
.selectShell.bg2 ul::-webkit-scrollbar {
background-color: var(--bg2);
}
.selectShell.bg3 ul::-webkit-scrollbar {
background-color: var(--bg3);
}
.selectShell.cl3 ul::-webkit-scrollbar {
background-color: var(--cl3);
}
.selectShell ul::-webkit-scrollbar-track, .selectShell ul::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 1px var(--cl3);
}
.selectShell ul li {
background:var(--accent);
color:var(--primatext);
box-shadow: 0 1px 1px 0 var(--bg3),0 0px 1px 0 var(--bg3);
height:40px;
line-height:40px;
width:calc(100% - 16px);
margin: 0;
cursor:pointer;
padding:0px 8px;
}
.selectShell ul li:last-child {
border-bottom-left-radius:var(--radius);
border-bottom-right-radius:var(--radius);
}
.selectShell.large ul {
top:40px;
}
.selectShell.large .drop .suffix {
top: 20px;
}
.selectShell.small ul {
top:18px;
}
.selectShell.small .drop .suffix {
top: 9px;
}
@media (max-width: 850px){
button {
font-size:inherit;
}
}
@keyframes bounceBasic {
0%{
transform: scale(1);
}
100%{
transform: scale(1.01);
}
}/* containers/cols2/cols2.css */.cols2 {
float: left;
}
/* containers/responsive/overflow.css */.overflow {
position: relative;
}
.overflow::-webkit-scrollbar-track, .overflow::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 1px var(--cl3);
}
.overflow::-webkit-scrollbar-thumb {
background-color: var(--bg2);
}
.overflow.accent::-webkit-scrollbar-thumb {
background-color: var(--accent);
}/* containers/responsive/responsive.css */.responsive {
float:left;
}
/* custom web */.subView {
width: calc(100% - 70px);
max-width:1300px;
padding:0px 10px 0px 60px;
margin:0 auto;
}
#main.subView, .subView #main {
min-height:550px;
}
hr.thinLine {
margin:10px 0px;
border:none;
background: var(--cl3);
height: 0.5px;
opacity:0.2;
}
@media (max-width: 701px){
.subView {
width:98%;
padding:0px 1%;
}
}/* custom cms */.floatsides .right {
float:right;
text-align:right;
width:60px;
}
.floatsides .left {
margin-right:70px;
}
.opac {
opacity: .8;
}
.flex.between {
justify-content:space-between;
}
.between .left, .between .right  {
max-width: 50%;
}
.between .subleft, .between .subright  {
margin-right:15px;
height:28px;
line-height:28px;
}
.between .subleft {
float:left;
text-align:left;
}
.between .subright {
float:right;
text-align:right;
}
.pax_voting {
width:100px;
height:10px;
background:var(--bg3);
margin: 8px auto;
}
.pax_voting.paxplus {
background:green;
position:relative;
}
.paxplus .radius {
position:absolute;
top:0;
right:0;
bottom:0;
background:red;
}
img.radius {
width: 100%;
height: auto;
max-width: 400px;
}
.emoji.avatar {
background:var(--bg1);
border:2px solid var(--bg1);
}
.message2 {
margin:5px 0px 0px 85px;
}
@media (max-width: 500px){
.message2 {
margin:0px 0px 0px 10px;
clear: both;
}
}