
/* Important get content to flow to bottom and still overflow correctly

Reference
http://stackoverflow.com/questions/8468066/child-inside-parent-with-min-height-100-not-inheriting-height/8468131#8468131

 Update : doesn't work on firefox - and is breaking change
html, body{
    height: 100%;
}
.off-canvas-wrap, .inner-wrap, .greater-max{
    display: table;
    height: inherit;
}
*/

body{
    background: #D8F0AE;
    background: #BADAE2;
    background: #FFF7D5;
    background: #FAF4DC;
    background: #BAF1FF;
    background: rgba(186, 242, 255, 0.87);
}
textarea{
    min-height: 100px;
    min-width: 125px;
}
.editor, .editor__content {
    background-color: #eeeeee;
}
.clickable:hover {
    cursor: pointer;
}
/** Bootstrap flex utilities **/
.d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
}
.d-inline-flex {
     display: -ms-inline-flexbox !important;
     display: inline-flex !important;
 }
.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}
.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}
.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
}
.flex-grow-0 {
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
}
.flex-grow-1 {
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
}
.flex-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
}
.flex-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
}
.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
}
.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}
.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
}
.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}
.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
}
.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important;
}
.align-items-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
}
.align-items-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
}
.align-content-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
}
.align-content-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
}
.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
}
.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
}
.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
}
.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
}
.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
}
.align-self-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
}
.align-self-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
}
.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
}
.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
}
.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
}

/* Bootstrap margin and padding utilities*/
.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;
}

.w-100 {
    width: 100%;
}
#headBase{
	position: relative;
}

#imageHeader{
    border-bottom: 3px solid #239463;
}
#imageHeader div{
    max-height: 250px;
    background: #307444;
}

#mainContent{
    min-height: 350px;
}

#container_row{
    margin-bottom: 2em;
}

#container{
    background: #fff;
    min-height: 94vh;
    height: 100%;
    border-left: 3px solid #EFEFEF;
    border-right: 3px solid #EFEFEF;
    /* Firefox why are you moronic? - adds random extra em at bottom no matter what.
        minus from margin does the trick without seeming to mess up on chrome */
    margin-bottom: -1em;
    box-shadow: 10px 0px 15px -5px rgba(255, 242, 191, 1), -10px 0px 15px -5px rgba(255,242,191,0.78);
    box-shadow: 8px 0px 15px -5px rgba(120,219,255,0.78), -8px 0px 15px -5px rgba(120,219,255,0.78);
}
.staff-image {
    float: left;
    max-height: 150px;
    border-radius: 1em;
    border: 2px #f6f6f6 solid;
    margin-right: 1em;
}
.sp-palette {
    max-width: 120px !important;
}
.sp-palette-row {
    padding-bottom: 1em;
}

.mb-0 {
    margin-bottom: 0 !important;
}
.mb-2 {
    margin-bottom: .5em !important;
}
.mb-3 {
    margin-bottom: 1em !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.mb-5 {
    margin-bottom: 3rem !important;
}

.signUpBlock{
    display: block;
    text-align: center;
    height: 50px;
    padding: .5em;
    line-height: 1.8em;
    margin: auto;
    margin-bottom: 1.5em;
    font-weight: bold;
    width: 100%;
    max-width: 350px;
    background: #f14949;
    border: 2px solid #e93838;
    color: #e5e3e3;
    border-radius: .25em;
}
.sign-up-inline-block {
    font-weight: bold;
    background: #f14949;
    border: 1px solid #e93838;
    color: #e5e3e3;
    border-radius: .25em;
    padding: .25em;
}
.signUpBlock:hover, .signUpBlock:focus, #userInfo .signUpBlock:hover, #userInfo .signUpBlock:focus, .sign-up-inline-block:hover, .sign-up-inline-block:focus {
    border-color: #d43434;
    background-color: #e95a5a;
    color: #ffffff;
    cursor:pointer;
}
.elonBlock {
    padding-bottom: 1em;
}
.elonBlock img {
    max-width: 150px;
}

#elon-lineage .elon-lineage-element {
    max-width: 150px;
    max-height: 150px;
    border: 1px solid #d6d6d6;
    border-radius: .25em;
}
#elon-lineage a {
    height: 1em;
    line-height: 1em;
    max-height: 1em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#elon-lineage .smallest-lineage img {
    max-width: 100px !important;
    max-height: 100px !important;
}
#elon-lineage .smallest-lineage {
    padding: 0;
    margin: 0;
}
.home_block{
    text-align: center;
}
.home_block img{
    vertical-align: bottom;
    max-width: 198px;
}
.kickstarter-banner img {
    border-radius: .25em;
    border: 1px solid #fff;
}
.kickstarter-banner img:hover {
    border: 1px solid #000;
}
#nav .tutorial-help {
    font-size: 1rem;
    font-weight: bold;
    color: #ff5e5e;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: center;
    background: #f2ffd1;
    border: 1px solid #dcecb1;
    border-radius: .25em;
}
#nav .tutorial-help:hover {
    cursor: pointer;
    color: #ff6a4f;
}
#mobile-nav .tutorial-help {
    font-weight: bold;
    padding-left: 10px;
    color: #ff5e5e;
}
#mobile-nav .tutorial-help:hover {
    color: #ff5e5e;
}
#bottomAd{
    margin: 1em 0;
    /*border: 1px solid #9EBDBD;*/
}

#bottomAd:hover{
    /*border: 1px solid #898989;*/
}


.color-box {
    background: #d0f6ff;
    border: 2px solid #a0e8ff;
    border-radius: 5px;
    padding: 2em;
    margin-bottom: 1em;
}


.header-block h2 {
    font-size: 1.375rem;
}
@media only screen and (min-width: 40.063em) {
    .header-block h2 {
        font-size: 1.6875rem;
    }
}
.header-block h3, .header-block h2 {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 1rem;
}
.header-block p {
    display: inline-block;
    font-size: .8rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #565656;
}
.topTrace{
    margin: .75em 0;
    color: #C3C3C3;
    /* From Breadcrumbs */
    font-size: .85rem;
    display: block;
    padding: 0.7rem 1rem 0.6rem;
    overflow: hidden;
    margin-left: 0;
    list-style: none;
    border-style: solid;
    border-width: 1px;
    background-color: #f6f6f6;
    border-color: gainsboro;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-transform: uppercase;
    padding-top: 0.3rem;
}
.nestTrace{
    color: #C3C3C3;
    font-size: 0.9075rem;
    display: block;
    margin-left: 0;
    clear: both;
}
.nest-droppable-item {
    padding: .5em 1.75em;
    margin: 3px 5px;
    float: left;
    border: 1px solid #e4e4e4;
    background: #f6f6f6;
    border-radius: 5px;
}
.nest-droppable-item:hover, .nest-droppable-item.ui-droppable-hover{
    background: #cad6da;
}
.nest-trace-nested {
    margin-left: 2.5em;
}
.nest-section-group.nest-active {
    display: block;
}
.nest-section-group.nest-inactive {
    display: none;
}
.empty-background {
    background: none !important;
    border-color: transparent !important;
}
.topTrace a {
    padding-right: .5em;
    padding-left: .5em;
    margin-top: .5em;
    display: inline-block;
}
.topTrace a.active, .nestTrace a.active, .nestTrace div.active {
    color: #9A9A9A;
}
.topTrace a, .nestTrace a, .nestTrace div {
    color: #64BA7D;
    color: #239463;
}
.topTrace a:hover, .topTrace a:focus, .nestTrace a:hover, .nestTrace a:focus,
    .nestTrace div:hover, .nestTrace div:focus, .nest-droppable-item.ui-droppable-hover a{
    color: #4598c1;
    cursor: pointer;
}

a{
    color: #52CDCD;
    color: #41ABAB;
}
a:hover, a:focus{
    text-decoration: none;
    color: #83B011;
}
.alternateLinkColor, .alternateLinkColor a{
    color: #444;
}
.alternateLinkColor:hover, .alternateLinkColor a:hover, .alternateLinkColor:focus, .alternateLinkColor a:focus{
    text-decoration: none;
    color: #777;
}
.noLinkColor a, .noLinkColor{
    color: #222222;
}

#imageHeader img{
    max-height: 99%;
    max-height: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-left: 2px solid;
    border-right: 2px solid;
    border-color: #518753;
}

.userMainInfo{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: .5em;
    margin-right: .5em;
	-moz-border-top-left-radius: 15px;
	border-top-left-radius: 15px;
	-moz-border-top-right-radius: 15px;
	border-top-right-radius: 15px;
    max-width: 195px;
    min-width: 150px;
    color: #F9F9F9;
    /* background: rgba(104, 144, 76, 0.75); */
    /* border: 2px solid #7EA861; */
    /* border-bottom: 3px solid #7EA861; */
    background-color: rgb(115, 130, 128);
    background-color: rgba(115, 130, 128, 0.85);
    border: 2px solid #7f9398;
    border-bottom: 3px solid #239463;
}
#userInfo #userIconList a {
    vertical-align: middle;
}
#userInfo a, #userInfo span, #userInfo p, #userInfo div{
    font-size: .8rem;
    color: #DFDFDF;
}
#userInfo .signUpBlock {
    height: 30px;
    line-height: 1em;
    margin-bottom: .75em;
}
#userInfo .login-block {
    text-align: center;
    margin-bottom: .75em;
    font-size: 12px;
}
#userInfo img {
    width: 16px;
}
#userIconList li {
    float: left;
    padding-right: .5em;
}
#userInfo a{
    color: #DFDFDF;
}
#user-info-mail-icon {
    width: 20px !important;
}

#userInfo a:hover {
    color: #61D8FF;
}
#userInfo .login-block a {
    color: #B8DB5B;
}
#userInfo .login-block a:hover {
    color: #61D8FF;
}
#userInfo .side-link {
    font-size: 16px;
}
#userInfo #user-info-battle-notice {
    position: absolute;
    bottom: 0px;
    font-weight: bold;
}
#userInfo #user-info-battle-icon {
    width: 10px;
}
.userMainInfo #userIconList li{
    min-width: 70px;
}

#user-info-avatar {
    position: absolute;
    bottom: -80px;
    right: -100px;
    width: 150px;
    z-index: 49;
}
#user-info-active-elon {
    width: 100px;
    position: absolute;
    bottom: -10px;
    right: 195px;
    z-index: 49;
}
#elon-activity-book img {
    width: 25px !important;
}
@media (max-width: 1025px) {
    #user-info-active-elon {
        right: 30px;
    }
    #userIconList li {
        padding-right: 1em;
    }
    #elon-activity-book {
        padding-right: 10px;
    }
    #userInfo #user-info-battle-notice {
        bottom: 5px;
    }
}
@media (min-width: 1026px) {
    #user-info-mail-icon {
        margin-top: -5px;
    }
    #elon-activity-book {
        position: absolute;
        bottom: 38px;
        right: 4px;
    }
}

/* Bar across on mobile option */
.userSideInfo{
    position: relative;
    width: 100%;
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em;
    padding: .5em;
    background-color: rgb(115, 130, 128);
    background-color: rgba(115, 130, 128, 0.95);
    border: 2px solid #7f9398;
    border-top: none;
 }
.userSideInfo li{
    float: left;
}
#userOnlineCount{
    float: right;
    padding-top: .5em;
}
#userInfo ul{
    margin-bottom: 0;
}


.userEdits, .editText {
    color: #2DA398;
    font-size: 1rem;
}
.userEdits:hover, .userEdits:focus, .editText:hover, .editText:focus {
    color: #4C7ADD;
    cursor: pointer;
}

.battleNote a{
    color: #A91D1D;
}

.battleNote a:hover{
    color: #ff0000;
}
.battle-rank {
    line-height: 2rem;
}
.battle-rank .level-cap {
    font-size: 1.2em;
}
.battle-rank .entrance-fee {
    font-size: .8rem;
    line-height: 1.25rem;
}
.btn-link:hover {
    background-color: transparent;
}
button.btn-empty {
    background: none;
    border: none;
    display: inline;
    width: auto;
}
button.btn-empty, .btn.btn-empty  {
    color: #3c826e;
}
button.btn-empty-danger {
    color: #bf4141;
}
button.btn-empty-disabled, .btn.btn-empty-disabled {
    color: #5d5d5d;
}
button.btn-empty:hover, button.btn-empty:focus, .btn.btn-empty:hover, .btn.btn-empty:focus {
    background: none;
    border: none;
    color: #44af9b;
}
button.btn-empty-danger:hover, button.btn-empty-danger:focus, .btn.btn-empty-danger:hover, .btn.btn-empty-danger:focus {
    color: #f35a5a;
}
button.btn-empty-disabled:hover, button.btn-empty-disabled:focus, .btn.btn-empty-disabled:hover, .btn.btn-empty-disabled:focus {
    color: #8e8e8e;
}
button.plusLink, button.minusLink {
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
    display: inline;
    padding: 0;
    margin: 0;
    width: 75px;
}
button.minusLink {
    width: 85px;
}
button.plusLink {
    color: #2C6D2E;
}
button.plusLink:hover, button.plusLink:focus{
    color: #00D006;
    background-color: transparent;
}
button.minusLink {
    color: #820202;
}
button.minusLink:hover, button.minusLink:focus {
    color: #ff0000;
    background-color: transparent;
}
.chat-link {
    display: inline-block;
    padding: 1em;
    background: none;
    border: none;
    color: #12b2c1;
}
.chat-link:hover, .chat-link:focus {
    padding: 1em;
    background: none;
    border: none;
    color: #12d5e4;
}
.plusIcon{
    color: #2C6D2E;
}
.plusIcon:hover, .plusIcon:focus{
    color: #00D006;
    cursor: pointer;
}
.minusIcon{
    color: #820202;
}
.minusIcon:hover, .minusIcon:focus{
    color: #ff0000;
    cursor: pointer;
}
button.minusIcon.disable {
    color: #b38080;
    background-color: #efefef;
}
button.plusIcon.disable {
    color: #85b586;
    background-color: #efefef;
}
.plusIcon, .minusIcon{
    padding: 0 .15em;
    border-radius: .5em;
    background-color: #ffffff;
}
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}
.deleteNotification:hover{
    color: #e85151;
    cursor: pointer;
}
.element_number {
    padding-right: .5em;
}
input.smallInput {
    width: 60px;
    margin: 0;
    height: 30px;
    font-size: 1rem;
    text-align: center;
}
#footer{
    padding-bottom: 2.7em;
    font-size: .75rem;
    color: #616769;
    line-height: 1.5em;
}
#footerConnect{
    margin-bottom: 1em;
}
.main-section{
    height: 100%;
}

button, .button, #nav{
    background-color: rgb(133, 182, 150);
    background-color: #568277;
    background-color: rgba(226, 245, 177, 1);
    border: 2px solid rgba(110, 163, 125, 0.25);
    border: 2px solid rgba(198, 206, 178, 0.23);
}
/**
 *   Navigation Menu
**/
#nav{
    border-top: none;
    border-bottom-left-radius: .25em;
    border-bottom-right-radius: .25em;
    padding: .6em;
    min-width: 8rem;
    min-width: 150px;
    padding: 0 1.5em;
}
.mainNav{
    padding: 0 0 0.875rem 0;
}
.mainNav li:first-child {
    margin-bottom: -.5em;
    font-size: .9rem;
}
.mainNav li{
	margin: 0;
	line-height: 1.2em;
}
.mainNav li a{
	line-height: 1.25em;
}
.navTitle{
    font-family: "Open Sans", "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
    color: #068B2C;
    color: #395238;
    color: #1A5C29;
    color: #239463;
    /*padding-left: .75em;
    text-align: center;
    font-weight: bold;*/
    padding-top: .5em;
    padding-bottom: .25em;
    font-size: 1.25rem !important;
}
.mainNav .navTitle a{
    color: #0d3349;
    color: #0e120f;
    color: #2e5d63;
}
.mainNav .subTitle a, .button, button, button a, .button a{
    color: #34c578;
    color: #327f54;
}
.mainNav .navTitle a:hover, .mainNav .navTitle a:focus, .mainNav .subTitle a:hover, .mainNav .subTitle a:focus{
    color: #4598c1;
}

.off-canvas-list .navTitle {
    padding-left: .5em;
}
.left-collapse {
    padding-left: 0 !important;
}
.right-collapse {
    padding-right: 0 !important;
}
.full-collapse {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
/** - End Navigation - **/
button, .button {
    padding: .25em;
    margin: .1em;
    width: 100%;
    max-width: 250px;
    border-radius: .25em;
    background-color: #b4e8e1;
    color: #444;
}
button:hover, .button:hover, button:focus, .button:focus {
    background-color: #eefbcb;
    background-color: #c2f6ef;
}
.button-slim {
    padding: 5px;
}
.button.cancel, button.cancel {
    background-color: #bbbbbb;
    border-color: rgba(169, 169, 169, 0.67);
}
a.delete {
    color: #9c7373;
}
.button.delete, button.delete {
    background-color: rgb(232, 149, 149);
    border-color: rgba(195, 136, 136, 0.67);
}
.button.preview, button.preview {
    background-color: #8dc8da;
    border-color: rgb(152, 194, 214);
}
.button.cancel:hover, button.cancel:hover, .button.cancel:focus, button.cancel:focus{
    background-color: #d1d1d1;
}
.button.preview:hover, button.preview:hover, .button.preview:focus, button.preview:focus {
    background-color: #a8daea;
}
.button.delete:hover, button.delete:hover, .button.delete:focus, button.delete:focus {
    background-color: rgb(255, 164, 162);
}
a.delete:hover, a.delete:focus {
    color: #a53e3e;
}
.inactive {
    background: #f3e6e6 !important;
}
.part_inactive {
    color: #494949;
}
button.disabled, button.disabled:hover, button.disabled:focus, button[disabled], button[disabled]:hover,
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover{
    background-color: rgb(189, 224, 219);
    border: 2px solid rgb(185, 214, 210);
    color: rgb(81, 91, 97);
}
button:hover, .button:hover, button:focus, .button:focus, button a:hover, .button a:hover, button a:focus, .button a:focus{
    color: #5dbd87;
    color: #777;
}
.full-width-button {
    max-width: 100%;
}
ul.pagination {
    display: flex;
    justify-content: center;
}
ul.pagination li a {
    color: #239463;
}
ul.pagination li.current a {
    background: none;
    color: #9a9a9a;
}
ul.pagination li:hover a, ul.pagination li a:focus {
    background: none;
    color: #4598c1;
}

ul.pagination li.current a:hover, ul.pagination li.current a:focus {
    background:none;
    color: #9a9a9a;
}
ul.pagination li.unavailable span {
    display: block;
    padding: 0.0625rem 0.625rem 0.0625rem;
    cursor: default;
    color: #999999;
}

form.inline-form {
    display: inline;
}
.form-float-left {
    float: left;
    margin-right: 10px;
}
.formButton{
    padding: .5rem;
    -moz-border-radius: .35rem;
    border-radius: .35rem;
}
.form-button{
    display: inline;
}



.hidden { display: none; }

/* Overwritten foundation */
.greater-max{
	max-width: 72.5em;
}

.post{
	border-top: 1px solid #D8DBD2;
	padding-top: 1.5em;
	padding-bottom: 1em;
    word-wrap:break-word;
}
.postUser span{
	float: left;
    clear: left;
}
.username{
	font-size: .95rem;
}

.postUserText{
	font-size: .85rem;
}
.postUser{

}
.postContent{
	padding-bottom: 1em;
}

.postEnd{
	border-top: 1px dotted #44613D;
	color: #999;
	font-size: 12px;
	font-size: .75rem;
}

.signature{
    font-size: .75rem;
    color: rgb(0, 0, 0);
    padding-top: .35em;
    padding-bottom: .35em;
    margin-top: .35em;
    margin-bottom: .35em;
}

.previewThread{
	border: 1px solid #000;
	margin-top: 1em;
	margin-bottom: 2em;
	padding: 1.75em;
	padding-top: 1em;
	padding-bottom: 1em;
}

dl dt{
	float: left;
	padding-right: .25em;
}

dl.dl-centered dt {
    float: none;
    padding-right: 0;
    text-align: center;
}
dl.dl-centered dd {
    text-align: center;
}
.progressText{
	position: absolute;
	bottom: 0;
}

progress{
    width: 100%;
}

.block-list li {
    padding: .5em;
    padding-bottom: .25em;
    padding-top: .25em;
    border-bottom: 1px solid #BDBDBD;
}
.block-list li:nth-child(odd) {
    background: #EFF3EF;
}

.block-list span {
    display: inline-block;
    min-width: 100px;
    max-width: 300px;
}
.block-list span:not(:first-child){
    margin-left: .25em;
}
.block-list span:first-child {
    font-weight: bold;
    color: #4E4E4E;
}
.block-list li > div {
    display: inline-block;
    padding-right: 20px;
    max-width: 200px;
}
.block-list-limit-cell {
    max-width: 120px;
}
.block-list .action-block {
    padding-right: 0;
    padding-left: 1em;
}
.block-list img {
    max-height: 150px;
}
.nobullet{
	list-style-type: none;
}
.noWhiteSpace{
    margin: .55rem 0px .48rem;
}
#needsBlock{
    /*text-align: center;*/
}
#needsBlock div {
    margin-bottom: .15em;
}
#needsBlock > div {
    margin-bottom: .55em;
}
.needsDescription{
    padding-left: 1em;
}
.realign{
    padding-left: 0.9375em;
}

/* Pet Profile Pages */
#petImage{
    position: relative;
    height: 500px;
    max-width: 625px;
    line-height: 500px;
    text-align: center;
    border-radius: .25em;
}

#petImage img{
    vertical-align: bottom;
    padding-bottom: 1em;
}

#elon-profile-image.pose-sleep.breed-nyrin, #elon-profile-image.pose-sleep.breed-preat {
    padding-bottom: 0;
    margin-bottom: -3.5em;
}

#elon-profile-image.pose-babysleep.breed-nyrin, #elon-profile-image.pose-content.breed-nyrin, #elon-profile-image.pose-sad.breed-nyrin, #elon-profile-image.pose-sad.breed-preat {
    padding-bottom: 0;
    margin-bottom: -2em;
}

#elon-profile-image.pose-fight.breed-nyrin, #elon-profile-image.pose-fight.breed-preat, #elon-profile-image.pose-happy.breed-nyrin {
    padding-bottom: 0;
    margin-bottom: -1em;
}
#elon-profile-image.pose-defend.breed-zorvic, #elon-profile-image.pose-defend.breed-preat, #elon-profile-image.pose-defend.breed-nyrin {
    padding-bottom: 0;
}

#prismIcon img{
    position: absolute;
    bottom: -10px;
    left: -10px;
    padding: 0;
    max-width: 100px;
}
.favorite-toy {
    position: absolute;
    bottom: -10px;
    right: 5px;
    padding: 0;
    max-width: 100px;
}
.bond-image-icon {
    position: absolute;
    left: -15px;
    padding: 0;
    max-width: 100px;
    vertical-align: top;
    bottom: 30px;
}

.modal-header {
    font-weight: bold;
    max-width: 600px;
    margin: auto;
    margin-bottom: 1em;
    color: #00907d;
}
.modal-secondary {
    font-size: 1.25rem;
}

/**  --  User Profile Sidebar and Pet Profile Sidebar  --  **/
.mbs{
    padding: 1em 0 1em 0;
    text-align: center;
}
.infoBox ul {
    margin-left: 0;
}
#petInfo, #rightBox, #newsBlock{
    border: 2px solid rgba(198, 206, 178, 0.23);
    background-color: rgba(239, 239, 239, 0.72);
    -moz-border-radius: .25em;
    border-radius: .25em;
}
#petInfo, #rightBox{
    padding: 1.25rem;
    max-width: 300px;

}
#rightBox .profileProgressBar{
    padding: 0 2em;
}
#petInfo dl, #petInfo dt, #petInfo dd, #petInfo p{
	font-size: .85rem;
	line-height: .95rem;
	margin-bottom: .25rem;
}
#petInfo small{
	font-size: .65rem;
}
div#pet-info-section1 > div {
    padding-bottom: 2px;
}

/** -- Elon Profile View Data -- **/
.elon-attached-item {
    width: 29%;
    margin: auto;
    display: inline-block;
}
.relationBlock h6{
    padding-top: .25em;
    float: left;
    text-align: right;
    padding-left: 2em;
}
.relationshipIcon{
    width: 15px;
    height: 45px;
    font-size: .85em;
    line-height: 2em;
    margin: .5em;
    border: 1px solid #C5C3B6;
    border-radius: .2em;
    background-color: #59C581;
    float: left;
}
.relationNegative{
    background-color: #D2CFCD;
    padding: 0;
    margin: 0;
    width: 100%;
    border-bottom: 2px solid #6FE099;
    height: 25%;

}
.relationBorder {
    border: 1px solid #E6E5E0;
    height: 100%;
    position: relative;
}

.responseBox {
    padding: .5em;
    border: 1px solid #ccd2be;
    background: #f0fdcf;
    background: #e4e8d7;
    margin: 1em .25em;
    border-radius: .25em;
    text-align: center;
}
.responseBox p {
    padding: 0;
    margin: 0;
}
.response-increase {
    font-weight: bold;
    font-size: .85rem;
    color: #3e8c5a;
}

.color-block{
    width: 35px;
    height: 15px;
    display: inline-block;
}

.content{
    width: 100%;
}

.attack-details {
    font-size: .9rem;
}
.attack-details span.attack-info {
    margin-left: 5px;
    font-weight: bold;
}
.attackCost2{
    padding-left: 4rem;
}
.attackPower2, .attackCost2{
    font-size: .9rem;
}

.groupedList li{
    padding: 1em 0;
}
.list-group-item.clickable:hover {
    background-color: #EEEEEE;
}

.leftIcon{
    position: absolute;
    top: 25px;
    right: 20px;
    font-size: .75rem;
}
.part_active{
    font-weight: bold;
}
.elonGeneticsList li{
    margin-bottom: .5em;
}

#commerce section {
    margin-bottom: 2em;
}
#elon-use-item-button {
    margin-bottom: 2em;
}

@media all  and (min-width: 1075px){
    #elon-feed-button {
        margin-right: 1em;
    }
    #elon-play-button {
        margin-left: 1em;
        margin-bottom: .5em;
    }

}
@media all  and (max-width: 1074px){
    #elon-feed-button {
        margin-bottom: 2em;
    }
    #elon-play-button {
        margin-bottom: .5em;
    }
}

.margin-top-5 {
    margin-top: .5em !important;
}
.margin-top-15 {
    margin-top: 1.5em !important;
}
@media all and (min-width: 641px){
    .margin-top-medium-15 {
        margin-top: 1.5em;
    }
    .margin-top-medium-35 {
        margin-top: 3.5em;
    }
}
@media all and (max-width: 640px) {
    .clearfix-small {
        clear: both;
    }
}
@media all and (max-width: 1024px) {
    .clearfix-medium {
        clear: both;
    }
}
/* End Pet Profile */

/* Nest and Group */
.elonWrap{
	min-height: 310px;
    max-width: 170px
}
.elonInfo {
    font-size: 0.85rem;
}
.elonBlock label {
    margin: 10px;
    display: inline;
}
.elonRelativeWrap{
    width: 155px;
    height: 155px;
    margin: auto;
}
.elonRelativeWrap img {
    max-width: 150px;
    max-height: 150px;
    margin-bottom: 5px;
}
.breedImage img{
    max-width: 250px;
    max-height: 250px;
}
.relativeImageWrap{
    position: relative;
    /* Needs width/height explicitly set */
}

.relativeImageWrap > div{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.secondElement img {
    margin-left: -.5em;
}
.favPet{
    height: 225px;
}
.elon-thumbnail-image-wrap {
    position: relative;
    min-height: 150px;
}
.elon-thumbnail-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    max-width: 150px;
    max-height: 150px;
}

.individual-item-box {
    padding: 2em 3em 3em 3em;
    text-align: center;
}

.itemWrap, .elonWrap, .elonWrapSmall, .favPet, .itemGallery, .basicItemWrap, .itemWrapLink{
    text-align: center;
    padding: .5em;
    border: 1px solid rgba(255, 255, 255, 0);
}

.itemWrap:hover, .elonWrap:hover, .elonWrapSmall:hover, .favPet:hover, .itemGallery:hover{
    border: 1px solid rgb(206, 206, 206);
    background: #EEEEEE;
    border-radius: .15em;
}
.itemWrap:hover, .elonWrapSmall:hover, .favPet:hover, .elon-draggable-handle:hover, .draggable-handle:hover{
    cursor:pointer;
}

.itemImageCell{
    max-width: 100px
}
.itemModelLeft{
    margin-right: 2em;
    margin-bottom: 1em;
}
.smallMenu{
    margin: 0;
}

.itemWrap .itemImg img, .itemGallery .itemImg img, .itemWrapLink .itemImg img{
    min-width: 75px;
    width: 75px;
    height: 75px;
}
.item-gallery-image {
    cursor: pointer;
}
.elonList, .userList, .attackList {
    color: #519446;
    padding: .5em;
    text-align: center;
    border: 1px dotted #DADADA;
}
.elonList:hover, .elonList:focus, .userList:hover, .userList:focus, .attackList:hover, .attackList:focus {
    background: #ECECEC;
    cursor: pointer;
    color: #11AAB3;
}
#giveAwayForm {
    text-align: center;
    margin-bottom: 1.5em;
}
.petThumbnail img, .favPet img {
    max-width: 150px;
    max-height: 150px;
}

div#editBlock {
    max-width: 250px;
    margin: auto;
}

@media (max-width: 1025px) {
    div#editBlock button {
        margin-bottom: 10px;
    }
    #nestInfoBlock {
        text-align: center;
    }
}

#nestBlock{
    margin: 0 0 1.25rem;
    overflow: hidden;
}

#nestBlock button {
    line-height: .75rem;
    width: inherit;
}
.nestList input, .nestList select {
    max-width: 150px;
    display: inline;
}
.nestList {
   /* list-style: none;*/
}
ul#appendix-element-list li {
    padding-bottom: 1.5em;
}
.appendix-attack-block {
    padding: .5em 1em;
    margin: 1em 0.5em;
    border: 1px solid #b8c3c5a1;
    border-radius: .25em;
}
.appendix-attack-block p {
    margin-bottom: .25em;
}
/* End Nest and Group */

.blockSet{
    margin-top: 1em;
}

.blockSet button {
    padding: .25em;
    margin: .1em;
    width: 100%;
    max-width: 250px;
}

#userDescription{
    max-width: 550px;
    min-height: 120px;
    max-height: 500px;
	overflow:auto;
	font-size:1em;
	left:0px;
	top:0px;
	margin-bottom:1em;
}

.selectableHeader {
    color: #239463;
}
.selectableHeader:hover, .selectableHeader:focus {
    color: #4598c1;
    cursor: pointer;
}
#mainContent form {
    margin-top: .5em;
    margin-bottom: 1.5em;
}
#mainContent form.no-extra-margin {
    margin: 0;
}
.accountGroup {
    margin-top: 1.5em;
}

.profileItems{
    text-align: center;
}
/** Admin **/
#admin-main-section label {
    line-height: 1.6;
}

/* Registration */
#email-for-login-label, #password-for-pin-label {
    text-align: right;
    margin-top: -10px;
    font-size: .8rem;
    margin-bottom: -10px;
}
#registration-form .form-error {
    margin-bottom: 1em;
    margin-top: -.75em;
}
#registration-form .password-input-block {
    position: relative;
}
.password-visibility-icon {
    font-size: .75rem;
    position: absolute;
    top: 13px;
    z-index: 999;
    color: #3984d0;
    right: 30px;
    font-weight: bold;
}
.password-visibility-icon:hover {
    cursor: pointer;
}
.info{
	position: absolute;
	margin-top: -2rem;
}

label.inline{
	margin: 0 0 2.05rem 0;
}
label-top-heavy {
    margin-bottom: 0;
    margin-top: 1em;
}
input.registerForm{
	margin: 0 0 2rem 0;
}
#registration-form .has-tip {
    margin-left: .5em;
}
form .right{
	clear: both;
}
/* Password is special case for registration form */
label.collapseField, input.collapseField {
margin: 0;
}

/* Form Comment */
input.formComment, .formComment{
	display: none;
}


.referral-block {
    text-align: center;
}
.referral-block img {
    margin-bottom: 10px;
}

#clayton-breeder-options-list li{
    margin-bottom: 1em;
}

@media only screen and (max-width: 735px) {
    #js_confirm_ajax a {
        margin-top: 1em;
        margin-bottom: 1em;
    }
}


/**** Battle Menu ****/
div.fight-attack-block {
    position: relative;
    display: inline;
}
span.fight-attack-info {
    display: inline-block;
    font-size: 30px;
    color: #3c93a9;
    padding-left: 2px;
    position: absolute;
    top: -4px;
    right: -25px;
}
span.attackPower, span.attackCost{
	font-size: .55em;
	position: absolute;
	bottom:	.25em;
}
span.attackPower{
	left: .5em;
}
span.attackCost{
	right: .5em;
}

#inBattleModal, #genericModal {
    z-index: 999;
}
#elonSwapPrompt, #elonUseItemPrompt{
    z-index: 50;
}

#battleMessages{
    width: 99%;
    max-width: 640px;
    line-height: 1.25em;
    font-size: 1em;
    margin-bottom: 2px;
    margin-left: 2px;
    border-radius: .5em;
    padding: .5em;
    color: #2E2E30;
    position: absolute;
    bottom: 0;
    bottom: 6px;
    z-index: 20;

    border: 1px solid #DEF5DC;
    border-right: 1px solid #838683;
    border-bottom: 1px solid #8A998E;
    background: rgba(215, 212, 212, 0.62);
    background: rgba(157, 184, 198, 0.77);
    background: rgba(215, 212, 212, 0.75);
    border: 1px solid #647e8682;
    border: 1px solid #DCEEF5;
    border-right-color: #747484;
    border-bottom-color: #727884;
    border-bottom-color: #545a66;
    text-align: center;
}
.battle-dialog {
    background: #e9e9e9;
    border-radius: 5px;
    padding: 1em;
}
#battleMessages div{
	display: block;
    overflow: auto;
    height: 22px;
}
.battle-color-span, .battle-experience-points, .battle-text-fainted {
    text-shadow: black 0px 0px 1px;
    text-shadow: #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px, #000 0px 0px 1px;
}
.battle-color-span, .battle-experience-points, .battle-text-fainted {
    font-weight: bold;
}
.gender-icon-label {
    width: 12px;
    margin-left: -2px;
    margin-bottom: 4px;
}
.element-icon-label {
    width: 18px;
    margin-right: -3px;
    margin-bottom: 2px;
    margin-top: -2px;
}

.aberrant-text-label {
    color: white;
     text-shadow: #432fe8 0px 0px 2px, #432fe8 0px 0px 2px, #432fe8 0px 0px 2px, #432fe8 0px 0px 2px, #432fe8 0px 0px 2px, #432fe8 0px 0px 2px;
}
.aberrant-name-label {
    color: white;
    text-shadow: #432fe8 0px 0px 2px, #432fe8 0px 0px 2px, #432fe8 0px 0px 1px, #432fe8 0px 0px 1px, #432fe8 0px 0px 1px, #432fe8 0px 0px 1px;
}

/** Battel Effect for Battle Messages **/
.battle-prism-greater {
    color: #f1f0ef;
}
.battle-prism-basic {
    color: #e7da99;
}
.battle-name-display {
    font-weight: bold;
}
.battle-experience-points {
    color: #e2bb53;
}
.battle-text-fainted {
    color: #efefef;
}
.battle-effect-extreme { /* 2.5 */
    color: #00e21b;
}
.battle-effect-super, .battle-boost-up { /* 2 */
    color: #6ce251;
}
.battle-effect-fairly { /* 1.5 */
    color: #95ff5a;
}
.battle-effect-slight { /* 1.25 */
    color: #baff82;
}
.battle-effect-less { /* .75 */
    color: #fffdba;
    color: #e0ff86;
}
.battle-effect-not { /* .5 */
    color: #ffb25c;
}
.battle-effect-hardly { /* .25 or <*/
    color: #ff8836;
}
.battle-effect-none { /* 0 */
    color: #817e7b;
}
.battle-boost-down {
    color: #d52c0f;
}
/** Battle Attack Text for Battle Messages **/
.battle-attack-text-Wind {
    color: #F2D9FD;
}
.battle-attack-text-Natural {
    color: #EFEAE8;
}
.battle-attack-text-Ice {
    color: #c4f0ff;
}
.battle-attack-text-Electric {
    color: #f3ea34;
}
.battle-attack-text-Plant {
    color: #4ecb82;
    color: #42ef8a;
}
.battle-attack-text-Fire {
    color: #ff512c;
}
.battle-attack-text-Water {
    color: #40b7ff;
}
.battle-attack-text-Stone {
    color: #7a5c46;
}
/** Battle Status Text for Battle Messages **/
.battle-status-text-paralysis {
    color: #e2b02a;
}
#battleMessage .battle-status-text-sleep {
    text-shadow: white 0px 0px 1px;
}
.battle-status-text-sleep {
    color: #817e7b;
}
.battle-status-text-poison {
    color: #8736ff;
}
.battle-status-text-burn {
    color: #650303;
}
.battle-status-text-frozen {
    color: #8fb9ce;
}
.battle-status-text-soaked {
    color: #73d6f9;
}
.battle-status-text-dizzy {
    color: #e0bbf3;
}
.battle-status-text-muddy {
    color: #966235;
}
.battle-status-text-seeded {
    color: #7cb37e;
    color: #0c2f17;
}
/** Battel Stats texts for Battle messages **/
.battle-stat-text-health {
    color: #6dbe4c;
}
.battle-stat-text-stamina {
    color: #29D1E7;
}
.battle-stat-text-speed {
    color: #1740df;
}
.battle-stat-text-attack {
    color: #f92c24;
}
.battle-stat-text-defense {
    color: #f1f200;
}
.battle-stat-text-evasion {
    color: #d46c6e;
    color: #ff7f4d;
}
.battle-stat-text-accuracy {
    color: #dc9b4d;
}
.battle-stat-text-critical_hit {
    color: #abd403;
}

.battleIcon img{
    border: 1px solid rgba(83, 122, 122, 0.66);
    border-radius: .25em;
}
.battle-status-icon {
    padding: 2px;
    background-color: #545454;
    border: 1px solid;
    font-weight: bold;
}
.battle-status-sleep {

}
.battle-status-paralysis {
    background: #e2b02a;
    color: #794a00;
}
.battle-status-poison {
    background: #19a908;
    color: #8736ff;
}
.battle-status-burn {
    background: #e09d9d;
    color: #650303;
}
.battle-status-frozen {
    background: #8fb9ce;
    color: #0c1c2f;
}
.battle-status-soaked {
    background: #74e0f9;
    color: #162f3e;
}
.battle-status-dizzy {
    background: #e0bbf3;
    color: #200c2f;
}
.battle-status-muddy {
    background: #a28a5c;
    color: #2f1c0c;
}
.battle-status-seeded {
    background: #7cb37e;
    color: #0c2f17;
}
.leaderboard-links div {
    padding-top: 1em;
    font-weight: bold;
}
tr.leaderboard_row td img{
    max-width: 50px;
}
tr.leaderboard_rank1 .rank_number {
    font-size: 1.5em;
}
tr.leaderboard_rank1 {
    background-color: rgba(255, 201, 78, 0.36);
}
tr.leaderboard_rank2 .rank_number {
    font-size: 1.4em;
}
tr.leaderboard_rank2:nth-of-type(even) {
    background-color: #cbf7928c;
    background-color: rgba(255, 214, 99, 0.24);
}
tr.leaderboard_rank2 {
    background-color: #cbf7928c;
    background-color: rgba(255, 214, 99, 0.24);
}
tr.leaderboard_rank3 .rank_number {
    font-size: 1.3em;
}
tr.leaderboard_rank3:nth-of-type(even) {
    background-color: #ffb3718c;
    background-color: rgba(255, 218, 113, 0.25);
    background-color: rgba(255, 218, 113, 0.14);
}
tr.leaderboard_rank3 {
    background-color: #ffb3718c;
    background-color: rgba(255, 218, 113, 0.25);
    background-color: rgba(255, 218, 113, 0.14);
}
.leaderboard-reward-title {
    margin-bottom: 0;
}
.fightGroup {
    max-width: 180px;
    margin: .25em;
    display: inline-block;
}

.wildFightGroup {
    margin-top: 1em;
    /*position: absolute;
    right: 50%;*/
}

#enemyFightBlock {
    /* min-height: 230px; */
    position: absolute;
    top: 0;
    width: 100%;
    height: 35%;
}
#enemyFightBlock .battle-status-icon {
    margin-left: 2px;
}
#enemyFightBlock .statBlock {
    left: 5px;
    top: 5px;
}
#enemyFightBlock .stat-block-name {
    margin-top: 2px;
    margin-bottom: 1px;
    margin-left: 1px;
}

.opposite-elon-group {
    position: absolute;
    left: 250px;
    top: 0;
    width: 75%;
}
.battle-middle .opposite-elon-group {
    top: 50px;
    right: -25px;
}
.battle-middle-squished .opposite-elon-group {
    top: 35px;
}
.battle-lower .opposite-elon-group {
    top: 75px;
}

#userFightBlock {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 35%;
}
.user_elon_name {
    margin-top: 2px;
}
.user-elon-group {
    position: absolute;
    bottom: 0;
    left: 25px;
    bottom: 75px;
    left: 50px;
/*    width: 75%;*/
}

.user-fight-Zorvic {
    max-width: 150px;
}

.battle-middle .user-elon-group {
    bottom: 85px;
}
.battle-middle-squished .user-elon-group {
    bottom: 125px;
    left: 0;
}

#userStatsBlock {
    position: absolute;
    right: 5px;
    bottom: 102px;
    bottom: 55px;
    width: 150px;
    max-width: 40%;
}
.stat-block-group {
    width: 25%;
    min-width: 125px;
}
.statBlock {
    position: relative;
    z-index: 20;
    font-size: 70%;
    border-radius: .5em;
    padding: .2em .2em 0 .2em;
    background: rgba(157, 184, 198, 0.77);
    background: rgba(215, 212, 212, 0.62);
    border: 1px solid #647e8682;
    border: 1px solid #DCEEF5;
    border-right-color: #747484;
    border-bottom-color: #727884;
    border-bottom-color: #545a66;
    text-align: center;
}


#fightMenu{
    max-width: 665px;
    text-align: center;
    margin: auto;
}

#fightMenu button {
    margin-bottom: .25em;

}
#fightMenu .fight-attack-full {
    display: inline;
    max-width: 45%;
}
.attack-detail-btn {
    display: inline-block;
    font-weight: 400;
    font-size: 22px;
    padding-left: 5px;
    padding-right: 15px;
}
#battleModalExit .button {
    margin-bottom: 1em;
}
.attack-header-Wind, .attack-header-Natural, .attack-header-Ice, .attack-header-Electric, .attack-header-Fire, .attack-header-Water, .attack-header-Stone, .attack-header-Plant {
    font-weight: bold;
}
.fight_Wind, .attack_Wind, .attack_8{
    background-color: #F2D9FD;
    color: #29282B;
}
.attack-header-Wind {
    color: #85749d;
}
.fight_Wind:hover, .fight_Wind:focus{
    background-color: #D5BAE0;
}
.fight_Natural, .attack_Natural, .attack_1{
    background-color: #EFEAE8;
    color: #585858;
    border-color: rgb(106 111 109);
    border-color: rgb(119 119 119 / 67%);
}
.fight_Natural:hover, .fight_Natural:focus{
    background-color: #BBBBBB;
}
.attack-header-Natural {
    color: #939393;
}
.fight_Ice, .attack_Ice, .attack_6{
    background-color: #D3F7F9;
    color: #47585D;
}
.fight_Ice:hover, .fight_Ice:focus{
    background-color: #93CED2;
}
.attack-header-Ice {
    color: #38839b;
}
.fight_Electric, .attack_Electric, .attack_5{
    background-color: #FFFBA3;
    color: #716D32;
}
.fight_Electric:hover, .fight_Electric:focus{
    background-color: #D4CF57;
}
.attack-header-Electric {
    color: #c59f3c;
}
.fight_Plant, .attack_Plant, .attack_2{
    background-color: #BFEFC6;
    color: #1C5040;
}
.attack-header-Plant {
    color: #206850;
}
.fight_Plant:hover, .fight_Plant:focus{
    background-color: #6FB379;
}
.fight_Fire, .attack_Fire, .attack_4{
    background-color: #FFAE92;
    color: #56332E;
}
.fight_Fire:hover, .fight_Fire:focus{
    background-color: #F5725F;
}
.attack-header-Fire {
    color: #a93027;
}
.fight_Water, .attack_Water, .attack_3{
    background-color: #ADE9F1;
    color: #23597D;
}
.fight_Water:hover, .fight_Water:focus{
    background-color: #75C5D0;
}
.attack-header-Water {
    color: #315897;
}
.fight_Stone, .attack_Stone, .attack_7{
    background-color: #CCB098;
    color: #50413F;
}
.fight_Stone:hover, .fight_Stone:focus{
    background-color: #9E7C5E;
}
.attack-header-Stone {
    color: #795753;
}
.attackButton{
    padding: .25em;
    margin: .1em;
    width: 100%;
    max-width: 250px;
    border-radius: .25em;
    border: 2px rgba(148, 148, 148, 0.35) solid;
    display: inline-block;
    text-align: center;
}
.attackDescription {
    font-size: .9em;
    margin: .25em 0;
    padding-bottom: .5em;
    display: block;
}
#battleWhole {
    clear: both;
    overflow: auto;
    max-width: 100%;
    position: relative;
}
.fullscreen-show {
    display: none;
    visibility: hidden;
}
/**
 Trying to combine all the full screens on one line breaks it for some unknown reason, so just keep them separate
 Can't combine the prefix selectors
 https://stackoverflow.com/questions/17672698/is-it-possible-to-write-one-css-rule-for-several-prefixed-selectors
 */
:fullscreen .fullscreen-show {
    display: block;
    visibility: visible;
}
:-webkit-full-screen .fullscreen-show {
    display: block;
    visibility: visible;
}
:-moz-full-screen .fullscreen-show {
    display: block;
    visibility: visible;
}
:-ms-fullscreen .fullscreen-show {
    display: block;
    visibility: visible;
}
:fullscreen .fullscreen-hide {
    display: none;
    visibility: hidden;
}
:-webkit-full-screen .fullscreen-hide {
    display: none;
    visibility: hidden;
}
:-moz-full-screen .fullscreen-hide {
    display: none;
    visibility: hidden;
}
:-ms-fullscreen .fullscreen-hide {
    display: none;
    visibility: hidden;
}
#all-battle-elements:fullscreen {
    background: #fff;
}
#all-battle-elements:-webkit-full-screen {
    background: #fff;
}
#all-battle-elements:-moz-full-screen {
    background: #fff;
}
#all-battle-elements:-ms-fullscreen {
    background: #fff;
}

#battleField{
    border: 1px solid #6D905F;
    margin: auto;
    margin-bottom: 0;
    background: #DEECF2;
    height: 450px;
    min-height: 450px;
    /*width: 650px;
    min-width: 650px;*/
    overflow: hidden;
    position: relative;
}
.nightFilter{
    position: absolute;
    width: 650px;
    height: 450px;
    background: rgba(0, 18, 60, 0.15);
    top: 0;
    left: 0;
    z-index: 10;
}
.battle-foreground {
    position: absolute;
    bottom: 0;
    z-index: 1;
}
.selectableIcon:hover, .selectableIcon:focus{
    cursor: pointer;
}
#fieldWrap{
    margin: auto;
    position: relative;
    max-width: 650px;
}
#battle-menu-top-block {
    max-width: 600px;
    margin: auto;
    margin-top: 0.5em;
}
#battle-top-items-block {
    max-width: 650px;
    margin: auto;
}
.clear-float {
    clear: both;
}
#prisms{
    margin: 1.5em 0;
}

/* Battle Progress Bars */
#userStatsBlock .progressBlock, .elonPrompt .progressBlock{
    position: relative;
}
.healthStat, .staminaStat{
    position: absolute;
    top: 0.25em;
    right: .5em;
    line-height: 1em;
}
.userStatBlock .healthBar, .userStatBlock .staminaBar{
    margin-bottom: 0;
}
.elonPrompt .healthBar, .elonPrompt .staminaBar{
    margin-bottom: 1px;
}
.elonPrompt .progressBlock {
    font-size: 70%;
    line-height: 1;
}
.elonPrompt img, .elonWrapSmall img {
    max-height: 150px;
}
/** Progress Bars **/
.progress{
    border: 1px solid #7C7C7C;
    height: 16px;
    line-height: 1;
    margin-bottom: 5px;
}
.progressBlock .progress.round{
    border-radius: 5px;
    position: relative;
}
.profileProgressBar{
    font-size: 11px;
}
.healthBar .meter {
    background-color: #6DBE4C;
    height: 10px;
}
.staminaBar .meter {
    background-color: #30AEE5;
    background-color: #29D1E7;
}
.progressLabel {
    position: absolute;
    left: 0;
    margin-left: 5px;
}
.progressNumbers {
    position: absolute;
    right: 0;
    margin-right: 5px;
}

.experienceBar{
    height: 14px;
}
.experienceBar .meter{
    background-color: #E2BB53;
}
.experienceBar .progressLabel {
    margin-top: -1px;
}

.meter span {
    margin-left: 5px;
    margin-right: 5px;
    line-height: 1em;
}

/* Battle Dialog */
.battleDialog, .battleDialog2{
    position: absolute !important;
    left: 0;
    right: 0;
    top: 15% !important;
    z-index: 99;
    width: 630px;
    max-width: 98%;
    min-height: 150px;
    max-height: 550px;
    padding: 1.5em 1em;
    background: rgba(233, 237, 237, 0.9);
    border-radius: .5em;
    border: 1px solid #FFF;
    text-align: center;
    overflow: auto;
    margin: auto;
}

#battleModal{
    width: 630px;
}
div#allocateTVsModal {
    max-height: 80%; /* Fixes for mobile with - otherwise too big and won't scroll correctly */
}
.modalContent table{
    margin: .5em auto;
    background: none;
}

.modalContent table tr {
    background: none;
}
.modal-wrapper {
    max-height: 85vh;
    overflow: auto;
}
.narrow-width {
    max-width: 95%;
}
table.newStatsTable td, .newStatsTable th {
    border: 1px #F6F6F6 solid;
}
table.newStatsTable {
    border: 1px #92B965 solid;
}
table.newStatsTable {
    border: 1px #92B965 solid;
    margin-bottom: 0;
}

table.table-condensed td {
    padding: 5px;
}

.elemental-chart-small th {
    font-size: 12px
}
.elemental-chart-small .elemental-stone, .elemental-chart-small td {
    padding: 5px 0;
}
.elemental-affinity-button {
    margin: 1.5em;
}
.elemental-high-value {
    color: #009a1b;
    font-weight: bold;
}
.elemental-low-value {
    color: #f94646;
    font-weight: bold;
}

.modalContent table td {

    font-size: 1rem;
    padding: .25em;
}
.modalContent label{
    display: inline;
}

.modal-close-x {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #e63737;
}
.modal-close-x:hover {
    color: #ff7c7c;
    cursor: pointer;

}
/** Daily Login **/
#daily-bonus-modal h2 {
    font-weight: bold;
}
.daily-login-main {
    justify-content: center;
    align-items: center;
    display: flex;
}
.daily-login-box {
    background: #d2d2d252;
    border: 2px solid #86868666;
    width: 110px;
    height: 110px;
    margin: auto;
    padding: 18px 5px;
    font-size: 12px;
    border-radius: .25em;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}
.daily-login-box img {
    padding-bottom: 7px;
}
.daily-login-container {
    display: inline-block;
    position: relative;
    padding: 0 5px;
}
.daily-login-container small {
    font-weight: bold;
}
.daily-login-container .fi-arrow-right {
    position: absolute;
    left: -22px;
    top: 46px;
    font-size: 30px;
    color: #6a8c96;
}
.daily-login-last {
    margin-left: 20px;
}
.daily-login-label {
    font-size: 25px;
    font-weight: bold;
}
.daily-login-check, .daily-login-future{
    position: absolute;
    top: 0;
    height: 110px;
    width: 110px;
    opacity: 0.25;
}
.daily-login-future {
    background: #6a8c96;
}
.daily-login-check {
    font-size: 110px;
    opacity: .9;
    color: #3f8056;
    color: #4bbd54;
    color: #1b9e25;
}
.daily-login-box.daily-box-today {
    border-color: #1b9e25;
}
/* Demo Page */
#elonPreviewImage{
    border: 1px dashed #E0E0E0;
    width: 400px;
    height: 350px;
    background: #FBFBFB;
    max-width: 100%;
    position: relative;
}
#elonPreviewImage img{
    position: absolute;
    bottom: 0;
    left: 0;
}
fieldset {
    padding-bottom: .5rem;
}
fieldset.tight_form{
    padding: 0 1rem;
    margin-top: 0;
}
.tight_form legend{
    font-size: 0.8rem;
    margin-bottom: .5em;
    color: #4d4d4d;
    font-weight: normal;
}
.tight_form select{
    margin-bottom: 0;
}

/** Conversation **/
.dialog-item-link {
    padding: .5em;
    color: #12b2c1;
    font-weight: bold;
}
.dialog-item {
    font-size: 1rem;
}
.dialog-item.dialog-user-0 {
    padding-bottom: 1em;
}
.dialog-item.dialog-user-1 {
    padding: .5em;
    padding-top: 1em;
    color: #12b2c1;
    font-weight: bold;
}
.dialog-item.dialog-user-1:hover {
    color: #12d5e4;
    cursor: pointer;
}
.quest-objective-requirement {
    width: 30%;
    max-width: 150px;
    display: inline-block;
}
#dialog-texts-block .quest-objective-requirement, #dialog-texts-block .quest-reward-item {
    text-align: center;
    border: #dadada solid 1px;
    background: #f5f5f5;
    padding-top: .5em;
    margin-bottom: .5em;
    max-width: 145px;
    min-width: 145px;
    width: 145px;
    display: inline-block;
    display: inline-grid;
    min-height: 150px;
    font-size: 1rem;
    line-height: 1.5em;
}
div#dialog-texts-block {
    margin-bottom: 2em;
}
@media (min-width: 1575px) {
    div#dialog-texts-block {
        margin: 2em 0;
    }
}
@media (max-width: 642px) {
    .dialog-npc-image {
        max-height: 200px;
    }
}
@media (max-width: 1025px) {
    .dialog-npc-image {
        max-height: 300px;
    }
}
@media (max-width: 1450px) and (min-width: 643px) {
    div#genericResponseModal {
        margin-left: -30%;
        width: 60%;
    }
}
@media (max-width: 1650px) and (min-width: 1451px) {
    div#genericResponseModal {
        margin-left: -25%;
        width: 50%;
    }
}

/* Marketplace Search */
.item-block {
    border: 2px solid #d0d0d0;
    padding: 1em;
    text-align: center;
    border-radius: 5px;
    background: #efefef;
    margin-top: .5em;
}
.item-block img {
    max-width: 50px;
}

/* Forum */
#forums table{
    min-width: 100%;
    width: 100%;
}
.forumBlock{
    border-radius: .25rem;
    margin: 0;
    margin-left: 0;
    line-height: 1.1rem;
    display: flex;
    align-items: center;
}
.forum-text {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
.forum-block-left {
    justify-content: flex-start;
}
.forum-block-right {
    justify-content: flex-end;
}
.forum-icon {
    margin-top: 10px;
    min-width: 50px;
}
.forum-left-icon {
    margin-right: 15px;
}
.forum-right-icon {
    margin-left: 15px;
}
.forumList h5{
    background: #E2F5B1;
    padding: .2em;
    margin: 0;
    color: #337141;
    color: #239463;
    font-weight: bold;
    text-align: center;
    border: 2px solid #d6ec9d;
    border-radius: .25em;
}
.forumList h6 {
    margin-bottom: .2rem;
}
.forumList h6 a {
    color: #327f54;
    font-weight: bold;
}
.forumList h6 a:hover, .forumList h6 a:focus {
    color: #4598c1;
}
.forumList{
    margin-left: 0;
    padding-left: 0;
}
.forumBlock hr {
    margin: .25em;
}

.forumTitle a {
    font-size: .9rem;
}
.forumTime{
    font-size: .8rem;
}
.forumBlock .row {
    padding: .75em 1.5em;
    padding-top: 1em;
}
#search-forum-list li {
    border: 1px solid #e4e4e4;
    margin: 1em;
    padding: 1em;
    background: #f9f9f9;
}
#forum-search-link {
    padding-bottom: .5em;
    padding-right: .25em;
}
.forum-avatar-scene img{
    border-radius: .25em;
    border: 2px solid #737373;
}

.forum-badges {
    text-align: center;
}

.forum-badges div{
    display: inline-block;
}
/*** Messages/Mail ***/

#mailHead .breadcrumbs {
    margin-top: 1em;
}

.mailTable table {
    min-width: 100%;
}

#mContent{
    margin-top: 1.25em;
    font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
}

#write textarea{
    height: 8rem;
}

.message a:hover .message:hover, .message:focus, .draft-message:hover, .draft-message:focus{
    background: #E7F0F4;
    color: #204349;
}
.block-link a{
    display: block;
}
.unread-message {
    font-weight: bold;
}

/* End Messages/Mail */

.pairsInline dl, .pairsInline dt, .pairsInline dd {
display: inline;
}

.pairs dt, .pairsInline dt, .pairsRows dt, .pairsColumns dt, .pairsJustified dt {
color: rgb(113, 113, 113);
}
.nodeStats dl, .subForumsPopup {
float: left;
display: block;
margin-right: 3px;
}
.node .nodeLastPost {
    background-color: rgb(255, 255, 255);
    padding: 10px;
    border-bottom: 1px solid rgb(239, 239, 239);
    font-size: 12px;
    background: url(rgba.php?r=0&g=0&b=0&a=0);
    background: rgba(0, 0, 0, 0);
    _filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00000000,endColorstr=#00000000);
    padding: 3px 10px;
    margin: 10px;
    border-width: 0px;
    position: absolute;
    top: 2px;
    right: 0;
    line-height: 18px;
    white-space: nowrap;
    word-wrap: normal;
    overflow: hidden;
    width: 210px;
    height: 35px;
}

a.close:hover, a.close:focus, a.close-ajax:hover, a.close-ajax:focus {
    color: #EDEDED;
}
a.close, a.close-ajax {
    float: right;
    color: #2F2F2F;
}

/**  --  Status Messages  --  **/
.notice, .warning, .error, .success, .news{
    display: block;
    border-radius: .25em;
    padding: .75em;
    margin: .5em 0;
    font-size: 0.75rem;
}
.notice, span.success, .success {
    background: #ECFAC6;
    color: #203819;
    border: 1px solid #98C758;
}
.news{
    background: #D3EEF5;
    color: #1B2027;
    border: 1px solid #25C9FB;
}
.unreadNotification{
    color: #25C9FB;
}
.warning {
    background: #F2CE8D;
    color: #443824;
    border: 1px solid #B88638;
}

.error, span.error{
    border: 1px solid #A63D38;
    color: #4F1F1F;
    background-color: #F27F7B;
}
.form-error .error {
    color: #4f2a1f;
    background-color: #f2a77b;
    border: 1px solid #a66638;
}
.text-warning {
    color: #c09853;
}
.text-warning:hover {
    color: #a47e3c;
}
.text-danger {
    color: #b94a48;
}
.text-success {
    color: #468847;
}
.text-info {
    color: #3a87ad;
}
/** End Status messages **/


.reveal-modal {
    border-radius: .5em;
    border: 2px solid rgba(197, 224, 164, 0.7);
}
.close-reveal-modal:hover, .close-reveal-modal:focus{
    color: #757E6C;
}
dl.stacked dd{
    float: left;
    margin-right: .5em;
}

.tableFlow {
    width: 100%;
    table-layout: fixed;
}
.tableWrap {
    max-width: 100%;
    overflow: auto;
    margin-bottom: 1.25rem;
}
.tableWrap table {
    margin-bottom: 0;
    width: 100%;
}
#random_event_notice {
    border: 1px solid #8fe1e8;
    color: #404040;
    position: relative;
    margin-bottom: 1em;
    border-radius: 5px;
}
#random_event_notice h3 {
    background: #e2f9f9;
    border-bottom: 1px solid #8fe1e8;
    margin-top: 0;
    font-weight: bold;
    color: #034e4e;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    padding: 8px 0;
}
#random_event_notice .random-body {
    margin: 1.5em 0;
}
#random_event_notice a.close {
    position: absolute;
    top: 15px;
    right: 15px;
}
#random_event_notice img.event_icon {
    max-width: 35px;
}
/*
span.success, small.success{
    display: block;
    padding: 0.375rem 0.5625rem 0.5625rem;
    margin-top: -1px;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: normal;
    font-style: italic;
    background: #1F817D;
    color: white;
}*/

.top-right-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}
.reveal-modal-inner {
    margin: 0 auto;
    position: relative;
    max-width: 950px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.4);
    box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

small{
    font-size: .8rem;
}

/* Adds counter to first td cell of table with numbered class */
table.numbered tr:first-child{
    counter-reset: rowNumber;
}
table.numbered tr{
    counter-increment: rowNumber;
}
table.numbered tr td:first-child::before{
    content: counter(rowNumber) ".";
    min-width: 1em;
    margin-right: 0.5em;
}
.overflow-wrap{
    overflow: auto;
}

.has-tip{
    border: 1px dashed #636363;
    background: #CAEFEF;
    padding: 0 .15em;
}

.sectionEdits{
    margin-top: 1.5em;
}
ol.sectionList {
    margin-top: 1em;
}

ol{
    counter-reset: item;
}
ol > li{
    counter-increment: item;
}
ol ol > li{
    display: block;
}
ol ol > li:before{
    content: counters(item, ".")".";
}
.center{
    margin-left: auto;
    margin-right: auto;
}

.newsPost h4{
    text-align: center;
    margin-top: 1em;
}
.newsPost hr{
    margin-bottom: .1em;
}
.newsContent{
    padding: 1em;
    padding-top: .25em;
}
.newsContent h1 {
    font-size: 1.5rem;
}
.newsContent h2 {
    font-size: 1.4rem;
}
.newsContent h3 {
    font-size: 1.3rem;
}
.newsContent h4 {
    font-size: 1.2rem;
}
.newsContent h5 {
    font-size: 1.1rem;
}
.newsContent h6 {
    font-size: 1.1rem;
}
.newsContent p {
    font-size: .9rem;
}
#newsBlock #news-block-latest-header {
    font-size: 20px;
    font-weight: bold;
    color: #40a588;
}
#newsBlock .news-block-timestamp {
    padding-bottom: 3px;
}
.newsContent .news-continue-reading {
    font-size: .9rem;
    margin-bottom: .5em;
    margin-top: .1em;
}

.newsFooter {
    font-size: .85em;
    color: #6c6c6c;
    margin: 1em;
    margin-top: 0em;
}

.city-header{
    font-weight: bold;
    color: #2a416d;
}
.city-header, .city-map{
    text-align: center;
}
.city-map {
    position: relative;
}
.city-map img{
    border-radius: .5em;
}
.city-description{
    padding: 1em;
}
.city-world-map {
    max-width: 750px;
    margin: auto;
}
.city-map .direction-icon {
    position: absolute;
    font-size: 2em;
}
.city-map .direction-icon a {
    color: #239463;
}
.city-map .direction-icon a:hover, .city-map .direction-icon a:focus {
    color: #519276;
}
.city-map .direction-top {
    top: 10px;
    left: 0;
    right: 0;
}
.city-map .direction-left {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50px;
}
.city-map .direction-right {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 50px;
}
.city-map .direction-bottom {
    bottom: 10px;
    left: 0;
    right: 0;
}

.map-force-full-wrapper {
    overflow-y: hidden;
}
.map-force-full {

}

/** -- Treasure Maps --**/
.map-display-container {
    max-width: 325px;
    display: inline-block;
    margin: 1em;
    text-align: center;
}

.map-piece {
    margin: 5px 0;
}
.map-piece img {
    border-radius: 5px;
}

.map-piece img.hidden-piece {
    border: 2px solid #828585;
    background: #e0e0e0;
    background: #84848433;
}

.location-image {
    position: relative;
    min-height: 500px;
    text-align: center;
}

.location-coin-box, .location-baby-box, .location-battle-box, .location-coin-loot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-left: 3px;
    padding-right: 3px;
}
.location-coin-loot {
    bottom: 100px;
}
.location-coin-box p, .location-baby-box p, .location-battle-box p, .location-coin-loot p {
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    max-width: 470px;
    margin: 1em auto;
}

.location-battle-box img {
    margin-bottom: 2em;
}


.store-no-image {
    min-height: 50px;
}

.activity-item-inline-image{
    max-width: 45px;
    margin: .25em;
}
.activity-occurred{
    font-size: .85em;
    color: #6c6c6c;
    margin: 1em;
    text-align: center;
}
.activity-content{
    font-size: 1.25em;
}
@media (min-width: 1026px) {
    .activity-content{
        padding-left: 2em;
        padding-right: 2em;
    }
}
.genetic-hidden-li {
    padding-top: .5em;
}
/*
* When banner image doesn't load on large image - make sure you can still see user data
*/
@media all  and (min-width: 1000px){
    #imageHeader img {
        min-height: 110px;
    }
}


/** --- SPINNER --- */
.loader-overlay {
    display: block;
    margin: auto;
    width: 82px;
    height: 82px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 82px;
    height: 82px;
    animation-name: rotateAnim;
    -o-animation-name: rotateAnim;
    -ms-animation-name: rotateAnim;
    -webkit-animation-name: rotateAnim;
    -moz-animation-name: rotateAnim;
    animation-duration: 0.77s;
    -o-animation-duration: 0.77s;
    -ms-animation-duration: 0.77s;
    -webkit-animation-duration: 0.77s;
    -moz-animation-duration: 0.77s;
    animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-timing-function: linear;
    -o-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}
.loader div {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid rgb(127,207,245);
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.loader div:nth-child(odd) {
    border-top: none;
    border-left: none;
}
.loader div:nth-child(even) {
    border-bottom: none;
    border-right: none;
}
.loader div:nth-child(2) {
    border-width: 2px;
    left: 0px;
    top: -3px;
    width: 10px;
    height: 10px;
}
.loader div:nth-child(3) {
    border-width: 2px;
    left: -1px;
    top: 2px;
    width: 15px;
    height: 15px;
}
.loader div:nth-child(4) {
    border-width: 2px;
    left: -1px;
    top: -3px;
    width: 20px;
    height: 20px;
}
.loader div:nth-child(5) {
    border-width: 2px;
    left: -1px;
    top: 3px;
    width: 26px;
    height: 26px;
}
.loader div:nth-child(6) {
    border-width: 3px;
    left: 0px;
    top: -3px;
    width: 33px;
    height: 33px;
}
.loader div:nth-child(7) {
    border-width: 3px;
    left: 0px;
    top: 5px;
    width: 41px;
    height: 41px;
}


@keyframes rotateAnim {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@-o-keyframes rotateAnim {
    from {
        -o-transform: rotate(360deg);
    }
    to {
        -o-transform: rotate(0deg);
    }
}

@-ms-keyframes rotateAnim {
    from {
        -ms-transform: rotate(360deg);
    }
    to {
        -ms-transform: rotate(0deg);
    }
}

@-webkit-keyframes rotateAnim {
    from {
        -webkit-transform: rotate(360deg);
    }
    to {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes rotateAnim {
    from {
        -moz-transform: rotate(360deg);
    }
    to {
        -moz-transform: rotate(0deg);
    }
}

/* Utility */

.flex {
    display: flex;
}
.flex-end {
    justify-content: flex-end;
}
.flex-center {
    display: flex;
    justify-content: center;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.margin-5-pad{
    margin: .5em;
    padding: .25em;
    margin-left: 0;
    padding-left: 0;
}

/* Aaron's CSS for The user badges */

.showcase {
    background-color:  #f6f6f6;
    border-radius: 5px;
    border: 1px solid gainsboro;
    padding-left: 10px;
}

.badgeElement {
    position: relative;
}

.badgeIcon {
    position: absolute;
    right: 20px;
    color: #f7c304;
    font-size: 1.25rem;
}

.translucent {
    opacity: 0.5;
}


@media only screen and (min-width: 614px) {
    .fight-attack-info {
        display: none !important;
    }
}
@media only screen and (max-width: 613px) {
    #fightMenu button {
        margin-bottom: 1em;
    }
}
@media only screen and (min-width: 780px) {
    #user_elon_name {
        padding-top: 5px;
    }
    #battleMessages {
        margin-left: 5px;
    }
}
@media only screen and (max-height: 750px) {
    .battleDialog, .battleDialog2 {
        top: 40% !important;
        transform: translateY(-50%);
    }
}
@media only screen and (max-width: 780px) {
    #fightMenu button {
        margin-bottom: .5em;
    }
    #enemyFightBlock .statBlock {
        left: 2px;
        top: 2px;
    }
    #userStatsBlock {
        right: 2px;
    }
    .statBlock {
        font-size: 60%;
    }
    .healthBar .meter {
        height: 8px;
    }
    .progress {
        height: 14px;
    }
    .progressLabel {
        font-size: 78%;
    }
    .experienceBar .progressLabel {
        margin-top: 0;
    }
    .experienceBar {
        height: 12px;
    }
    .experience-label {
        display: none;
    }
}