/* your styles go here */

.card {
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.1);
}

.card-container {
    background: #efefef;
    padding: 15px 15px 30px;
    box-shadow: 2px 2px 10px inset rgba(0,0,0,.1);
}

.big-btn {
    width: 100%;
    padding: 14px 25px;
    font-size: 1.2em;
}

.shadowed-border {
    border: thin solid #ddd;
    border-radius: 4px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
}

.fancy_border {
    border: 15px solid black;
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-image-source: url("https://componentmadness-images.s3.amazonaws.com/20_10_13_12_06_37_vital-box.svg");
    border-image-slice: 15 15;
    border-image-width: auto;
}
.fancy_border div {
    background: white;
}

.chat_container {

}

.chat-container .chat-entry {
    border: thin solid #666;
    margin: 4px 0px 10px;
    padding: 4px 0px;
    border-radius: 3px;
}

.chat-container .chat-entry .chat-header {
    text-transform: capitalize;
    border-bottom: thin solid #ccc;
    padding: 0px 10px;
}


.chat-container .chat-entry .hit-section {
}

.chat-container .chat-entry .hit-section .action-hit {
    text-align: center;
    position: relative;
    cursor: help;
    background: #eee;
    padding: 5px 15px;
}

.chat-container .chat-entry .hit-section .action-hit.red {
    background: rgba(200,0,0,.2);
}

.chat-container .chat-entry .hit-section .action-hit.green {
    background: rgba(0,200,0,.2);
}

.chat-container .chat-entry .hit-section .action-hit:first-child {
    border-right: thin solid black;
}

.chat-container .chat-entry .hit-section .action-hit .action-hit-total {
    font-size: 20px;
}

.chat-container .chat-entry .hit-section .dc-check {
    font-size: 20px;
    text-align: center;
    margin: auto;
}

.chat-container .chat-entry .hit-section .action-hit .action-hit-breakdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    background: white;
    padding: 4px 8px;
    border: thin solid #ccc;
    border-radius: 3px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.1);
    z-index: 20;
}
.chat-container .chat-entry .hit-section .action-hit:hover .action-hit-breakdown {
    display: block;
}


.chat-container .chat-entry .damage-section {

}
.chat-container .chat-entry .damage-section .action-damage {
    text-align: center;
    position: relative;
    cursor: help;
    background: white;
    padding: 5px 15px;
    border-bottom: thin solid #ddd;
}
.chat-container .chat-entry .damage-section .action-damage .action-damage-total {

}
.chat-container .chat-entry .damage-section .action-damage .action-damage-breakdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    padding: 4px 8px;
    border: thin solid #ccc;
    border-radius: 3px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.1);
    z-index: 20;
}
.chat-container .chat-entry .damage-section .action-damage:hover .action-damage-breakdown {
    display: block;
}

.initiative_container {
    background: white;
    padding: 2px 10px 5px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border: #aaa;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
}

.initiative {
    position: relative;
    background: white;
    border: thin solid #ddd;
    border-radius: 3px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
    margin-right: 5px;
    height: 50px;
    width: 50px;
}

.initiative .initiative-popup {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    background: white;
    padding: 4px 8px;
    border: thin solid #ccc;
    border-radius: 3px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
    z-index: 20;
}
.initiative:hover .initiative-popup {
    display: block;
}


.map-mode-select-container {

}

.map-mode-select {
    display: block;
    margin: 2px;
    position: relative;
}


.map-mode-select .floating-map-options {
    position: absolute;
    top: -3px;
    left: 44px;
    background: white;
    padding: 5px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.2);
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.map-mode-select .floating-map-options .btn {
    margin: 0px;
}

.map-mode-select .floating-map-options {
    display:none;
}
.map-mode-select-container:hover .map-mode-select .floating-map-options {
    display:block;
}



.stat-block-wrapper {
    margin: 20px;
    box-shadow: 0 0 1.5rem #867453;
    display: block;
}

.stat-block {
    text-align: left;
    font-size: 12.5px;
    line-height: 1.2em;
    vertical-align: top;
    background: #FDF1DC;
    background-size: cover;
    background-position: center;
    background-image: url(../dndimages/statblockparch.jpg);
    padding: 10px 10px 20px;
    box-sizing: border-box;
    font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
    position: relative;
}

.stat-block .header {
    color: #922610;
}

.stat-block.wide {
    width: 100%;
    text-align: center;
}

.stat-block.wide .section-left, .stat-block.wide .section-right {
    display: inline-block;
    vertical-align: top;
    width: 48%;
    text-align: left;
}

@media (max-width: 1200px) {
    .stat-block.wide .section-left, .stat-block.wide .section-right {
        width: auto;
    }
}

.stat-block.wide .section-right {
    padding-left: 10px;
}

.orange-border {
    display: block;
    background: #E69A28;
    background-size: cover;
    background-position: center;
    background-image: url(../dndimages/statblockbar.jpg);
    border: 1px solid #000;
    height: 5px;
    padding: 0 10px 0;
    margin: -10px -10px 0;
    box-sizing: initial;
}

.creature-heading {
    margin: 0 0 10px;
}

.creature-heading h1 {
    font-family: 'Libre Baskerville', 'Lora', 'Calisto MT', 'Bookman Old Style', Bookman, 'Goudy Old Style', Garamond, 'Hoefler Text', 'Bitstream Charter', Georgia, serif;
    color: #922610;
    font-size: 21px;
    line-height: 1.2em;
    margin: 10px 0 0;
    letter-spacing: 1px;
    font-variant: small-caps;
    font-weight: bold;
}

.creature-heading h2 {
    font-family: 'Noto Sans', 'Myriad Pro', Calibri, Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-style: italic;
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
}

.tapered-rule {
    display: block;
    width: 100%;
    height: 5px;
    border: none;
    color: #922610;
    fill: #922610;
}

.top-stats {
    margin: 0 0 10px;
}

.property-line.first {
    margin: 8px 0 0;
}

.property-line {
    text-indent: -1em;
    padding-left: 1.1em;
    line-height: 1.4em;
}

.property-line h4 {
    color: #7A200D;
}

.property-line h4, .property-line p {
    display: inline;
    margin: 0;
    color: #922610;
    font-size: 12.5px;
    line-height: 1.2em;
}

.property-line.last {
    margin: 0 0 10px;
}

.property-block h4 {
    font-style: italic;
    font-weight: bold;
}

.property-block h4, .property-block p {
    font-size: 12.5px;
    line-height: 1.2em;
    display: inline;
    margin: 0;
}

.actions:last-child {
    margin: 0;
}

.orange-border.bottom {
    margin: 15px -10px -20px;
}

.scores {
    text-align: center;
    color: #922610;
}

.scores>div {
    display: inline-block;
    vertical-align: middle;
    width: 15.5%;
    min-width: 40px;
    font-size: 12px;
    line-height: 1em;
}

.scores h4 {
    margin: 10px 0 2px;
    font-size: 14px;
    line-height: 1.2em;
    text-transform: uppercase;
    color: #7A200D;
}

.actions h3 {
    border-bottom: 2px solid #7A200D;
    color: #7A200D;
    font-size: 21px;
    font-variant: small-caps;
    font-weight: normal;
    letter-spacing: 1px;
    margin: 10px 0;
    padding: 0 0 0px;
    text-indent: 5px;
}



.navbar-light .navbar-nav .nav-link {
    padding: .5rem 1.5rem;
}

.btn-subscribe {
    font-size: 1.2rem;
    padding: 10px 20px;
    position: relative;
    top: -1px;
    border-radius: 10px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.input-subscribe {
    display: inline-block;
}

.input-subscribe input {
    width: 250px;
    padding: 12px 20px;
    border-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.btn.discord-btn {
    background: #7389de;
    color: white;
    text-decoration: none;
}

.btn.discord-btn:hover {
    color: white;
    text-decoration: none;
}

.initiative-extra-icons {
    max-width: 275px;
    flex-wrap: wrap;
    margin-top: 10px;
    display: none;
}

.initiative_container:hover .initiative-extra-icons {
    display: flex;
}



.tag {
    display: inline-block;
    font-size: .8em;
    margin-left: 10px;
    color: #17a2b8;
    border: 1px solid #17a2b8;

    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
}

.crosshair {
    cursor: crosshair;
}
