﻿body {
    padding-top: 0px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

input[maxlength="2"] {
max-width: 80px !important;
display: inline-block !important;
}
.tag.h6, .tag.h5{
    font-size: 1.5rem; 
}

@media screen and (max-width: 768px){
    .xs_center, .button, button, button.go, button[type="button"] {
        display: block;
        margin: 0 auto;
    }
}

input {
    max-width: 100%;
}


.wrap-collabsible {
    margin-bottom: 1em 0;
}

input[type='checkbox'].toggle {
    display: none;
}

.lbl-toggle {
    display: block;
    font-weight: bold;
    text-decoration: underline;
    font-size: 1em;
    padding: 1em;
    color: #000;
    cursor: pointer;
    border: 1px solid #DDD;
    border-radius: 7px;
    transition: all 0.25s ease-out;
}

    .lbl-toggle:hover {
        color: #7C5A0B;
    }

    .lbl-toggle::before {
        content: ' ';
        display: inline-block;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid currentColor;
        vertical-align: middle;
        transform: translateY(-2px);
        transition: transform .2s ease-out;
    }

.toggle:checked + .lbl-toggle::before {
    transform: rotate(90deg) translateX(-3px);
}

.collapsible-content {
    max-height: 0px;
    overflow: hidden;
    transition: max-height .25s ease-in-out;
}

.toggle:checked + .lbl-toggle + .collapsible-content {
    max-height: 100vh;
}

.toggle:checked + .lbl-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.collapsible-content .content-inner {
    border-bottom: 1px solid rgba(250, 224, 66, .45);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: .5em 1em;
}

