/**** ****/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* */

:root {
    /* colors */
    --clr-dark: #595959;
    --clr-dark-d: #262626;
    --clr-dark-l: #808080;
    --clr-light: #EEEEEE;
    --clr-light-l: #FAFAFA;
    --clr-light-d: #BDBDBD;

    --clr-p: #1976d2;
    --clr-p-d: #1359a0;
    --clr-p-l: #4899ea;

    --clr-success: mediumseagreen;
    --clr-success-d: seagreen;
    --clr-warning: #FFA000;
    --clr-danger: #d74251;
    --clr-danger-d: #a82431;

    /* spacing */
    --space-1: 50px;
    --space-2: 25px;
    --space-3: 10px;
}

html, body {
    font-family: Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    
    height: 100%;
    margin: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, Helvetica, sans-serif;
}

h1 { font-size: 36px }
h2 { font-size: 30px }
h3 { font-size: 24px }
h4 { font-size: 20px }
h5 { font-size: 18px }
h6 { font-size: 16px }

a {
    text-decoration: none;
}

[hidden] {
    display: none !important;
}

.wall-container {
	max-width: 1200px;
    min-width: 320px;
	width: 100%; 
    padding-left: 15px; 
    padding-right: 15px; 
    margin-left: auto;
    margin-right: auto;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.wall-input-text {
    width: 100%;
    padding: 5px 10px;
    font-size: 1.0rem;
    color:  #595959;
    background-color: #fff;
    border: 1px solid #808080;
    color: var(--clr-dark);
    background-color: var(--clr-light);
    border: 1px solid var(--clr-dark-l);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wall-textarea {
    width: 100%;
    height: 100px;
    padding: 5px 10px;
    font-size: 1.0rem;
    color: #595959;
    background-color: #fff;
    border: 1px solid #808080;
    color: var(--clr-dark);
    background-color: var(--clr-light);
    border: 1px solid var(--clr-dark-l);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box
}
.wall-select-btn {
    width: 100%;
    padding: 5px 10px;
    font-size: 1.0rem;
    color: #595959;
    background-color: #fff;
    border: 1px solid #808080;
    color: var(--clr-dark);
    background-color: var(--clr-light);
    border: 1px solid var(--clr-dark-l);
    -webkit-transition: .5s;
    transition: .5s;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.wall-input-file {
    position: relative;
    width: 100%;
    margin-right: 97%;
    margin-right: calc(100% - 20px);
}
.wall-input-file::before {
    content: "Browse";
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 5px 10px;
    border-width: 0;
    color: #fff;
    color: var(--clr-light);
    cursor: pointer;
    background: #FFA000;
    border: 1px solid #FFA000;
    background: var(--clr-warning);
    border: 1px solid var(--clr-warning);
    -webkit-transition: .5s;
    transition: .5s;
}
.wall-input-file::after {
    content: attr(data-after-content);
    position: absolute;
    left: 120px;
    top: 0;
    width: 97%;
    width: calc(100% - 145px);
    background: #BDBDBD;
    border: 1px solid #BDBDBD;
    background: var(--clr-light-d);
    border: 1px solid var(--clr-light-d);
    padding: 5px 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}
/* checkbox */
.wall-checkbox {
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}
.wall-checkbox__checkbox {
    height: 18px;
    width: 18px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    z-index: 2;
}
.wall-checkbox__indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background: #BDBDBD;
    -webkit-box-shadow: inset 0 0 5px #BDBDBD;
            box-shadow: inset 0 0 5px #BDBDBD;
    background: var(--clr-light-d);
    -webkit-box-shadow: inset 0 0 5px var(--clr-dark);
            box-shadow: inset 0 0 5px var(--clr-dark);
    z-index: 1;
}
.wall-checkbox__indicator::after {
    content: "";
    display: none;
    position: absolute;
    top: 3px;
    left: 6px;
    height: 7px;
    width: 3px;
    border: solid #595959;
    border: solid var(--clr-dark);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}
.wall-checkbox__checkbox:checked ~ .wall-checkbox__indicator::after {
    display: block;
}
/* buttons */
.wall-btn {
    min-width: 120px;
    font-size: 1.0rem;
    font-weight: 600;
    padding: 5px 10px;
    border-width: 0;
    color: #fff;
    color: var(--clr-light);
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s;
    background: #808080;
    border: 1px solid #808080;
    background: var(--clr-dark-l);
    border: 1px solid var(--clr-dark-l);
}
.wall-btn-success {
    background: mediumseagreen;
    border: 1px solid mediumseagreen;
    background: var(--clr-success);
    border: 1px solid var(--clr-success);
}
.wall-btn-danger {
    background: #d74251;
    border: 1px solid #d74251;
    background: var(--clr-danger);
    border: 1px solid var(--clr-danger);
}
.wall-btn-primary {
    background: #1976d2;
    border: 1px solid #1976d2;
    background: var(--clr-p);
    border: 1px solid var(--clr-p);
}
.wall-btn:hover {
    background: #595959;
    border: 1px solid #595959;
    background: var(--clr-dark);
    border: 1px solid var(--clr-dark);
}
.wall-btn-success:hover {
    background: seagreen;
    border: 1px solid seagreen;
    background: var(--clr-success-d);
    border: 1px solid var(--clr-success-d);
}
.wall-btn-danger:hover {
    background: #a82431;
    border: 1px solid #a82431;
    background: var(--clr-danger-d);
    border: 1px solid var(--clr-danger-d);
}
.wall-btn-primary:hover {
    background: #1359a0;
    border: 1px solid #1359a0;
    background: var(--clr-p-d);
    border: 1px solid var(--clr-p-d);
}

.wall-visibile-off {
    visibility: hidden;
}
.wall-hidden {
    display: none;
}

.wall-loading-anim {
    font-size: 1.2rem;
    color: #1976d2;
    color: var(--clr-p);
}

/* wall-dropdown */
.wall-dropdown {
    position: relative;
}
.wall-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #262626;
    background: var(--clr-dark-d)
}
.wall-dropdown-menu__item {
    color: #eee;
    color: var(--clr-light);
    margin-bottom: 10px;
}

/* notification-box */
.wall-notification-box {
    position: fixed;
    z-index: 9;
    width: 50%;
    max-height: 600px;
    top: 100px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    padding: 20px 30px;
    background: #fff;
    -webkit-box-shadow: 0 20px 50px 2px #BDBDBD;
            box-shadow: 0 20px 50px 2px #BDBDBD;
    background: var(--clr-light);
    -webkit-box-shadow: 0 20px 50px 2px var(--clr-light-d);
            box-shadow: 0 20px 50px 2px var(--clr-light-d);
    overflow: hidden;

}
.wall-notification-box__msg {
    text-align: center;
    font-size: 1.25rem;
}
.wall-notification-box__close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 1.25rem;
    cursor: pointer;
}
.wall-notification-box__msg.wall-success-notification {
    color: mediumseagreen;
    color: var(--clr-success);
}
.wall-notification-box__msg.wall-warning-notification {
    color: #FFA000;
    color: var(--clr-warning);
}
.wall-notification-box__msg.wall-danger-notification {
    color: #d74251;
    color: var(--clr-danger);
}
/***** ******/

@media only screen and (max-width:1279px) {
    
}
@media only screen and (max-width:899px) { 
    .wall-notification-box {
        width: 80%;
    }

}
@media only screen and (max-width:767px) { 
    h1 { font-size: 32px; } h2 { font-size: 28px; } h3 { font-size: 22px; } h4 { font-size: 18px; } 
}
@media only screen and (max-width:479px) { 

}