*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    --inner-width : var(--width-1);
    --inner-padding :var(--pad-1);
    --breakout-width : 1fr;
    font-family: var(--fnt-d);
}

@media (max-width:900px) {
    *{
        --breakout-width : 0px;
    }
}

.sitemode{
    display: block;
    background: #f7c3cfa3;
    position: fixed;
    top: 0px;
    margin: 0px 50px;
    padding: 4px 10px;
    z-index: 10000;
}

.content-grid,.full{
    display: grid;
    grid-template-columns:
    [full-start] 1fr
    [breakout-start] var(--breakout-width)
    [content-start] var(--inner-width)
    [content-end] var(--breakout-width)
    [breakout-end] 1fr
    [full-end];
}

footer{
    margin-top: auto;
}

.content-grid >*,
.full >*{
    grid-column: content;
}

.content-grid >.breakout{
    grid-column: breakout;
}
.content-grid >.full{
    grid-column: full;
}

h1{
    font-size: 2.0rem;
    line-height: 3.0rem;
}
h2{
    font-size: 1.5rem;
    line-height: 2.0rem;
}
body{
    font-family: var(--fnt-d);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 8.5rem;
}
a:link {
    text-decoration: none;
}
a:visited {
    text-decoration: none;
}
a {
    color: inherit;
}
.hide {
    display: none;
}

.section{
    text-align: center;
    position: relative;
}

.sticky{
    position: sticky;
    top: 0px;
    z-index: 100;
}

.search .ico-magnifier{
    height: 50%;
    margin: auto;
    max-height: 20px;
    width: 100%;
    max-width: 20px;
    left: 12px;
    right: auto;
    opacity: .5;
    fill: #444;
    position: absolute;
    top: 10px;
}

input[type="search"]{
    width: 100%;
    height: 40px;
    font-size: 14px;
    line-height: 100%;
    padding: 10px 15px 10px 40px;
    margin: 0;
    background: #f3efef;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -webkit-appearance: none;
    box-sizing: border-box;
}

@media (max-width:1600px) {
    *{
        --inner-width : var(--width-2);
        --inner-padding :var(--pad-2);
    }
}

@media (max-width:1200px) {
    *{
        --inner-width : var(--width-3);
        --inner-padding :var(--pad-3);
    }
}

@media (max-width:900px) {
    *{
        --inner-width : var(--width-4);
        --inner-padding :var(--pad-4);
    }
}

@media (max-width:600px) {
    *{
        --inner-width : var(--width-5);
        --inner-padding :var(--pad-5);
    }
}
@media (max-width:360px) {
    *{
        --inner-width : var(--width-6);
        --inner-padding :var(--pad-6);
    }
}

.btn{
    border-radius: 8px;
    border-width: 2px;
    padding: 0.75rem 1rem;
    font-size: 16px;
    line-height: 16px;
    font-weight: 700;
    display: inherit;
}

.btn_danger{
    background-color: rgb(253, 74, 74);
    border: 2px solid white;
    color: white;
}
.btn_gray{
    background-color: rgb(207, 207, 207);
    border: 2px solid rgb(175, 175, 175);
    color: rgb(0, 0, 0);
}
.btn_primaryOutline{
    background-color: white;
    border: 2px solid var(--cl-primary);
    color: var(--cl-primary);
}
.btn_secondaryOutline{
    background-color: rgb(0, 0, 0);
    border: 2px solid var(--cl-secondary);
    color: var(--cl-secondary);
}
.btn_accentOutline{
    background-color: rgb(121, 121, 121);
    border: 2px solid var(--cl-accent);
    color: var(--cl-accent);
}
.btn_acc_a{
    background-color: var(--cl-accent-a);
    border: 2px solid #0000;
}


.btn[disabled]{
    opacity: 0.3;
    cursor: pointer;
    user-select: none;
    pointer-events: none;
}

.btn:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
      rgba(248, 248, 248, 0.9) 0px 18px 36px -18px inset;
}

.flx{
    display: flex !important;
}

.flx-h{
    display: flex !important;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
}

.flx-v{
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
}
.flx1{
    flex: 1;
}
.flx2{
    flex: 2;
}
.flx3{
    flex: 3;
}
.flx4{
    flex: 4;
}


.ani{
    opacity: 0;
}

@keyframes animRotateScale{
    from{
        transform: translateY(-100px) translateX(-100px) scale(-0.5, 1);
        opacity: 0;
    }
    to{
        transform:translateY(0) translateX(0) scale(1);;
        opacity: 1;
    }
}

@keyframes animTop{
    from{
        transform: translateY(-100px);
        opacity: 0;
    }
    to{
        transform:translateY(0);
        opacity: 1;
    }
}

@keyframes animBottom{
    from{
        transform: translateY(+100px);
        opacity: 0;
    }
    to{
        transform:translateY(0);
        opacity: 1;
    }
}

@keyframes animRight{
    from{
        transform: translateX(+100px);
        opacity: 0;
    }
    to{
        transform:translateX(0);
        opacity: 1;
    }
}

@keyframes animLeft{
    from{
        transform: translateX(-100px);
        opacity: 0;
    }
    to{
        transform:translateX(0);
        opacity: 1;
    }
}

@keyframes animZoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(2);
    }

}

.SetGroup {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    margin-bottom: 1rem !important;
    line-height: 1;
}

.SetGroup>span,.SetGroup>i {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.075rem 0.45rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    flex: 1;
    justify-content: center;
}

.SetGroup>input,
.SetGroup>textarea,
.SetGroup>select {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.SetGroup input[type="radio"] {
    display: none;
}


.SetGroup input[type="radio"]+label {
    font-size: 16px;
    cursor: pointer;
    width: auto;
    flex: auto;
}

.SetGroup input[type="radio"]:checked+label {
    background-color: #bbb;
}

.SetGroup>input:focus,
.SetGroup>textarea:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%);
}

.SetGroup :first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
}

.SetGroup :last-child {
    border-bottom-right-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.parallax{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

.parallax::before{
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
}

pre{
    text-align: left;
}