@import url(https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800|Trirong:100,200,300,400,500,600,700,800,900);

.serif{
    font-family: "Trirong";
}

@-webkit-keyframes float-3 {
    0%  {transform: translateY(-3px);}
    50% {transform: translateY(3px);}
    100%{transform: translateY(-3px);}
}
.float-3{
    -webkit-animation: float-3 1s ease-in-out infinite;
}

@-webkit-keyframes float-5 {
    0%  {transform: translateY(-5px);}
    50% {transform: translateY(5px);}
    100%{transform: translateY(-5px);}
}
.float-5{
    -webkit-animation: float-5 1s ease-in-out infinite;
}

@-webkit-keyframes rotate-clockwise{
    0%  {transform: rotate(0deg);}
    50%  {transform: rotate(180deg);}
    100%  {transform: rotate(360deg);}
}
.rotate-clockwise{
    -webkit-animation: rotate-clockwise 1s linear infinite;
}

.animate-show-hide.ng-hide {
  opacity: 0;
}
.animate-show-hide.ng-hide-add,
.animate-show-hide.ng-hide-remove {
  transition: all linear 0.5s;
}

/* ANIMATION */
/* CHECKMARK */
.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #D23227;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  margin: 10% auto;
  box-shadow: inset 0px 0px 0px #D23227;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #D23227;
  }
}
/* CHECKMARK */
/* ANIMATION */



html, body {
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: Roboto,Arial;
    font-weight: 300;
    font-size: 18px;
    color: #666;
}

a{
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}
a.full {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

img{
    display: block;
}

h1,h2,h3,h4,h5{
    font-family: Roboto,Arial;
    font-weight: 100;
}
h1{
    font-size: 60px;
}
h2{
    font-size: 40px;
}
h3{
    font-size: 32px;
}
h4{
    font-size: 28px;
}
h5{
    font-size: 24px;
}


form{
    width: 100%;
}
label {
    font-family: Roboto;
    font-weight: 500 !important;
}
input,
textarea,
select,
[contenteditable=true] {
    padding: 12px 16px;
    width: 100%;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 300;
    color: #666;
    border: solid 1px #aaa;
    outline: none;
}
input[disabled],
textarea[disabled],
select[disabled],
[contenteditable=true][disabled]{
    background: #f6f6f6;
}
[contenteditable]{ outline: none; }
input.invalid,
select.invalid,
textarea.invalid,
[contenteditable=true].invalid {
    border-bottom: solid 2px red;
}
input:focus.valid,
select:focus.valid,
textarea:focus.valid,
[contenteditable=true]:focus.valid {
    border-bottom: solid 2px green;
}
.fieldset-item {
    border: solid 1px #aaa;
}
.fieldset-item span {
    padding: 12px 16px;
    width: 44px;
    font-family: Roboto;
    font-size: 18px;
    font-weight: 300;
    color: #666;
}
.fieldset-item input {
    margin-left: -5px;
    width: calc(100% - 44px);
}
.fieldset.first .fieldset-item .fa-minus-circle,
.fieldset .fieldset-item .fa-plus-circle {
    display: none;
}
.fieldset.last .fieldset-item .fa-plus-circle {
    display: block;
}
.fieldset-item .fa-minus-circle {
    left: -55px;
    top: -26px;
    width: 30px;
    height: 30px;
}
.fieldset-item .fa-plus-circle {
    right: -50px;
    top: -26px;
    width: 30px;
    height: 30px;
}

.fieldset-date input,
.fieldset-date select {
    line-height: 24px;
}
.fieldset-date label {
    display: block;
}
.fieldset-date select {
    margin-left: -6px;
}
.fieldset-date input {
    width: 95px;
}
.fieldset-date select:first-of-type {
    width: 270px;
}
.fieldset-date select:last-of-type {
    width: 80px;
}

form p.currency-before::before {
    content: "$";
    display: block;
    position: absolute;
    left: 30px;
    top: 36px;
}


form.transparent input,
form.transparent textarea,
form.transparent section {
    background: transparent;
    border-width: 2px;
}


form.round label {
    display: inline-block;
    margin: 0 0 5px 23px;
    font-size: 12px;
}
form.round input,
form.round textarea,
form.round select,
form.round button,
form.round .btn {
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 16px;
    box-sizing: border-box;
}
form.round .btn {
    min-width: 180px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}
form.round textarea {
    padding-top: 18px;
    min-height: 140px;
    border-radius: 25px;
}
.toggle-btn {
    padding: 9px 0;
    min-width: 180px;
    height: 40px;
    border-radius: 50px;
}
.toggle-btn .knob {
    width: 78px;
    height: 24px;
    border-radius: 20px;
}
.toggle-btn .signal {
    width: 238px;
    left: 12px;
    top: 6px;
}
.toggle-btn .signal span:first-child {
    margin-right: -7px;
    width: 80px;
}
.toggle-btn.off .signal {
    left: -72px;
}
.toggle-btn .signal span:last-child {
    width: 74px;
}
.toggle-btn.off .knob {
    background: #cccccc;
}
.toggle-btn.off {
    border-color: #ccc;
}
form.round input.disabled {
    background: #f6f6f6 !important;
    color: #666 !important;
}
form.round .fa-lock {
    position: absolute;
    right: 22px;
    top: 39px;
}
.field-row {
    display: inline-block;
    margin-right: -4px;
    padding: 0 10px;
    box-sizing: border-box;
}
.field-row:first-child {
    padding-left: 0px;
}
.field-row:last-child {
    padding-right: 0px;
}
.field-row.field-row-2 {
    width: 50%;
}
.field-row-3 {
    width: 33.33%;
}
form.round li .apps {
    display: none;
}
form.round li.open .apps {
    display: block;
}
form.round ul li:not(:first-child) {
    margin-top: 30px;
    padding-top: 30px;
    border-top: solid 1px #ccc;
}
form.round .apps > div {
    border-bottom: solid 1px #ddd;
}
form.round .apps .fa {
    width: 25px;
    text-align: center;
}
form .address .field-row:first-child {
    width: 75%;
}
form .address .field-row:last-child {
    width: 25%;
}
form.round .field-row .response-icon{
    right: 30px;
    top: 13px;
}
form.round .date {
    display: inline-block;
    width: 100%;
    border: solid 1px #aaa;
    border-radius: 50px;
    overflow: hidden;
}
form.round .date input,form.round .date select {
    border: none;
    border-radius: 0px;
}
form.round .date.full-date input, form.round .date.full-date select {
    margin-right: -4px;
    width: 33.33%;
}
form.round .date select {
    border-left: solid 1px #aaa;
    border-right: solid 1px #aaa;
}

.checkbox label {
    margin: 0px !important;
}



dd,dl,dt{
    margin: 0px;
}
dl { width: 400px }
dt { float: left; width: 200px; overflow: hidden; white-space: nowrap }
dd { float: left; width: 200px; overflow: hidden }

dt span:after { content: " .................................................................................." }



.add-content .calc {
    right: 20px;
    top: 209px;
}
.add-content .calc li span {
    width: 100px;
}



#content,
#footer{
    position: relative;
    z-index: 0;
}

#header {
    padding: 20px;
    z-index: 5;
    left: 0px;
    top: 0px;
}
#header .left img {
    width: 30px;
}
#header .left .icon {
    display: inline-block;
    width: 40px;
}
#header .right {
    position: absolute;
    right: 0px;
    top: 0px;
}

#settings {
    z-index: 10;
    background: #eee;
    right: -373px;
    top: 0px;
    width: 373px;
    height: 100%;
    border-left: solid 1px #ddd;
    box-shadow: 0 0 60px 0 rgba(0,0,0,0.15);
}
#settings.open{
    right: 0px;
}
#settings form {
    display: none;
}
#settings .selected form {
    display: block;
}

#sidebar {
    width: 300px;
}
#sidebar[data-position=right]{
    right: -300px;
}

[ob-click]{
    cursor: pointer;
}

.cursor-text{
    cursor: text;
}



.an-lin-03{
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
}



.box{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.db{
    display: block;
}
.di{
    display: inline;
}
.dib{
    display: inline-block;
}

.rel{
    position: relative;
}
.abs{
    position: absolute;
}
.fix{
    position: fixed;
}

.abs-center {
    margin: auto;
    left: 0px;
    right: 0px;
}

.pos-left{
    left: 0px;
}
.pos-right{
    right: 0px;
}
.pos-top {
    top: 0px;
}
.pos-bottom{
    bottom: 0px;
}

.z-0{ z-index: 0; }
.z-1{ z-index: 1; }
.z-2{ z-index: 2; }
.z-3{ z-index: 3; }
.z-4{ z-index: 4; }
.z-5{ z-index: 5; }
.z-6{ z-index: 6; }
.z-7{ z-index: 7; }
.z-8{ z-index: 8; }
.z-9{ z-index: 9; }
.z-10{ z-index: 10; }

.float-left{
    float: left;
}
.float-right{
    float: right;
}
.float-clear{
    float: none;
    clear: both;
}

.tbl{
    display: table;
}
.table-cell{
    display: table-cell;
}

.bg{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.full-width{
    width: 100%;
}
.half-width{
    width: 50%;
}
.third-width{
    width: 33.33%;
}
.quarter-width{
    width: 25%;
}
.fifth-width{
    width: 20%;
}
.width-30-percent {
    width: 30%;
}
.width-70-percent {
    width: 70%;
}

.width-auto{ width: auto; }
.width-300{ width: 300px; }
.width-400{ width: 400px; }
.width-500{ width: 500px; }
.width-600{ width: 600px; }
.width-700{ width: 700px; }
.width-800{ width: 800px; }
.width-900{ width: 900px; }
.width-950{ width: 950px; }
.width-1024{ width: 1024px; }

.width-minus-10{ width: calc(100% - 10px); }
.width-minus-20{ width: calc(100% - 20px); }
.width-minus-30{ width: calc(100% - 30px); }
.width-minus-40{ width: calc(100% - 40px); }
.width-minus-50{ width: calc(100% - 50px); }
.width-minus-60{ width: calc(100% - 60px); }
.width-minus-70{ width: calc(100% - 70px); }
.width-minus-80{ width: calc(100% - 80px); }
.width-minus-90{ width: calc(100% - 90px); }
.width-minus-100{ width: calc(100% - 100px); }

.height-minus-10{ height: calc(100% - 10px); }
.height-minus-20{ height: calc(100% - 20px); }
.height-minus-30{ height: calc(100% - 30px); }
.height-minus-40{ height: calc(100% - 40px); }
.height-minus-50{ height: calc(100% - 50px); }
.height-minus-60{ height: calc(100% - 60px); }
.height-minus-70{ height: calc(100% - 70px); }
.height-minus-80{ height: calc(100% - 80px); }
.height-minus-90{ height: calc(100% - 90px); }
.height-minus-100{ height: calc(100% - 100px); }

.full-height{ height: 100%; }
.height-auto{ height: auto; }

.margin-10{ margin: 10px; }
.margin-20{ margin: 20px; }
.margin-30{ margin: 30px; }
.margin-40{ margin: 40px; }
.margin-50{ margin: 50px; }
.margin-60{ margin: 60px; }
.margin-70{ margin: 70px; }
.margin-80{ margin: 80px; }
.margin-90{ margin: 90px; }
.margin-100{ margin: 100px; }
.margin-left-1{ margin-left: 1px; }
.margin-left-3{ margin-left: 3px; }
.margin-left-5{ margin-left: 5px; }
.margin-left-8{ margin-left: 8px; }
.margin-left-10{ margin-left: 10px; }
.margin-left-20{ margin-left: 20px; }
.margin-left-30{ margin-left: 30px; }
.margin-left-40{ margin-left: 40px; }
.margin-left-50{ margin-left: 50px; }
.margin-left-60{ margin-left: 60px; }
.margin-left-70{ margin-left: 70px; }
.margin-left-80{ margin-left: 80px; }
.margin-left-90{ margin-left: 90px; }
.margin-left-100{ margin-left: 100px; }
.margin-left-1-{ margin-left: -1px; }
.margin-left-3-{ margin-left: -3px; }
.margin-left-5-{ margin-left: -5px; }
.margin-left-10-{ margin-left: -10px; }
.margin-left-20-{ margin-left: -20px; }
.margin-left-30-{ margin-left: -30px; }
.margin-left-40-{ margin-left: -40px; }
.margin-left-50-{ margin-left: -50px; }
.margin-left-60-{ margin-left: -60px; }
.margin-left-70-{ margin-left: -70px; }
.margin-left-80-{ margin-left: -80px; }
.margin-left-90-{ margin-left: -90px; }
.margin-left-100-{ margin-left: -100px; }
.margin-right-1{ margin-right: 1px; }
.margin-right-3{ margin-right: 3px; }
.margin-right-5{ margin-right: 5px; }
.margin-right-8{ margin-right: 8px; }
.margin-right-10{ margin-right: 10px; }
.margin-right-20{ margin-right: 20px; }
.margin-right-30{ margin-right: 30px; }
.margin-right-40{ margin-right: 40px; }
.margin-right-50{ margin-right: 50px; }
.margin-right-60{ margin-right: 60px; }
.margin-right-70{ margin-right: 70px; }
.margin-right-80{ margin-right: 80px; }
.margin-right-90{ margin-right: 90px; }
.margin-right-100{ margin-right: 100px; }
.margin-right-1-{ margin-right: -1px; }
.margin-right-3-{ margin-right: -3px; }
.margin-right-5-{ margin-right: -5px; }
.margin-right-10-{ margin-right: -10px; }
.margin-right-20-{ margin-right: -20px; }
.margin-right-30-{ margin-right: -30px; }
.margin-right-40-{ margin-right: -40px; }
.margin-right-50-{ margin-right: -50px; }
.margin-right-60-{ margin-right: -60px; }
.margin-right-70-{ margin-right: -70px; }
.margin-right-80-{ margin-right: -80px; }
.margin-right-90-{ margin-right: -90px; }
.margin-right-100-{ margin-right: -100px; }
.margin-top-1{ margin-top: 1px; }
.margin-top-3{ margin-top: 3px; }
.margin-top-5{ margin-top: 5px; }
.margin-top-8{ margin-top: 8px; }
.margin-top-10{ margin-top: 10px; }
.margin-top-20{ margin-top: 20px; }
.margin-top-30{ margin-top: 30px; }
.margin-top-40{ margin-top: 40px; }
.margin-top-50{ margin-top: 50px; }
.margin-top-60{ margin-top: 60px; }
.margin-top-70{ margin-top: 70px; }
.margin-top-80{ margin-top: 80px; }
.margin-top-90{ margin-top: 90px; }
.margin-top-100{ margin-top: 100px; }
.margin-top-3-{ margin-top: -3px; }
.margin-top-5-{ margin-top: -5px; }
.margin-top-10-{ margin-top: -10px; }
.margin-top-20-{ margin-top: -20px; }
.margin-top-30-{ margin-top: -30px; }
.margin-top-40-{ margin-top: -40px; }
.margin-top-50-{ margin-top: -50px; }
.margin-top-60-{ margin-top: -60px; }
.margin-top-70-{ margin-top: -70px; }
.margin-top-80-{ margin-top: -80px; }
.margin-top-90-{ margin-top: -90px; }
.margin-top-100-{ margin-top: -100px; }
.margin-bottom-1{ margin-bottom: 1px; }
.margin-bottom-3{ margin-bottom: 3px; }
.margin-bottom-5{ margin-bottom: 5px; }
.margin-bottom-8{ margin-bottom: 8px; }
.margin-bottom-10{ margin-bottom: 10px; }
.margin-bottom-20{ margin-bottom: 20px; }
.margin-bottom-30{ margin-bottom: 30px; }
.margin-bottom-40{ margin-bottom: 40px; }
.margin-bottom-50{ margin-bottom: 50px; }
.margin-bottom-60{ margin-bottom: 60px; }
.margin-bottom-70{ margin-bottom: 70px; }
.margin-bottom-80{ margin-bottom: 80px; }
.margin-bottom-90{ margin-bottom: 90px; }
.margin-bottom-100{ margin-bottom: 100px; }
.margin-bottom-3-{ margin-bottom: -3px; }
.margin-bottom-5-{ margin-bottom: -5px; }
.margin-bottom-10-{ margin-bottom: -10px; }
.margin-bottom-20-{ margin-bottom: -20px; }
.margin-bottom-30-{ margin-bottom: -30px; }
.margin-bottom-40-{ margin-bottom: -40px; }
.margin-bottom-50-{ margin-bottom: -50px; }
.margin-bottom-60-{ margin-bottom: -60px; }
.margin-bottom-70-{ margin-bottom: -70px; }
.margin-bottom-80-{ margin-bottom: -80px; }
.margin-bottom-90-{ margin-bottom: -90px; }
.margin-bottom-100-{ margin-bottom: -100px; }
.margin-horiz-10{
    margin-left: 10px;
    margin-right: 10px;
}
.margin-horiz-20{
    margin-left: 20px;
    margin-right: 20px;
}
.margin-horiz-30{
    margin-left: 30px;
    margin-right: 30px;
}
.margin-horiz-40{
    margin-left: 40px;
    margin-right: 40px;
}
.margin-horiz-50{
    margin-left: 50px;
    margin-right: 50px;
}
.margin-horiz-60{
    margin-left: 60px;
    margin-right: 60px;
}
.margin-horiz-70{
    margin-left: 70px;
    margin-right: 70px;
}
.margin-horiz-80{
    margin-left: 80px;
    margin-right: 80px;
}
.margin-horiz-90{
    margin-left: 90px;
    margin-right: 90px;
}
.margin-horiz-100{
    margin-left: 100px;
    margin-right: 100px;
}
.margin-vert-5{
    margin-top: 5px;
    margin-bottom: 5px;
}
.margin-vert-10{
    margin-top: 10px;
    margin-bottom: 10px;
}
.margin-vert-20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.margin-vert-30{
    margin-top: 30px;
    margin-bottom: 30px;
}
.margin-vert-40{
    margin-top: 40px;
    margin-bottom: 40px;
}
.margin-vert-50{
    margin-top: 50px;
    margin-bottom: 50px;
}
.margin-vert-60{
    margin-top: 60px;
    margin-bottom: 60px;
}
.margin-vert-70{
    margin-top: 70px;
    margin-bottom: 70px;
}
.margin-vert-80{
    margin-top: 80px;
    margin-bottom: 80px;
}
.margin-vert-90{
    margin-top: 90px;
    margin-bottom: 90px;
}
.margin-vert-100{
    margin-top: 100px;
    margin-bottom: 100px;
}

.padding-0{
    padding: 0px;
}
.padding-10{
    padding: 10px;
}
.padding-20{
    padding: 20px;
}
.padding-30{
    padding: 30px;
}
.padding-40{
    padding: 40px;
}
.padding-50{
    padding: 50px;
}
.padding-60{
    padding: 60px;
}
.padding-70{
    padding: 70px;
}
.padding-80{
    padding: 80px;
}
.padding-90{
    padding: 90px;
}
.padding-100{
    padding: 100px;
}
.padding-left-0{ padding-left: 0px; }
.padding-left-1{ padding-left: 1px; }
.padding-left-3{ padding-left: 3px; }
.padding-left-5{ padding-left: 5px; }
.padding-left-8{ padding-left: 8px; }
.padding-left-10{ padding-left: 10px; }
.padding-left-20{ padding-left: 20px; }
.padding-left-30{ padding-left: 30px; }
.padding-left-40{ padding-left: 40px; }
.padding-left-50{ padding-left: 50px; }
.padding-left-60{ padding-left: 60px; }
.padding-left-70{ padding-left: 70px; }
.padding-left-80{ padding-left: 80px; }
.padding-left-90{ padding-left: 90px; }
.padding-left-100{ padding-left: 100px; }
.padding-right-0{padding-right: 0px; }
.padding-right-1{ padding-right: 1px; }
.padding-right-3{ padding-right: 3px; }
.padding-right-5{ padding-right: 5px; }
.padding-right-8{ padding-right: 8px; }
.padding-right-10{ padding-right: 10px; }
.padding-right-20{ padding-right: 20px; }
.padding-right-30{ padding-right: 30px; }
.padding-right-40{ padding-right: 40px; }
.padding-right-50{ padding-right: 50px; }
.padding-right-60{ padding-right: 60px; }
.padding-right-70{ padding-right: 70px; }
.padding-right-80{ padding-right: 80px; }
.padding-right-90{ padding-right: 90px; }
.padding-right-100{ padding-right: 100px; }
.padding-top-1{ padding-top: 1px; }
.padding-top-3{ padding-top: 3px; }
.padding-top-5{ padding-top: 5px; }
.padding-top-8{ padding-top: 8px; }
.padding-top-10{ padding-top: 10px; }
.padding-top-20{ padding-top: 20px; }
.padding-top-30{ padding-top: 30px; }
.padding-top-40{ padding-top: 40px; }
.padding-top-50{ padding-top: 50px; }
.padding-top-60{ padding-top: 60px; }
.padding-top-70{ padding-top: 70px; }
.padding-top-80{ padding-top: 80px; }
.padding-top-90{ padding-top: 90px; }
.padding-top-100{ padding-top: 100px; }
.padding-top-3-{ padding-top: -3px; }
.padding-top-5-{ padding-top: -5px; }
.padding-top-10-{ padding-top: -10px; }
.padding-top-20-{ padding-top: -20px; }
.padding-top-30-{ padding-top: -30px; }
.padding-top-40-{ padding-top: -40px; }
.padding-top-50-{ padding-top: -50px; }
.padding-top-60-{ padding-top: -60px; }
.padding-top-70-{ padding-top: -70px; }
.padding-top-80-{ padding-top: -80px; }
.padding-top-90-{ padding-top: -90px; }
.padding-top-100-{ padding-top: -100px; }
.padding-bottom-1{ padding-bottom: 1px; }
.padding-bottom-3{ padding-bottom: 3px; }
.padding-bottom-5{ padding-bottom: 5px; }
.padding-bottom-8{ padding-bottom: 8px; }
.padding-bottom-10{ padding-bottom: 10px; }
.padding-bottom-20{ padding-bottom: 20px; }
.padding-bottom-30{ padding-bottom: 30px; }
.padding-bottom-40{ padding-bottom: 40px; }
.padding-bottom-50{ padding-bottom: 50px; }
.padding-bottom-60{ padding-bottom: 60px; }
.padding-bottom-70{ padding-bottom: 70px; }
.padding-bottom-80{ padding-bottom: 80px; }
.padding-bottom-90{ padding-bottom: 90px; }
.padding-bottom-100{ padding-bottom: 100px; }
.padding-bottom-3-{ padding-bottom: -3px; }
.padding-bottom-5-{ padding-bottom: -5px; }
.padding-bottom-10-{ padding-bottom: -10px; }
.padding-bottom-20-{ padding-bottom: -20px; }
.padding-bottom-30-{ padding-bottom: -30px; }
.padding-bottom-40-{ padding-bottom: -40px; }
.padding-bottom-50-{ padding-bottom: -50px; }
.padding-bottom-60-{ padding-bottom: -60px; }
.padding-bottom-70-{ padding-bottom: -70px; }
.padding-bottom-80-{ padding-bottom: -80px; }
.padding-bottom-90-{ padding-bottom: -90px; }
.padding-bottom-100-{ padding-bottom: -100px; }
.padding-horiz-0 { padding-left: 0px; padding-right: 0px; }
.padding-horiz-5{ padding-left: 5px; padding-right: 5px; }
.padding-horiz-10{ padding-left: 10px; padding-right: 10px; }
.padding-horiz-20{ padding-left: 20px; padding-right: 20px; }
.padding-horiz-30{ padding-left: 30px; padding-right: 30px; }
.padding-horiz-40{ padding-left: 40px; padding-right: 40px; }
.padding-horiz-50{ padding-left: 50px; padding-right: 50px; }
.padding-horiz-60{ padding-left: 60px; padding-right: 60px; }
.padding-horiz-70{ padding-left: 70px; padding-right: 70px; }
.padding-horiz-80{ padding-left: 80px; padding-right: 80px; }
.padding-horiz-90{ padding-left: 90px; padding-right: 90px; }
.padding-horiz-100{ padding-left: 100px; padding-right: 100px; }
.padding-vert-2 {
    padding-top: 2px;
    padding-bottom: 2px;
}
.padding-vert-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}
.padding-vert-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}
.padding-vert-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}
.padding-vert-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}
.padding-vert-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}
.padding-vert-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}
.padding-vert-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}
.padding-vert-70 {
    padding-top: 70px;
    padding-bottom: 70px;
}
.padding-vert-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.padding-vert-90 {
    padding-top: 90px;
    padding-bottom: 90px;
}
.padding-vert-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}


.dot-5 {
    width: 5px;
    height: 5px;
    border-radius: 100%;
}
.dot-10 {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.trans-md{
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.valign {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    opacity: 0;
    margin: 0 -5px 0 0;
    padding: 0px;
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    border: none;
}
.valign-before::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: -5px;
    height: 100%;
}
.valign-content {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.valign-top{ vertical-align: top; }
.valign-bottom { vertical-align: bottom; }

.left{
    text-align: left;
}
.right{
    text-align: right;
}
.center {
    text-align: center;
}
.justify{
    text-align: justify;
}

.font-extra-small{
    font-size: 10px;
    font-weight: 300;
}
.font-small{
    font-size: 13px;
    font-weight: 300;
}
.font-normal{
    font-size: 18px;
    font-weight: 300;
}
.font-large{
    font-size: 40px;
    font-weight: 100;
    line-height: 32px;
}
.font-100{
    font-weight: 100;
}
.font-200{
    font-weight: 200;
}
.font-300{
    font-weight: 300;
}
.font-400{
    font-weight: 400;
}
.font-500{
    font-weight: 500;
}
.font-600{
    font-weight: 600;
}
.font-capitalize{
    text-transform: capitalize;
}
.font-uppercase{
    text-transform: uppercase;
}
.font-italic {
    font-style: italic;
}
.font-spacing-1{
    letter-spacing: 1px;
}
.font-spacing-2{
    letter-spacing: 2px;
}
.font-spacing-3{
    letter-spacing: 3px;
}
.font-spacing-4{
    letter-spacing: 4px;
}
.font-spacing-5{
    letter-spacing: 5px;
}
.font-spacing-7{
    letter-spacing: 7px;
}
.font-spacing-10{
    letter-spacing: 10px;
}


.btn {
    display: inline-block;
    padding: 12px 48px;
    font-size: 16px;
    font-weight: normal;
    border-radius: 5px;
    border: solid 2px transparent;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
.btn.dark{
    background: #333;
    border-color: #333;
}
.btn.orange{
    background: #D23227;
    border-color: #D23227;
}
.btn.white-h:hover{
    background: #fff;
    border-color: #fff;
    color: #666;
}
.btn-small {
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}
.btn.btn-small-text {
    padding: 15px 30px;
    font-size: 12px;
}
.btn-round{
    border-radius: 25px;
}

.border-white,
.border-white-h:hover,
.border-white-s.selected,
.border-white-s.selected:hover,
.selected .border-white-s,
.selected:hover .border-white-s{
    border-color: #fff;
}
.border-light,
.border-light-h:hover,
.border-light-s.selected,
.border-light-s.selected:hover,
.selected .border-light-s,
.selected:hover .border-light-s{
    border-color: #ccc;
}
.border-extra-light,
.border-extra-light-h:hover,
.border-extra-light-s.selected,
.border-extra-light-s.selected:hover,
.selected .border-extra-light-s,
.selected:hover .border-extra-light-s{
    border-color: #f6f6f6;
}
.border-orange,
.border-orange-h:hover,
.border-orange-s.selected,
.border-orange-s.selected:hover,
.selected .border-orange-s,
.selected:hover .border-orange-s{
    border-color: #D23227;
}
.border-normal,
.border-normal-h:hover,
.border-normal-s.selected,
.border-normal-s.selected:hover,
.selected .border-normal-s,
.selected:hover .border-normal-s{
    border-color: #888;
}
.border-dark-light,
.border-dark-light-h:hover,
.border-dark-light-s.selected,
.border-dark-light-s.selected:hover,
.selected .border-dark-light-s,
.selected:hover .border-dark-light-s{
    border-color: #555;
}

.border-none{
    border: none;
}
.border-1px{
    border-style: solid;
    border-width: 1px;
}
.border-2px{
    border-style: solid;
    border-width: 2px;
}
.border-3px {
    border-style: solid;
    border-width: 3px;
}
.border-4px {
    border-style: solid;
    border-width: 4px;
}
.border-5px {
    border-style: solid;
    border-width: 5px;
}
.border-10px {
    border-style: solid;
    border-width: 10px;
}
.border-20px {
    border-style: solid;
    border-width: 20px;
}
.border-30px {
    border-style: solid;
    border-width: 30px;
}


.border-left-1px {
    border-left-style: solid;
    border-left-width: 1px;
}

.border-top-1px {
    border-top-style: solid;
    border-top-width: 1px;
}
.border-top-2px {
    border-top-style: solid;
    border-top-width: 2px;
}
.border-top-4px {
    border-top-style: solid;
    border-top-width: 4px;
}

.border-bottom-1px {
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.border-bottom-2px {
    border-bottom-style: solid;
    border-bottom-width: 2px;
}
.border-bottom-3px {
    border-bottom-style: solid;
    border-bottom-width: 3px;
}
.border-bottom-4px {
    border-bottom-style: solid;
    border-bottom-width: 4px;
}
.border-bottom-5px {
    border-bottom-style: solid;
    border-bottom-width: 5px;
}
.border-right-1px {
    border-right-style: solid;
    border-right-width: 1px;
}

.border-radius-0px{
    border-radius: 0px;
}
.border-radius-2px{
    border-radius: 2px;
}
.border-radius-3px{
    border-radius: 3px;
}
.border-radius-4px{
    border-radius: 4px;
}
.border-radius-5px{
    border-radius: 5px;
}
.border-radius-full {
    border-radius: 100%;
}

.border-style-dashed{
    border-style: dashed;
}
.border-style-inset{
    border-style: inset;
}
.border-style-outset{
    border-style: outset;
}
.border-style-dotted{
    border-style: dotted;
}
.border-style-double{
    border-style: double;
}



.opacity-01,.opacity-01-h:hover{ opacity: 0.1; }
.opacity-02,.opacity-02-h:hover{ opacity: 0.2; }
.opacity-03,.opacity-03-h:hover{ opacity: 0.3; }
.opacity-04,.opacity-04-h:hover{ opacity: 0.4; }
.opacity-05,.opacity-05-h:hover{ opacity: 0.5; }
.opacity-06,.opacity-06-h:hover{ opacity: 0.6; }
.opacity-07,.opacity-07-h:hover{ opacity: 0.7; }
.opacity-08,.opacity-08-h:hover{ opacity: 0.8; }
.opacity-09,.opacity-09-h:hover{ opacity: 0.9; }
.opacity-1,.opacity-1-h:hover{ opacity: 1; }
.opacity-01-s.selected,.selected .opacity-01-s{ opacity: 0.1; }
.opacity-02-s.selected,.selected .opacity-02-s{ opacity: 0.2; }
.opacity-03-s.selected,.selected .opacity-03-s{ opacity: 0.3; }
.opacity-04-s.selected,.selected .opacity-04-s{ opacity: 0.4; }
.opacity-05-s.selected,.selected .opacity-05-s{ opacity: 0.5; }
.opacity-06-s.selected,.selected .opacity-06-s{ opacity: 0.6; }
.opacity-07-s.selected,.selected .opacity-07-s{ opacity: 0.7; }
.opacity-08-s.selected,.selected .opacity-08-s{ opacity: 0.8; }
.opacity-09-s.selected,.selected .opacity-09-s{ opacity: 0.9; }
.opacity-1-s.selected,.selected .opacity-1-s{ opacity: 1; }


.bg-black,
.bg-black-h:hover,
.bg-black-s.selected,
.bg-black-s.selected:hover,
.selected .bg-black-s,
.selected:hover .bg-black-s{
    background: #000;
}
.bg-dark,
.bg-dark-h:hover,
.bg-dark-s.selected,
.bg-dark-s.selected:hover,
.selected .bg-dark-s,
.selected:hover .bg-dark-s{
    background: #333;
}
.bg-normal,
.bg-normal-h:hover,
.bg-normal-s.selected,
.bg-normal-s.selected:hover,
.selected .bg-black-s,
.selected:hover .bg-black-s{
    background: #888;
}
.bg-light,
.bg-light-h:hover,
.bg-light-s.selected,
.bg-light-s.selected:hover,
.selected .bg-light-s,
.selected:hover .bg-light-s{
    background: #ccc;
}
.bg-extra-light,
.bg-extra-light-h:hover,
.bg-extra-light-s.selected,
.bg-extra-light-s.selected:hover,
.selected .bg-light-s,
.selected:hover .bg-light-s{
    background: #f6f6f6;
}
.bg-white,
.bg-white-h:hover,
.bg-white-s.selected,
.bg-white-s.selected:hover,
.selected .bg-white-s,
.selected:hover .bg-white-s{
    background: #fff;
}
.bg-orange,
.bg-orange-h:hover,
.bg-orange-s.selected,
.bg-orange-s.selected:hover,
.selected .bg-orange-s,
.selected:hover .bg-orange-s{
    background: #D23227;
}
.bg-red,
.bg-red-h:hover,
.bg-red-s.selected,
.bg-red-s.selected:hover,
.selected .bg-red-s,
.selected:hover .bg-red-s{
    background: red;
}
.bg-green,
.bg-green-h:hover,
.bg-green-s.selected,
.bg-green-s.selected:hover,
.selected .bg-green-s,
.selected:hover .bg-green-s{
    background: #00d000;
}

.bg-transparent,
.bg-transparent-h:hover,
.bg-transparent-s.selected,
.bg-transparent-s.selected:hover,
.selected .bg-transparent-s,
.selected:hover .bg-transparent-s{
    background: transparent;
}


.color-dark,
.color-dark-h:hover,
.color-dark-h:hover *,
.color-dark-s.selected,
.color-dark-s.selected:hover,
.color-dark-s.selected:hover *,
.selected .color-dark-s,
.selected:hover .color-dark-s{
    color: #333;
}
.color-normal,
.color-normal-h:hover,
.color-normal-h:hover *,
.color-normal-s.selected,
.color-normal-s.selected:hover,
.color-normal-s.selected:hover *,
.selected .color-normal-s,
.selected:hover .color-normal-s{
    color: #888;
}
.color-light,
.color-light-h:hover,
.color-light-h:hover *,
.color-light-s.selected,
.color-light-s.selected:hover,
.color-light-s.selected:hover *,
.selected .color-light-s,
.selected:hover .color-light-s{
    color: #ccc;
}
.placeholder-light::-webkit-input-placeholder{color: #ccc;}
.placeholder-light::-moz-placeholder{color: #ccc;}
.placeholder-light:-ms-input-placeholder{color: #ccc;}
.placeholder-light:-moz-placeholder{color: #ccc;}

.color-extra-light,
.color-extra-light-h:hover,
.color-extra-light-h:hover *,
.color-extra-light-s.selected,
.color-extra-light-s.selected:hover,
.color-extra-light-s.selected:hover *,
.selected .color-extra-light-s,
.selected:hover .color-extra-light-s{
    color: #f6f6f6;
}
.color-white,
.color-white-h:hover,
.color-white-h:hover *,
.color-white-s.selected,
.color-white-s.selected:hover,
.color-white-s.selected:hover *,
.selected .color-white-s,
.selected:hover .color-white-s{
    color: #fff;
}
.placeholder-white::-webkit-input-placeholder{color: #fff;}
.placeholder-white::-moz-placeholder{color: #fff;}
.placeholder-white:-ms-input-placeholder{color: #fff;}
.placeholder-white:-moz-placeholder{color: #fff;}

.color-orange,
.color-orange-h:hover,
.color-orange-h:hover *,
.color-orange-s.selected,
.color-orange-s.selected:hover,
.color-orange-s.selected:hover *,
.selected .color-orange-s,
.selected:hover .color-orange-s{
    color: #D23227;
}
.color-red,
.color-red-h:hover,
.color-red-h:hover *,
.color-red-s.selected,
.color-red-s.selected:hover,
.color-red-s.selected:hover *,
.selected .color-red-s,
.selected:hover .color-red-s{
    color: red;
}
.color-green,
.color-green-h:hover,
.color-green-h:hover *,
.color-green-s.selected,
.color-green-s.selected:hover,
.color-green-s.selected:hover *,
.selected .color-green-s,
.selected:hover .color-green-s{
    color: #00d000;
}


.blur-2 {
    filter: blur(2px);
    -webkit-filter: blur(2px);
    -o-filter: blur(2px);
    -moz-filter: blur(2px);
    padding: 4px;
    left: -4px;
    top: -4px;
}
.blur-5 {
    filter: blur(5px);
    -webkit-filter: blur(5px);
    -o-filter: blur(5px);
    -moz-filter: blur(5px);
    padding: 10px;
    left: -10px;
    top: -10px;
}
.blur-10 {
    filter: blur(10px);
    -webkit-filter: blur(10px);
    -o-filter: blur(10px);
    -moz-filter: blur(10px);
    padding: 20px;
    left: -20px;
    top: -20px;
}
.blur-20 {
    filter: blur(20px);
    -webkit-filter: blur(20px);
    -o-filter: blur(20px);
    -moz-filter: blur(20px);
    padding: 40px;
    left: -40px;
    top: -40px;
}


i.icon-extra-small {
    font-size: 20px;
}
i.icon-small {
    font-size: 40px;
}
i.icon-normal {
    font-size: 60px;
}
i.icon-large {
    font-size: 80px;
}

.icon-map-marker {
    width: 47px;
    height: 47px;
    font-size: 24px;
    text-align: center;
    line-height: 47px;
}

.disabled {
    background: #ccc !important;
    border-color: #ccc !important;
    color: #fff !important;
}



.loader{
    background: rgba(255,255,255,0.85);
    z-index: 10;
    left: 0px;
    top: 0px;
}


.logo-small,
.logo-small * {
    height: 30px;
    width: auto;
}
.logo-normal,
.logo-normal * {
    height: 40px;
    width: auto;
}
.logo-large,
.logo-large * {
    height: 80px;
    width: auto;
}
.logo-extra-large,
.logo-extra-large * {
    height: 150px;
    width: auto;
}



.submenu .right {
    right: 20px;
}
.submenu .right i {
    padding-left: 5px;
}




.options-tiles ul li {
    vertical-align: top;
    width: 150px;
    height: 150px;
}

.edit-form {
    margin: auto;
    width: 50%;
}


.avatar-extra-small {
    width: 30px;
    height: 30px;
}
.avatar-small {
    width: 60px;
    height: 60px;
}
.avatar-normal {
    width: 100px;
    height: 100px;
}
.avatar-large {
    width: 150px;
    height: 150px;
}



.person {
    position: relative;
    width: 100%;
}
.person  .pic {
    width: 100px;
}
.person .details {
    width: calc(100% - 150px);
}
.person .details .title h1 {
    font-size: 24px;
    font-weight: 300;
}



.ob_page.login .brand img {
    width: 120px;
    height: auto;
}
.ob-login{
    width: 400px;
}




.invoices > .current .top,
.invoices > .current .main {
    width: calc(100% - 300px);
    min-height: 120px;
}
.invoices > .current .top .right{
    right: 0px;
    top: 0px;
}
.invoices > .current .top .right > div {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}
.invoices > .current .main .valign{
    min-height: 120px;
}
.invoices > .current .details .font-small div font {
    width: 110px;
}
.invoices > .current .total-due{
    right: 0px;
    top: 0px;
    width: 300px;
    height: 100%;
}

.invoice-list li:hover span font{
    background: white;
    color: #D23227;
}


.edit-post {
    min-width: 800px;
}


.file {
    vertical-align: top;
    width: 100px;
}
.file .img {
    height: 100px;
}
.file span {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.select-feature-file .file:hover {
    background-color: #eee;
}
.select-feature-file .file.selected{
    background-color: #d23227;
    color: #fff;
}
.upload-area .dz-default.dz-message{
    height: 100%;
}
.upload-area .dz-default.dz-message::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.upload-area .dz-default.dz-message span{
    font-size: 32px;
    font-weight: 100;
    text-transform: capitalize;
}
.upload-area .dz-preview{
    display: inline-block;
    vertical-align: middle;
    background: #333;
    left: 0px;
    top: 0px;
}
.upload-area .dz-image{
    display: inline-block;
    margin: 30px;
}
.upload-area .dz-progress{
    display: inline-block;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}
.upload-area .dz-progress .dz-upload {
    display: block;
    background: #666;
    height: 2px;
}
.upload-area .dz-error-message{
    font-size: 12px;
    display: none;
}
.upload-area .dz-success-mark,
.upload-area .dz-error-mark{
    display: none;
    margin: 30px;
}
.upload-area .dz-preview.dz-complete .dz-progress{
    display: none;  
}
.upload-area .dz-preview.dz-success .dz-success-mark{
    display: block;
}
.upload-area .dz-preview.dz-error .dz-error-mark{
    display: block;
}

.uploader .valign-content {
    min-width: 770px;
}
.uploader .upload-area{
    z-index: 5;
    left: 0px;
    top: 0px;
}
.upload-area::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}

.overflow { overflow: hidden; }
.overflow-x { overflow-x: hidden; }
.text-overflow{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-overflow-2-lines{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-overflow-3-lines{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.text-overflow-4-lines{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.text-overflow-5-lines{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}
.scrollbar{ background: #fff; }

.scrollbar-default::-webkit-scrollbar,
.scrollbar-dark::-webkit-scrollbar,
.scrollbar::-webkit-scrollbar { width: 10px; }

.scrollbar::-webkit-scrollbar-track { background: #fff; }

.scrollbar-default::-webkit-scrollbar-thumb  { background-color: #D23227; border: solid 2px transparent; border-radius: 5px; }
.scrollbar-dark::-webkit-scrollbar-thumb  { background-color: #D23227; border: solid 2px #333; border-radius: 5px; }
.scrollbar::-webkit-scrollbar-thumb { background-color: #D23227; border: solid 2px #fff; border-radius: 5px; }


.col-float-2-alter li:nth-child(odd) > div {
    float: left;
}
.col-float-2-alter li:nth-child(even) > div {
    float: right;
}
.col-float-2-alter li:after{
    content: "";
    display: block;
    float: none;
    clear: both;
}


.table li span {
    margin-left: -4px;
    padding: 8px;
}
.table li > span:first-child {
    padding-left: 20px;
}
.table li span:last-of-type {
    padding-right: 20px;
}

.table-col-2 li span{ width: calc(100% / 2); }
.table-col-3 li span{ width: calc(100% / 3); }
.table-col-4 li span{ width: calc(100% / 4); }
.table-col-5 li span{ width: calc(100% / 5); }
.table-col-6 li span{ width: calc(100% / 6); }
.table-col-7 li span{ width: calc(100% / 7); }
.table-col-8 li span{ width: calc(100% / 8); }
.table-col-9 li span{ width: calc(100% / 9); }
.table-col-10 li span{ width: calc(100% / 10); }
.table-col-11 li span{ width: calc(100% / 11); }


.tab{
    display: table;
}


.table-2-col{
    display: table;
}
.table-2-col > *{
    display: table-cell;
}


.col-2 {
    column-count: 2;
    column-gap: 100px;
}
.col-2 > * {
    margin: 0 0 20px 0;
}


.popup{
    z-index: 10;
    left: 0px;
    top: 0px;
}
.popup > .close{
    opacity: 0;
    background: rgba(0,0,0,0.7);
    z-index: 0;
    left: 0px;
    top: 0px;
}
.popup > .content{
    z-index: 5;
}
.popup[data-position=top] > .content{
    margin: auto;
    left: 0px;
    right: 0px;
    width: 100%;
    max-width: 800px;
    max-height: calc(100% - 100px);
}
.popup[data-position=center] > .content{
    margin: auto;
    left: 0px;
    right: 0px; 
    top: 50%;
    width: 100%;
    max-width: 500px;
    max-height: calc(100% - 100px);
    transform: translateY(-50%);
}
.popup[data-position=center] > .content.preview-email{
    max-width: 660px;
}
.popup[data-position=center] > .content.preview-email .email-members,
.popup[data-position=center] > .content.members-list .email-members {
    padding-bottom: 100px;
    overflow-x: hidden;
    box-sizing: border-box;
}

.file-details .image {
    width: 100px;
    height: 100px;
}
.file-details .image .img {
    height: 100px;
}


.add-person-form .feature-image {
    height: 250px;
}


/* ROW LIST */
.row-list-search {
    border-radius: 30px;
}
.row-list {
    height: calc(100% - 62px);
}
.row-list.bottom-bar{
    height: calc(100% - 118px);
}
.row-list .details {
    width: calc(100% - 40px);
}
/* END ROW LIST */



/* MESSAGES */
.message-section {
    left: 401px;
    top: 0px;
    width: calc(100% - 401px);
}
.message-section > div{
    display: none;
}
.message-section > div.show{
    display: block;
}
.message-section .compose .details div div span {
    width: 74px;
}
.message-section .compose [contenteditable] {
    height: calc(100% - 181px);
}
.message-section .compose .activity-bar {
    height: 56px;
}
/* END MESSAGES */



/* SOCIAL ACCOUNTS */
.social-accounts .account:hover .avatar-large {
    border-color: #d23227;
}
.social-accounts .account:hover .name {
    color: #d23227;
}
.social-accounts .id .avatar-normal .fa-stack {
    top: 33px;
}
.social-accounts .status .stat {
    width: 130px;
}
.social-accounts .publish {
    height: calc(100% - 150px);
}
.social-accounts textarea{
    height: 100px;
    resize: none;
}
/* END SOCIAL ACCOUNTS */




.hide{
    display: none;
}
.off {
    background: #f6f6f6;
    border-color: #ccc;
}
.off .fa {
    color: #666;
}


.document-viewer{
    display: none;
}


/* ------------------------------------------------------------------------------ */
/* --------------------------- COMPONENTS & TEMPLATES --------------------------- */
/* ------------------------------------------------------------------------------ */

/* --------------------------- DASHBOARD ----------------------------- */
/* --------------------------- CLOUD STORAGE ----------------------------- */
.status-bar .stats > div > div:first-child {
    font-size: 30px;
}
.status-bar .search {
    margin-top: 26px;
    margin-right: 20px;
}
.status-bar .search input {
    padding: 4px 34px 4px 14px;
    font-size: 12px;
}
.status-bar .search .fa {
    padding: 6px 13px;
}

.directory-list li {
    margin: 0 40px 40px 0;
    width: 230px;
    height: 60px;
}
.directory-list li.folder > .left {
    margin: 0 8px;
    width: 35px;
    height: 35px;
}
.directory-list li.file > .left {
    float: left;
    width: 60px;
}
.directory-list li.file > .right {
    float: left;
    width: calc(100% - 60px);
    text-align: left;
}
.directory-list li.file > .right .details .title {
    white-space: nowrap;
}
/* --------------------------- END | CLOUD STORAGE ----------------------------- */

/* --------------------------- WEBSITE MANAGER ----------------------------- */
#website-manager .menu {
    background: #212121;
    width: 403px;
}
#website-manager .menu ul li:not(.selected) {
    background: #2a2a2a;
}
#website-manager .menu ul li:hover:not(.selected) {
    background: #333;
}
#website-manager .menu ul li .fa {
    right: 20px;
}
#website-manager .menu ul li:hover .fa,
#website-manager .menu ul li.selected .fa{
    opacity: 1;
}
#website-manager .main-form{
    background: #f6f6f6;
    left: 403px;
    width: calc(100% - 403px);
}
#website-manager .main-form .form ul li > .dib.color input {
    padding: 8px 13px;
    width: 150px;
    font-size: 12px;
}
#website-manager .main-form .form ul li > .dib.color input[type=color] {
    background: none;
    margin: 0px;
    padding: 0px;
    height: 40px;
    border: 1px;
}
#website-manager .main-form .form ul li > .dib.color div {
    width: 150px;
    height: 32px;
}

#website-manager .event-list li {
    width: 300px;
}
#website-manager .event-list li .img {
    width: 70px;
    height: 70px;
}
#website-manager .event-list li > div:not(.img) {
    width: calc(100% - 100px);
}

#website-manager .main-form .form .img .feature-image {
    top: 0px;
}
/* --------------------------- END | WEBSITE MANAGER ----------------------------- */


/* --------------------------- SURVEYS --------------------------- */

/* --------------------------- END | SURVEYS --------------------------- */


/* --------------------------- ANALYTICS ----------------------------- */
.analytics-module{
    height: 400px;
    font-size: 11px;
}
.analytics-module .head{
    height: 35px;
}
.analytics-module .module{
    height: calc(100% - 35px);
}

.pie-chart-module{
    width: 400px;
}
.module-2-third{
    width: calc(100% - 440px);
}
/* --------------------------- END | ANALYTICS ----------------------------- */
/* --------------------------- END | DASHBOARD ----------------------------- */


/* --------------------------------------------------------------- */
/* --------------------------- BANNERS --------------------------- */
/* --------------------------------------------------------------- */
/* BANNER */
.ob-banner{
    display: none;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.ob-banner .preloader {
    position: absolute;
    z-index: 0;
    left: 0px;
    top: 0px;
}
.ob-banner ul{
    position: relative;
    z-index: 1;
    width: 10000px;
}
.ob-banner ul li{
    float: left;
}
.ob-banner .navigation {
    z-index: 1;
    bottom: 0px;
}

.ob-banner-01{
    height: 500px;
}
/* END BANNER */



/* BANNER - FULLSCREEN 01 */
#banner-fullscreen-01 {
    min-height: 500px;
}
#banner-fullscreen-01 .banner-content{
    height: calc(100% - 90px);
}
#banner-fullscreen-01 .bottom{
    height: 60px;
}
#banner-fullscreen-01 .banner-content .decor {
    width: 100px;
    height: 5px;
}
#banner-fullscreen-01 .banner-content .btn{
    font-size: 12px;
    font-weight: 500;
}
#banner-fullscreen-01 .bottom .btn {
    min-width: 150px;
}

.btn-round{
    border-radius: 100px;
}
/* END | BANNER - FULLSCREEN 01 */


/* BANNER TEXT AND IMAGE */
#banner-text-and-image,
#banner-text-and-subtitle{
    height: 500px;
}
#banner-text-and-image .bg,
#banner-text-and-subtitle .bg {
    top: 0px;
    height: 100%;
}
/* END | BANNER TEXT AND IMAGE */

/* BANNER HQ TEXT AND FIND 01 */
#banner-hq-text-find-01{
    height: 700px;
}
/* END | BANNER HQ TEXT AND FIND 01 */


/* BANNER - TITLE AND BUTTON 02 */
#banner-title_and_button-02 {
    height: 600px;
}
#banner-title_and_button-02 .slides {
    width: 500%;
}
#banner-title_and_button-02 .content .details {
    width: 380px;
    bottom: 80px;
}
#banner-title_and_button-02 .content .details h2 {
    font-size: 60px;
    line-height: 50px;
}
#banner-title_and_button-02 .content .details .cta .btn {
    padding-left: 0px;
    padding-right: 0px;
    width: 182px;
    font-weight: 500;
}
#banner-title_and_button-02 .content .nav {
    right: 80px;
    bottom: 80px;
    width: 400px;
}
#banner-title_and_button-02 .content .nav div {
    width: 40px;
    height: 4px;
}
#banner-title_and_button-02 .content .nav div.selected {
    height: 8px;
}
#banner-title_and_button-02 .shadow {
    box-shadow: inset 0px -400px 800px -100px rgba(63, 59, 58, 0.9);
}
/* END | BANNER - TITLE AND BUTTON 02 */


/* BANNER PLUS TWO TILES */
#banner-plus-2-tiles > .rel {
    height: 260px;
}
#banner-plus-2-tiles > div > .rel {
    height: 500px;
}
/* END | BANNER PLUS TWO TILES */


/* BANNER - INFO 01 */
#banner-info-01 {
    height: 600px;
}
/* END | BANNER - INFO 01 */


/* BANNER - EVENTS 01 */
#events-banner-01,
#events-banner-02 {
    height: 565px;
}
#events-banner-01 .bg,
#events-banner-02 .bg {
    top: 0px;
}
#events-banner-01 .slides,
#events-banner-02 .slides {
    top: 0px;
    width: 500%;
}
#events-banner-01 .bottom .left h2 {
    width: 180px;
    line-height: 32px;
}
#events-banner-01 .bottom .right {
    right: 50px;
    bottom: 50px;
}
#events-banner-01 .bottom .right .navigation span {
    margin: 0 5px;
}
#events-banner-01 .bottom .right .navigation span.selected {
    box-shadow: 0 0 0 3px;
}
/* END | BANNER - EVENTS 01 */


#events-banner-02 .content {
    height: calc(100% - 40px);
}
#events-banner-02 .content > .details {
    width: 800px;
}
#events-banner-02 .content > .details .left::after {
    content: "";
    position: absolute;
    background: #fff;
    margin: auto;
    width: 1px;
    height: 100%;
    left: 0px;
    right: 0px;
    top: 0px;
}
#events-banner-02 .content > .details .left h2,
#events-banner-02 .content > .details .left .info {
    width: calc(50% - 60px);
}
#events-banner-02 .content > .details .left h2 {
    line-height: 34px;
}
#events-banner-02 .content > .abs {
    bottom: 40px;
}
#events-banner-02 .navigation span {
    margin: 0 5px;
}
#events-banner-02 .navigation span.selected {
    box-shadow: 0 0 0 3px;
}

#events-banner-02 #stats-bar-01 .left {
    text-align: center;
}
#events-banner-02 #stats-bar-01 .left > span {
    display: none;
}
#events-banner-02 #stats-bar-01 .left > div{
    text-align: left;
}



#events-banner-03 {
    min-height: 500px;
}
#events-banner-03 .content h1 {
    line-height: 51px;
}
#events-banner-03 .content > .right .btn::before,
#events-tiles-two .view::before {
    content: "";
    position: absolute;
    background: #fff;
    margin: auto 20px auto 0;
    right: 100%;
    top: 0px;
    bottom: 0px;
    width: 30%;
    height: 2px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}
#events-banner-03 .content > .right .btn:hover::before,
#events-tiles-two .view:hover::before {
    width: 50%;
}


#events-banner-04 {
    height: 550px;
}
#events-banner-04 .details .btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 12px;
    font-weight: 500;
}


.events-banner-05 {
    height: 700px;
}



#events-card-list-01 ul li {
    margin: 32px;
    width: 380px;
    height: 550px;
}
#events-card-list-01 .title h3 {
    font-size: 26px;
}
#events-card-list-01 .title .decor {
    position: absolute;
    bottom: -20px;
    width: 180px;
    height: 10px;
}
#events-card-list-01 ul li > .pos-bottom h4 {
    margin: 0px;
    font-size: 22px;
}
#events-card-list-01 ul li > .pos-bottom .font-small {
    line-height: 28px;
}
#events-card-list-01 ul li .pos-bottom::before {
    content: "";
    display: block;
    position: relative;
    background: white;
    margin-bottom: 20px;
    height: 2px;
}




/* BANNER 3 PANEL ODD 01 */
#banner-3-panel-odd-01 {
    height: 600px;
}
#banner-3-panel-odd-01 > .float-left:first-child {
    width: calc(100% - 250px);
}
#banner-3-panel-odd-01 > .float-left:first-child > .valign-content {
    margin-left: 300px;
    width: calc(100% - 300px);
}
#banner-3-panel-odd-01 > .float-left:first-child > .valign-content > div h1 {
    font-size: 90px;
    line-height: 120px;
    letter-spacing: 20px;
}
#banner-3-panel-odd-01 > .float-left:first-child > .valign-content > div div {
    width: 270px;
    letter-spacing: 2px;
    line-height: 28px;
}
#banner-3-panel-odd-01 > .float-left:nth-child(2) {
    width: 250px;
}
#banner-3-panel-odd-01 > .float-left:nth-child(2) > div:first-child {
    width: 100%;
    height: calc(100% - 250px);
}
#banner-3-panel-odd-01 > .float-left:nth-child(2) > div:last-child {
    background: #111;
    width: 250px;
    height: 250px;
}
/* END | BANNER 3 PANEL ODD 01 */

/* BANNER WELCOME TEXT 01 */
.banner-welcome-text-01 .symbol {
    right: 350px;
}
.banner-welcome-text-01 {
    height: 600px;
}
.banner-welcome-text-01 h2 font:last-child {
    line-height: 40px;
}
.banner-welcome-text-01 .decor {
    width: 115px;
    height: 5px;
}
.banner-welcome-text-01 .text,
.banner-welcome-text-01 .learn-more {
    height: 100px;
}
.banner-welcome-text-01 .text .valign-content {
    line-height: 12px;
    letter-spacing: 1px;
}
.banner-welcome-text-01 .learn-more .btn {
    padding: 20px 70px;
    font-size: 12px;
}
/* END | BANNER WELCOME TEXT 01*/
/* ------------------------------------------------------------------- */
/* --------------------------- END | BANNERS --------------------------- */
/* ------------------------------------------------------------------- */



/* ----------------------------------------------------------------- */
/* --------------------------- BILLBOARD --------------------------- */
/* ----------------------------------------------------------------- */
/* BILLBOARD OFF POSITION TEXT 01 */
#billboard-off-position-text-01 {
    height: 400px;
}
/* END | BILLBOARD OFF POSITION TEXT 01 */
/* ----------------------------------------------------------------------- */
/* --------------------------- END | BILLBOARD --------------------------- */
/* ----------------------------------------------------------------------- */



/* --------------------------------------------------------------- */
/* --------------------------- HEADERS --------------------------- */
/* --------------------------------------------------------------- */
/* HEADER 02 */
.header-02 #header,
.header-transparent-01 #header {
    padding: 0 0 0 30px;
    height: 60px;
}
.header-02 #header .logo-normal *,
.header-transparent-01 #header .logo-normal * {
    height: 30px;
}
.header-02 #content {
    padding-top: 60px;
}
.header-02 #header > .abs-center,
.header-transparent-01 #header > .abs-center {
    top: 20px;
}
/* END | HEADER 02 */

/* HEADER 05 */
.header-02 #header.header-05 {
    padding: 15px 30px;
    height: auto;
}
/* END |HEADER 05 */
/* ------------------------------------------------------------------- */
/* --------------------------- END | HEADERS --------------------------- */
/* ------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* --------------------------- CALL TO ACTION --------------------------- */
/* ---------------------------------------------------------------------- */
/* CALL TO ACTION 01 */
#call-to-action-01 .img {
    width: 235px;
    height: 235px;
    border-radius: 20px;
    box-shadow: 0 0 0 5px #ddd;
}
#call-to-action-01 .text {
    width: calc(100% - 244px);
}
/* END | CALL TO ACTION 01 */


/* CALL TO ACTION 02 */
#call-to-action-02 > div:not(.center-section) {
    width: 380px;
}
#call-to-action-02 h2 {
    line-height: 34px;
}
#call-to-action-02 h2 font {
    letter-spacing: 0.5px;
}
#call-to-action-02 .btn {
    font-size: 12px;
}
/* END | CALL TO ACTION 02 */
/* ---------------------------------------------------------------------------- */
/* --------------------------- END | CALL TO ACTION --------------------------- */
/* ---------------------------------------------------------------------------- */


/* INFO - COMBO 2 TILES 01 */
#info-combo-2-tiles {
    height: 1130px;
}
#info-combo-2-tiles .bg-image {
    top: 530px;
    height: 600px;
}
#info-combo-2-tiles .left-section {
    width: 333px;
}
#info-combo-2-tiles .right-section {
    width: 716px;
    height: 500px;
}
#info-combo-2-tiles .left-section .img {
    height: 333px;
}
#info-combo-2-tiles .text div {
    letter-spacing: 0.1px;
    line-height: 17px;
}
#info-combo-2-tiles .text span {
    letter-spacing: 1px;
}
#info-combo-2-tiles .text {
    width: 333px;
}
#info-combo-2-tiles .content {
    margin-top: 56px;
}
#info-combo-2-tiles .quote::before {
    content: "";
    display: inline-block;
    position: relative;
    margin: 50px 0;
    background: white;
    width: 2px;
    height: 125px;
}
#info-combo-2-tiles .quote span {
    letter-spacing: 0.5px;
}
/* END | INFO - COMBO 2 TILES 01 */


/* INFO - HALF BY 2 */
#info-half-by-2{
    height: 600px;
}
#info-half-by-2 > div{
    display: table-cell;
    height: 600px;
}
#info-half-by-2 > div > .half-width {
    height: 600px;
}
#info-half-by-2 .half-width .font-large:first-child,
#info-half-by-2 .half-width .font-large:last-child {
    margin-top: 107px;
    font-size: 180px;
}
#info-half-by-2 .half-width .font-uppercase {
    width: 80%;
}
#info-half-by-2 > div:last-child .font-small {
    line-height: 30px;
}
/* END | INFO - HALF BY 2 */


/* INFO 2 PANEL IMAGE OFF 02 */
.info-2-panel-image-off-02 {
    position: relative;
    height: 700px;
}
.info-2-panel-image-off-02 .img {
    width: 60%;
}
.info-2-panel-image-off-02 .info {
    width: 60%;
}
.info-2-panel-image-off-02 .info .title {
    letter-spacing: 8px;
}
.info-2-panel-image-off-02 .info .text {
    letter-spacing: 2px;
    line-height: 18px;
}
/* END | INFO 2 PANEL IMAGE OFF 02 */


#info-square-img-2-buttons{
    height: 500px;
}
#info-square-img-2-buttons .text .font-extra-small {
    line-height: 14px;
    letter-spacing: 2px;
}


#four-items-01-pagination .entries li {
    width: 260px;
    height: 400px;
}

#four-items-01-pagination .entries li .img {
    height: 180px;
}

#four-items-01-pagination .entries li .font-small {
    line-height: 20px;
}


#info-list-4-by-4 li:not(.float-clear) {
    height: 420px;
}
#info-list-4-by-4 li .font-small {
    line-height: 24px;
}


#staff-single-card-01 {
    height: 750px;
}
#staff-single-card-01 > .valign-content {
    width: 720px;
    height: 550px;
}
#staff-single-card-01 > .valign-content .full-height {
    width: 360px;
    height: 550px;
}
#staff-single-card-01 > .valign-content .full-height .font-small {
    line-height: 28px;
}
#staff-single-card-01 > .valign-content .full-height > .abs {
    right: -80px;
}
#staff-single-card-01 > .valign-content .full-height > .abs > div {
    width: 80px;
    height: 80px;
    font-size: 28px;
}


#staff-card-list-01 ul li:not(.float-clear) {
    width: 300px;
    height: 410px;
}
#staff-card-list-01 ul li .img {
    height: 300px;
}
#staff-card-list-01 ul li .img::before {
    content: "";
    display: block;
    position: relative;
    left: 46px;
    top: 46px;
    width: calc(100% - 100px);
    height: calc(100% - 100px);
    border: solid 7px rgba(255,255,255,0.7);
    border-radius: 100%;
}
#staff-card-list-01 ul li .color-normal {
    padding: 33px;
}
#staff-card-list-01 ul li .color-normal .font-normal {
    margin-bottom: -5px;
    font-size: 22px;
}
#staff-card-list-01 ul li .color-normal .font-extra-small {
    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------------- */
/* --------------------------- BIO -------------------------------- */
/* ---------------------------------------------------------------- */
/* BIO - 2 PANE 01 */
#bio-2-pane-01 {
    min-height: 600px;
}
#bio-2-pane-01 .title {
    font-size: 24px;
}
#bio-2-pane-01 .text {
    height: calc(100% - 129px);
}
#bio-2-pane-01 .text > div {
    width: calc(100% - 5px);
}
#bio-2-pane-01 .signature {
    width: auto;
    height: 53px;
}
/* END | BIO - 2 PANE 01 */

/* BIO - 2 PANE SQUARE 01 */
#bio-2-pane-square-01 .content {
    width: 1000px;
}
#bio-2-pane-square-01 .content .img {
    width: 650px;
}
#bio-2-pane-square-01 .content .text {
    right: 0px;
    width: 600px;
}
#bio-2-pane-square-01 .content .text > span {
    top: -30px;
}
#bio-2-pane-square-01 .content .text .title span {
    right: 30px;
    top: 56px;
}
/* END | BIO - 2 PANE SQUARE 01 */
/* ---------------------------------------------------------------------- */
/* --------------------------- END | BIO -------------------------------- */
/* ---------------------------------------------------------------------- */


/* ------------------------------------------------------------------- */
/* --------------------------- EVENTS -------------------------------- */
/* ------------------------------------------------------------------- */
#events-tiles-two > .float-left{
    height: 350px;
}


#single-event-01 .section {
    margin-right: -5px;
}
#single-event-01 #stats-bar-01 .font-large {
    font-size: 30px;
}


#event-single-02 h2 {
    font-size: 30px;
    font-weight: 500;
    line-height: 26px;
}
#event-single-02 .btn {
    padding: 16px 40px;
    font-size: 12px;
}
#event-single-02 > .table-cell {
    height: 420px;
}
#event-single-02 > .table-cell > .font-small {
    line-height: 24px;
}


#events-3-panel .title .decor {
    width: 240px;
    height: 10px;
}
#events-3-panel .title span {
    top: 38px;
    right: 50px;
}
#events-3-panel ul li .img {
    height: 480px;
}
#events-3-panel ul li:nth-child(even):not(.no-bg) > div:last-child {
    background: #414141;
}
#events-3-panel ul li .btn {
    letter-spacing: 2px;
}
#events-3-panel ul li.odd-item{
    height: 632px;
}
#events-3-panel ul li.two-thirds-width {
    width: 66.6%;
}
/* ------------------------------------------------------------------------- */
/* --------------------------- END | EVENTS -------------------------------- */
/* ------------------------------------------------------------------------- */


/* ------------------------------------------------------------------- */
/* --------------------------- SERVICES -------------------------------- */
/* ------------------------------------------------------------------- */
/* SERVICE LIST 01 */
#service-list-01 ul li .bottom span:first-child {
    width: 70px;
}
/* END | SERVICE LIST 01 */


#services-main-service-01
 > div > .table-cell:first-child .font-small {
    letter-spacing: 1px;
}
#services-main-service-01 > div > .table-cell h1 {
    margin-left: -4px;
    font-size: 80px;
    line-height: 72px;
}
#services-main-service-01 > div > .table-cell .font-normal {
    letter-spacing: 4px;
}
#services-main-service-01 .table-cell:last-child .abs > div:last-child {
    padding: 13px 0;
}

#services-main-service-01 .table-cell:last-child .right .avatar-small {
    margin: 0 5px;
    width: 45px;
    height: 45px;
}

#tile-list-01 ul li:nth-child(-n + 3) {
    border-bottom: solid 2px #ccc;
}
#tile-list-01 ul li:nth-child(3n + 2) {
    border-left: solid 2px #ccc;
    border-right: solid 2px #ccc;
}
#tile-list-02 ul li:nth-child(-n + 3) {
    border-bottom-style: solid;
    border-bottom-width: 2px;
}
#tile-list-02 ul li:nth-child(3n + 2) {
    border-left-style: solid;
    border-left-width: 2px;
    border-right-style: solid;
    border-right-width: 2px;
}
/* ------------------------------------------------------------------- */
/* --------------------------- SERVICES -------------------------------- */
/* ------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* --------------------------- LOCATIONS -------------------------------- */
/* ---------------------------------------------------------------------- */
/* LOCATIONS - 2 TILE 01 */
#locations-2-tile-01 .bg {
    top: 0px;
}
#locations-2-tile-01{
    min-height: 700px;
}
#locations-2-tile-01 .bg {
    top: 0px;
}
#locations-2-tile-01 .tile {
    margin: 0 50px;
    width: 380px;
    height: 480px;
}
#locations-2-tile-01 .tile > div {
    width: calc(100% - 20px);
    bottom: 20px;
}
/* END | LOCATIONS - 2 TILE 01 */
/* -------------------------------------------------------------------------- */
/* --------------------------- END | LOCATIONS --------------------------- */
/* -------------------------------------------------------------------------- */


/* ------------------------------------------------------------------ */
/* --------------------------- CONTACT US --------------------------- */
/* ------------------------------------------------------------------ */
/* CONTACT 02 */
#contact-02{
    min-height: 500px;
}
#contact-02 .address {
    width: 180px;
}
#contact-02 .right-section{
    width: 450px;
}
/* END | CONTACT 02 */


/* CONTACT 03 */
#contact-03 > .rel{
    display: table;
}
#contact-03 > .rel > div {
    display: table-cell;
}
#contact-03 > .rel > div:first-child {
    width: 350px;
}
#contact-03 > .rel > div:last-child {
    width: calc(100% - 350px);
}
/* END | CONTACT 03 */



#contact-04 {
    height: 800px;
}
#contact-04 .content {
    height: 700px;
}
#contact-04 .content .contact {
    width: 350px;
}
#contact-04 .content .contact h2,
#contact-04 .content .form h2 {
    font-size: 24px;
}
#contact-04 .content .contact .address {
    font-size: 16px;
}
#contact-04 .content .contact .address .btn {
    padding: 12px 24px;
    font-size: 12px;
}
#contact-04 .content .contact .abs .avatar-small {
    width: 45px;
    height: 45px;
}
#contact-04 .content .form {
    width: 600px;
}

#contact-04 .content .form form input,#contact-04 .content .form form textarea {
    background: transparent;
    font-size: 14px;
    border: 0px;
    border-bottom: solid 1px white;
    resize: none;
}
#contact-04 .content .form form .table-cell.half-width {
    width: 300px;
}
#contact-04 .content .form form textarea {
    height: 170px;
}
/* ---------------------------------------------------------------------- */
/* --------------------------- END | CONTACT US --------------------------- */
/* ---------------------------------------------------------------------- */


/* -------------------------------------------------------------- */
/* --------------------------- DONATE --------------------------- */
/* -------------------------------------------------------------- */
/* DONATE 01 */
#donate-01 form .currency * {
    font-size: 60px;
}
#donate-01 form .currency input {
    width: calc(100% - 60px);
    border-color: #ddd;
}
/* END | DONATE 01 */


.donate_knob {
    position: absolute !important;
    margin: auto !important;
    padding: 0px !important;
    left: 0px;
    right: 0px;
    top: 130px;
}
/* -------------------------------------------------------------------- */
/* --------------------------- END | DONATE --------------------------- */
/* -------------------------------------------------------------------- */


/* ---------------------------------------------------------------------------- */
/* --------------------------- SERVICES (OFFERINGS) --------------------------- */
/* ---------------------------------------------------------------------------- */
/* SERVICE OFFERINGS 01 */
#service-offerings-01 > div:nth-child(odd) .title::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: rgba(255,255,255,0.5);
    margin-left: 20px;
    width: calc(100% - 370px);
    height: 1px;
}
#service-offerings-01 > div:nth-child(odd) .title::before {
    content: "";
    background: rgba(255,255,255,0.5);
    position: absolute;
    margin-right: 44px;
    right: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
}
#service-offerings-01 > div:nth-child(even) .title::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: rgba(255,255,255,0.5);
    margin-right: 20px;
    width: calc(100% - 370px);
    height: 1px;
}
#service-offerings-01 > div:nth-child(even) .title::after{
    content: "";
    background: rgba(255,255,255,0.5);
    position: absolute;
    margin-left: 44px;
    left: 0px;
    top: 0px;
    width: 1px;
    height: 100%;
}
/* END | SERVICE OFFERINGS 01 */
/* ---------------------------------------------------------------------------------- */
/* --------------------------- END | SERVICES (OFFERINGS) --------------------------- */
/* ---------------------------------------------------------------------------------- */




/* ---------------------------------------------------------------------------------- */
/* ------------------------------------- VIDEOS ------------------------------------- */
/* ---------------------------------------------------------------------------------- */
.video-aspect-ratio{
    padding-bottom: 56.25%;
    height: 0;
}
.featured-video h1 {
    line-height: 46px;
    width: 250px;
}
.video-list > .title {
    letter-spacing: 5px;
}
.video-list .video {
    width: 300px;
}
.video-list .video .description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/* ---------------------------------------------------------------------------------- */
/* ---------------------------------- END | VIDEOS ---------------------------------- */
/* ---------------------------------------------------------------------------------- */



/* -------------------------------------------------------------------- */
/* --------------------------- CHURCH LISTS --------------------------- */
/* -------------------------------------------------------------------- */
/* CHURCH LIST 01 */
#church-list-01 .avatar {
    width: 200px;
    height: 200px;
}
/* END | CHURCH LIST 01 */
/* -------------------------------------------------------------------- */
/* --------------------------- END | CHURCH LISTS --------------------- */
/* -------------------------------------------------------------------- */



/* -------------------------------------------------------------------- */
/* --------------------------- PERSONAL DATA --------------------------- */
/* -------------------------------------------------------------------- */
#view-personal-data .entry:last-child,
#view-personal-data .entry .connected-organizations-entry:last-child,
#view-payment-history-data .entry:last-child{
    margin: 0px;
    padding: 0px;
    border: none;
}
/* -------------------------------------------------------------------- */
/* ------------------------ END | PERSONAL DATA ----------------------- */
/* -------------------------------------------------------------------- */


/* --------------------------------------------------------------- */
/* --------------------------- COLUMNS --------------------------- */
/* --------------------------------------------------------------- */
/* EVENTS - 2 COLUMNS 01 */
#events-2-column li {
    margin-bottom: 60px;
    height: 250px;
}
#events-2-column li:last-child{
    margin: 0px;
}
#events-2-column li .top .right .marker {
    width: 47px;
    height: 47px;
    font-size: 24px;
    text-align: center;
    line-height: 47px;
}
#events-2-column li .bottom {
    bottom: 30px;
}
#events-2-column .col-float-2-alter li:nth-child(even) > div:last-child .right {
    text-align: left;
}
/* END | EVENTS - 2 COLUMNS 01 */
/* ------------------------------------------------------------------- */
/* --------------------------- END | COLUMNS --------------------------- */
/* ------------------------------------------------------------------- */



/* --------------------------------------------------------------- */
/* --------------------------- CONTENT --------------------------- */
/* --------------------------------------------------------------- */
/* GENERAL INFO 02 */
#general-info-02 .btn {
    width: 120px;
    font-size: 12px;
}
/* END | GENERAL INFO 02 */

/* INFO TWO COLUMNS BLOCK IMAGE 01 */
#info-2-columns-block-image-01 .buttons .btn {
    width: 150px;
}
/* END | INFO TWO COLUMNS BLOCK IMAGE 01 */

/* INFO TWO PANEL IMAGE OFF 01 */
#info-2-panel-image-off-01 > div {
    height: 600px;
}
#info-2-panel-image-off-01 > div .float-left div {
    height: 300px;
}
/* END | INFO TWO PANEL IMAGE OFF 01 */
/* --------------------------------------------------------------------- */
/* --------------------------- END | CONTENT --------------------------- */
/* --------------------------------------------------------------------- */


/* --------------------------------------------------------------- */
/* --------------------------- TILES --------------------------- */
/* --------------------------------------------------------------- */
/* MULTI-TILES 01 */
#multi-tiles-01[data-num="1"] > div:first-child {
    width: 100%;
    height: 400px;
}

#multi-tiles-01[data-num="2"] > div:first-child {
    width: 70%;
    height: 350px;
}
#multi-tiles-01[data-num="2"] > div:nth-child(2) {
    width: 30%;
    height: 350px;
}

#multi-tiles-01[data-num="3"] > div:first-child {
    width: 100%;
    height: 450px;
}
#multi-tiles-01[data-num="3"] > div:first-child .content > div {
    display: inline-block;
    vertical-align: middle;
    margin: 0 40px 0 0;
    padding-right: 40px;
    max-width: 350px;
    text-align: left;
    border-right: solid 1px #fff;
}
#multi-tiles-01[data-num="3"] > div:nth-child(2) {
    width: 70%;
    height: 400px;
}
#multi-tiles-01[data-num="3"] > div:nth-child(3) {
    width: 30%;
    height: 400px;
}

#multi-tiles-01 > div:last-child {
    float: none;
    clear: both;
}
/* END | MULTI-TILES 01 */
/* --------------------------------------------------------------- */
/* --------------------------- END | TILES --------------------------- */
/* --------------------------------------------------------------- */


/* STATS BAR 01 */
#stats-bar-01 .left div > span {
    font-size: 30px;
}
#stats-bar-01 .left div > div {
    font-size: 12px;
    line-height: 12px;
}
#stats-bar-01 .right .search input {
    background: transparent;
    padding: 6px 16px;
}
#stats-bar-01 .right .search .fa {
    padding: 7px;
    right: 6px;
    top: 1px;
    font-size: 14px;
}
/* END | STATS BAR 01 */


/* ONE BODY - TICKETS 01 */
#ob-tickets-01 .ticket-list .img {
    width: 200px;
    height: 200px;
}
#ob-tickets-01 .ticket-list li > div {
    width: 200px;
}
#ob-tickets-01 .ticket-list li .title{
    line-height: 16px;
}
/* END | ONE BODY - TICKETS 01 */


/* ---------------------------------------------------------------------------------- */
/* --------------------------- END | COMPONENTS & TEMPLATES --------------------------- */
/* ---------------------------------------------------------------------------------- */


/* ONEBODY MATRIX */
.onebody-matrix {
    background: linear-gradient(to right,#D23227,#ff6000);
}
.onebody-matrix input, .onebody-matrix textarea, .onebody-matrix select {
    background: none;
    -webkit-appearance: none;
    padding: 10px 0;
    border-top: none;
    border-left: none;
    border-right: none;
    border-radius: 0px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
.onebody-matrix input:focus.valid,
.onebody-matrix select:focus.valid,
.onebody-matrix textarea:focus.valid,
.onebody-matrix [contenteditable=true]:focus.valid {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-color: inherit;
}
.onebody-matrix input[type=color] {
    opacity: 0;
    padding: 0px !important;
    border: none;
}
.onebody-matrix textarea {
    height: 70px;
    resize: none;
}
.onebody-matrix .component-selector .fa.disabled {
    background: inherit !important;
    border: none !important;
    color: #ccc !important;
}
.onebody-matrix .component-edit-section:not(:last-child) {
    border-bottom: solid 1px rgba(255,255,255,0.4);
}
/* END | ONEBODY MATRIX */




/* ----- WEBSITE CUSTOMIZATIONS ----- */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:400,400i,700,700i,900,900i');

.serif{
    font-family: "Playfair Display";
}

h1.serif{
    line-height: 50px;
}

.font-larger{
    font-size: 30px;
}

.bg-darker{
    background-color: #191919;
}

#banner-welcome-rotate-event-text-01{
    min-height: 700px;
}
#banner-welcome-rotate-event-text-01 .subtitle {
    font-size: 24px;
}
#banner-welcome-rotate-event-text-01 .text {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0.3px;
}

#events-snippet-01 .triangle-decor.top{
    position: absolute;
    left: 0px;
    top: -100px;
    width: 0px;
    height: 0px;
    border-right: solid 1440px transparent;
    border-bottom: solid 100px #191919;
}
#events-snippet-01 .triangle-decor.bottom{
    position: absolute;
    left: 0px;
    bottom: -100px;
    width: 0px;
    height: 0px;
    border-right: solid 1440px transparent;
    border-top: solid 100px #191919;
}
#events-snippet-01 .event:nth-child(2) {
    margin-top: 54px;
}
#events-snippet-01 .event .img {
    padding: 42.5% 0;
}

#social-snippet-ob-01 .text{
    width: calc(100% - 260px);
    font-size: 30px;
    line-height: 36px;
}

#event-countdown-event-ticker-01 .subtitle{
    width: 160px;
}


#info-title-4-tiles-text-01 .text {
    font-size: 24px;
}


#staff-list-01 .profile .text{
    width: 300px;
}
#staff-list-01 .profile .bg {
    background: linear-gradient(to right,rgba(50,50,50,1),rgba(50,50,50,0));
}
#staff-list-01 .profile .img{
    display: none;
}
#staff-list-01 .profile .bg-right {
    background: linear-gradient(to left,rgba(50,50,50,1),rgba(50,50,50,0));
}


#events-banner-fullscreen-01 {
    min-height: 600px;
    max-height: 800PX;
}


#events-list-01 .heading {
    line-height: 60px;
}
#events-list-01 .heading::after {
    content: "";
    position: absolute;
    left: 135px;
    bottom: -20px;
    width: 0px;
    height: 0px;
    border-top: solid 20px black;
    border-left: solid 20px transparent;
    border-right: solid 20px transparent;
}


#event-single-03 {
    min-height: 700px;
}


#contact-05 .content {
    width: 1000px;
}
#contact-05 .content .top > div:first-child {
    width: 60%;
}
#contact-05 .content .top > div:first-child .subtitle {
    font-size: 24px;
}
#contact-05 .content .top > div:last-child {
    margin-top: 14px;
    width: 40%;
}
#contact-05 .content .bottom form > div > p:first-child {
    width: 60%;
}
#contact-05 .content .bottom form > div > p:last-child {
    width: 40%;
}
#contact-05 .content .bottom form > div > p input, #contact-05 .content .bottom form > div > p textarea {
    background: none;
    border: none;
    border-bottom: solid 1px #fff;
}
#contact-05 .content .bottom form > div > p textarea {
    height: 120px;
    resize: none;
}

@media (max-width: 1270px){
    #events-snippet-01 > .padding-horiz-20 > div:last-child {
        padding-left: 50px;
    }
}
/* ----- END | WEBSITE CUSTOMIZATIONS ----- */



@media print {
    *{
        -webkit-print-color-adjust: exact;
    }
    .ob_page > div:not(.document-viewer){
        display: none;
    }
    .document-viewer{
        display: block !important;
    }
    #header,
    .submenu,
    #footer{
        display: none;
    }
    .ob_page{
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
    }
    .header-padding{
        padding: 0px !important;
    }

    .doc-header{
        top: 0px;
        width: 100%;
        background-color: red;
        padding: 0in;
        margin: 0in;
    }
    .doc-header .logo{
        padding: 0.25in 0.5in;
    }
    .doc-header .logo img{
        width: 0.75in;
    }
    .doc-header .right{
        position: absolute;
        padding: 0.35in 0.5in;
        right: 0px;
        top: 0px;
        font-size: 13px;
        text-align: left;
    }
    .doc-header .right > div{
        margin-left: 0.5in;
    }
    .doc-page > div:not(.doc-header),
    .doc-page p,
    .doc-page hr{
        margin-left: .5in;
        margin-right: .5in;
        page-break-inside:avoid;
        page-break-after:auto;
    }
    .doc-page > div:not(.doc-header),
    .doc-page hr{
        margin-top: 0.25in;
        margin-bottom: 0.25in;
    }
    .doc-page hr{
        display: block;
        position: relative;
        background: #ccc;
        height: 1px;
        border: none;
    }
    .doc-page .invoice-items{
        padding: 0.25in 0;
    }
    .doc-page .invoice-items ul li{
        margin: 0 0 0.1in 0;
        padding: 0 0 0.1in 0;
        border-bottom: solid 1px #ddd;
    }
    .doc-page .invoice-items ul li:first-child{
        margin-top: 0.1in;
    }
    .doc-page .invoice-items ul li span:first-child{
        display: inline-block;
        width: 75%;
    }
    .doc-page .invoice-items ul li span:last-child{
        display: inline-block;
        width: 25%;
        text-align: right;
    }
}
@page {
    size: 8.5in 11in;
    margin: 0in;
}


@media(max-width: 1550px){

}

@media (max-width: 1200px){
    dl { width: 300px }
    dt { width: 150px; }
    dd { width: 150px; }


    #bio-2-pane-01 .full-width .title {
        padding: 15px 40px;
    }
    #bio-2-pane-01 .right .title {
        margin-right: 60px;
    }
    #bio-2-pane-01 .right .text {
        padding: 0 60px;
    }


    #bio-2-pane-square-01 {
        padding-left: 60px;
        padding-right: 60px;
    }
    #bio-2-pane-square-01 .content {
        width: 100%;
    }
    #bio-2-pane-square-01 .content .img {
        width: 600px;
    }
    #bio-2-pane-square-01 .content .text {
        width: 500px;
    }
    #bio-2-pane-square-01 .content .text .title h2 {
        font-size: 26px;
        font-weight: 400;
    }
    #bio-2-pane-square-01 .content .text .title span {
        top: 43px;
    }
    #bio-2-pane-square-01 .content .text .padding-vert-20 {
        padding: 5px 0;
        font-size: 16px;
    }


    #info-combo-2-tiles {
        height: 1077px;
    }
    #info-combo-2-tiles .bg-image {
        top: 477px;
    }
    #info-combo-2-tiles .left-section {
        width: 280px;
    }
    #info-combo-2-tiles .left-section .img {
        height: 280px;
    }
    #info-combo-2-tiles .text {
        width: 280px;
    }
    #info-combo-2-tiles .right-section {
        width: 610px;
        height: 448px;
    }


    #info-half-by-2 > div > .table-cell {
        display: block;
        width: 100%;
        height: 300px;
    }
    #info-half-by-2 > div:first-child {
        padding-left: 30px;
        padding-right: 30px;
    }
    #info-half-by-2 .half-width .padding-horiz-40 {
        width: 70%;
        font-size: 30px;
    }
    #info-half-by-2 > div > .table-cell h3 {
        font-size: 24px;
        line-height: 22px;
        width: 100%;
    }
    #info-half-by-2 > div:last-child .font-small {
        margin-top: 5px;
        line-height: 15px;
        font-size: 12px;
    }


    .info-2-panel-image-off-02 .img {
        width: calc(100% - 500px);
    }


    #info-square-img-2-buttons .half-width:first-child > .rel .half-width {
        margin: 0 0 0 50px;
        width: calc(100% - 50px);
    }

    #info-square-img-2-buttons .half-width:first-child > .rel .half-width span {
        padding: 0px;
    }

    #info-square-img-2-buttons .btns .half-width {
        padding: 0 0 0 20px;
    }


    #events-card-list-01 ul li {
        margin: 10px;
        width: 300px;
    }


    #event-single-02 h2 {
        width: 100%;
    }
    #event-single-02 > .table-cell:first-child > .full-width:first-child > div {
        margin: 20px 0 0 0;
        width: 100%;
    }
    #event-single-02 .btn {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }
    #event-single-02 > .table-cell > .font-small {
        line-height: 18px;
    }


    #services-main-service-01 > div > .table-cell:last-child {
        width: 30%;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs > div:last-child {
        width: 58%;
    }



    #donate-block-image-01 > .rel {
        padding: 100px 0;
    }
    #donate-block-image-01 > .rel .padding-50 {
        width: 30%;
        font-size: 14px;
    }
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) {
        width: 350px;
    }


    /* ------------------------------------------------------------------ */
    /* --------------------------- CONTACT US --------------------------- */
    /* ------------------------------------------------------------------ */
    /* CONTACT 02 */
    #contact-02 .left-section > div:not(.heading) {
        font-size: 14px;
    }
    #contact-02 .address {
        width: 150px;
        margin-right: 30px;
    }
    /* END CONTACT 02 */
    /* ---------------------------------------------------------------------- */
    /* --------------------------- END CONTACT US --------------------------- */
    /* ---------------------------------------------------------------------- */

    .banner-welcome-text-01 > .full-height > .half-width {
        padding: 0px;
        width: 550px;
    }
    .banner-welcome-text-01 > .full-height > .half-width .avatar-small {
        margin-bottom: 30px;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text {
        position: relative;
        margin-top: 30px;
    }
    .banner-welcome-text-01 > .full-height > .half-width:last-child {
        height: auto;
    }
    .banner-welcome-text-01 > .full-height > .half-width:last-child .learn-more {
        text-align: left;
    }



    /* ----- WEBSITE CUSTOMIZATIONS ----- */
    #events-snippet-01 > .padding-horiz-20 > div:first-child {
        width: 36%;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child{
        width: 64%;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div {
        width: 50%;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:last-child {
        display: none;
    }
    /* ----- END | WEBSITE CUSTOMIZATIONS ----- */
}

@media (max-width: 1072px){

    #footer-04 > .rel:first-child {
        padding-bottom: 60px;
    }

    form.round .btn, form.round button, form.round input, form.round select, form.round textarea{
        padding: 10px 18px;
        font-size: 12px;
    }

    .btn {
        padding: 12px 38px;
        font-size: 14px;
    }


    #bio-2-pane-01{
        min-height: 450px;
    }
    #bio-2-pane-01 .full-width .title {
        margin-top: 40px;
        padding: 12px 30px;
        font-size: 18px;
    }
    #bio-2-pane-01 .right .title {
        margin-top: 40px;
        padding: 12px 0;
        margin-right: 30px;
        font-size: 18px;

    }
    #bio-2-pane-01 .right .text {
        padding: 0 30px;
        height: calc(100% - 86px);
        font-size: 14px;
    }

    #bio-2-pane-square-01 {
        padding: 60px 0;
    }
    #bio-2-pane-square-01 .content .img {
        width: 50%;
    }
    #bio-2-pane-square-01 .content .text {
        width: calc(50% + 60px);
    }
    #bio-2-pane-square-01 .content .text > span {
        right: 30px;
    }



    #banner-info-01 > .half-width .half-width {
        width: 195px;
    }
    #banner-info-01 > .half-width .half-width:first-child {
        display: none;
    }


    #info-combo-2-tiles {
        height: 897px;
        padding: 0 50px;
    }
    #info-combo-2-tiles .left-section {
        width: 200px;
    }
    #info-combo-2-tiles .left-section .img {
        height: 200px;
    }
    #info-combo-2-tiles .text {
        width: 200px;
    }
    #info-combo-2-tiles .right-section {
        width: 480px;
        height: 392px;
    }
    #info-combo-2-tiles .bg-image {
        top: 297px;
    }


    .info-2-panel-image-off-02 .info {
        width: 310px;
    }
    .info-2-panel-image-off-02 .info .title {
        font-size: 40px;
        letter-spacing: 4px;
        line-height: 36px;
    }
    .info-2-panel-image-off-02 .info .text {
        letter-spacing: 1px;
    }


    #info-square-img-2-buttons{
        padding: 0px;
    }
    #info-square-img-2-buttons > .rel {
        position: initial;
    }
    #info-square-img-2-buttons .img-sq {
        width: 100% !important;
    }
    #info-square-img-2-buttons > div > .rel {
        padding: 50px;
    }
    #info-square-img-2-buttons .half-width:first-child > .rel .half-width {
        margin: 0px;
        width: 100%;
    }
    #info-square-img-2-buttons .btns {
        padding: 50px;
    }
    #info-square-img-2-buttons .btns .btn {
        padding: 15px 0;
    }


    #call-to-action-02 > div:not(.center-section) {
        width: 300px;
    }
    #call-to-action-02 h2 {
        margin-bottom: 15px;
        font-size: 30px;
        line-height: 26px;
    }
    #call-to-action-02 h2 font {
        font-size: 10px;
    }
    #call-to-action-02 .btn {
        padding: 8px 20px;
    }
    #call-to-action-02 > .center-section {
        width: 10%;
    }


    #events-card-list-01 ul li {
        width: 350px;
    }


    #event-single-02 h2 {
        font-size: 20px;
        line-height: 18px;
    }
    #event-single-02 > .table-cell:first-child > .full-width:first-child > div {
        margin-top: 15px;
    }
    #event-single-02 > .table-cell:first-child > .full-width:first-child {
        margin-bottom: 15px;
    }
    #event-single-02 > .table-cell > .font-small {
        line-height: 15px;
    }
    #event-single-02 > .table-cell:first-child .abs .valign-content {
        vertical-align: top;
        font-size: 12px;
    }


    #events-3-panel .third-width {
        width: 50%;
    }
    #events-3-panel .third-width:nth-child(3) {
        width: 100%;
    }
    #events-3-panel ul li.two-thirds-width {
        width: 50%;
        height: 650px;
    }


    .events-banner-05 {
        height: auto;
    }
    .events-banner-05::before {
        display: none;
    }
    .events-banner-05 > .valign-content {
        padding: 150px;
        width: auto;
    }


    #services-main-service-01 > div > .table-cell:first-child {
        width: 50%;
    }
    #services-main-service-01 > div > .table-cell:first-child > div:last-child {
        width: 343px;
    }
    #services-main-service-01 > div > .table-cell:last-child{
        width: 30%;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs {
        width: 100%;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs > div:first-child {
        display: block;
        margin: 0 0 18px 0;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs > div:last-child {
        width: 100%;
    }


    #tile-list-01 .width-950 {
        width: 700px;
    }
    #tile-list-01 .width-950 li div {
        font-size: 14px;
        font-weight: 500;
    }


    #contact-04 .content .form {
        width: calc(100% - 360px);
    }


    #donate-block-image-01 > .rel .padding-50 {
        width: 100%;
    }


    /* --------------------------------------------------------------- */
    /* --------------------------- COLUMNS --------------------------- */
    /* --------------------------------------------------------------- */
    /* 2 COLUMN - OVERLAP 02 */
    #two-column-overlap-02 .width-950 {
        width: 100%;
    }
    /* END | 2 COLUMN - OVERLAP 02 */

    /* 2 COLUMN - OVERLAP 02 - CPT */
    #two-column-overlap-02-cpt > ul{
        width: 100%;
    }
    /* END | 2 COLUMN - OVERLAP 02 - CPT */
    /* ------------------------------------------------------------------- */
    /* --------------------------- END COLUMNS --------------------------- */
    /* ------------------------------------------------------------------- */


    /* --------------------------------------------------------------- */
    /* --------------------------- CONTENT --------------------------- */
    /* --------------------------------------------------------------- */
    /* CONTENT 02 */
    #content-02 > div {
        padding-left: 50px;
        padding-right: 50px;
        width: auto;
    }
    /* END CONTENT 02 */
    /* ------------------------------------------------------------------- */
    /* --------------------------- END CONTENT --------------------------- */
    /* ------------------------------------------------------------------- */




    /* --------------------------------------------------------------- */
    /* --------------------------- BANNERS --------------------------- */
    /* --------------------------------------------------------------- */
    /* BANNER - FULLSCREEN 01 */
    #banner-fullscreen-01 .bottom .btn {
        padding: 5px 10px;
        font-size: 10px;
    }
    /* END | BANNER - FULLSCREEN 01 */
    /* --------------------------------------------------------------------- */
    /* --------------------------- END | BANNERS --------------------------- */
    /* --------------------------------------------------------------------- */


    /* -------------------------------------------------------------- */
    /* --------------------------- EVENTS --------------------------- */
    /* -------------------------------------------------------------- */
    /* EVENTS - BANNER 01 */
    #events-banner-01 .bottom .right {
        display: none;
    }
    /* END | EVENTS - BANNER 01 */

    /* EVENTS - 2 COLUMN */
    #events-2-column ul {
        padding-left: 50px;
        padding-right: 50px;
        width: 100%;
    }
    /* END | EVENTS - 2 COLUMN */

    /* SINGLE EVENT 01 */
    #single-event-01 .content > .valign-content {
        padding: 0 50px;
        width: 100%;
    }
    /* END | SINGLE EVENT 01 */
    /* -------------------------------------------------------------------- */
    /* --------------------------- END | EVENTS --------------------------- */
    /* -------------------------------------------------------------------- */


    /* ------------------------------------------------------------------ */
    /* --------------------------- CONTACT US --------------------------- */
    /* ------------------------------------------------------------------ */
    /* CONTACT 02 */
    #contact-02 .left-section{
        margin-right: 10px;
    }
    #contact-02 .right-section {
        width: 290px;
    }
    /* END CONTACT 02 */
    /* ---------------------------------------------------------------------- */
    /* --------------------------- END CONTACT US --------------------------- */
    /* ---------------------------------------------------------------------- */

    #join-01 .width-900 {
        width: 100%;
    }

    /* DYNAMIC FORM */
    #dynamic-form {
        padding-left: 50px;
        padding-right: 50px;
        width: 100%;
    }
    /* END | DYNAMIC FORM */




    /* ----- WEBSITE CUSTOMIZATIONS ----- */
    #banner-welcome-rotate-event-text-01 {
        padding: 50px;
    }
    #banner-welcome-rotate-event-text-01 > .padding-horiz-20 {
        padding: 0px;
    }
    #banner-welcome-rotate-event-text-01 h1 {
        font-size: 47px;
    }
    #banner-welcome-rotate-event-text-01 .subtitle {
        font-size: 20px;
    }
    #banner-welcome-rotate-event-text-01 .text {
        padding: 0px;
        width: 80%;
    }



    #events-snippet-01 {
        padding: 50px;
    }
    #events-snippet-01 > .padding-horiz-20 {
        padding: 0px;
    }
    #events-snippet-01 > .padding-horiz-20 > div:first-child {
        margin-bottom: 60px;
        width: 100%;
        text-align: center;
    }
    #events-snippet-01 > .padding-horiz-20 > div:first-child h1 {
        padding: 0px;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child {
        padding: 0px;
        width: 100%;
    }

    #events-snippet-01 > .padding-horiz-20 > div:last-child > div {
        width: 33.33%;
    }

    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:first-child {
        padding: 0 40px 0 0;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:nth-child(2) {
        padding: 0 20px;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:last-child {
        display: inline-block;
        padding: 0 0 0 40px;
    }


    #social-snippet-ob-01 .text {
        width: 100%;
    }


    #info-title-4-tiles-text-01 .tiles > div {
        width: 50%;
    }
    #info-title-4-tiles-text-01 .tiles > div:nth-child(3),
    #info-title-4-tiles-text-01 .tiles > div:last-child {
        margin-top: 70px;
    }
    #info-title-4-tiles-text-01 .tiles > div .left {
        text-align: center;
    }


    #events-banner-fullscreen-01 > div{
        padding: 50px;
    }
    #events-banner-fullscreen-01 > div > .padding-50 {
        padding: 0px;
    }


    #event-single-03 {
        padding: 50px;
        min-height: 550px;
    }
    #event-single-03 > .padding-50 {
        padding: 0px;
    }


    #contact-05 .content {
        width: 739px;
    }
    #contact-05 .content .top .valign-top:first-child h1 {
        font-size: 40px;
    }
    /* ----- END | WEBSITE CUSTOMIZATIONS ----- */
}

@media (max-width: 838px){
    dl{
        margin-top: 20px;
    }
    form.round .btn, form.round button, form.round input, form.round select, form.round textarea{
        padding: 12px 22px;
        font-size: 16px;
    }
    form.round textarea {
        padding-top: 18px;
    }
    form.round .right{
        text-align: left;
    }


    #footer-04 > .rel:last-child span {
        display: block;
        position: relative;
        left: auto;
        right: auto;
        text-align: center;
    }
    #footer-04 > .rel:last-child span:last-child {
        padding-top: 10px;
    }


    .font-large {
        font-size: 32px;
        line-height: 28px;
    }

    .btn {
        padding: 12px 28px;
    }


    .col-float-2-alter li > div {
        float: none !important;
        width: 100%;
    }
    .col-float-2-alter li > div:first-child {
        padding-bottom: 20px !important;
    }
    .col-float-2-alter li > div:last-child {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .col-float-2-alter li:last-child > div:last-child {
        padding-bottom: 40px !important;
    }


    #bio-2-pane-01{
        min-height: initial;
        height: auto !important;
    }
    #bio-2-pane-01 .left,
    #bio-2-pane-01 .right{
        float: none;
        clear: both;
        padding: 0px;
        width: 100%;
        height: auto;
        text-align: center;
    }
    #bio-2-pane-01 > .left{
        min-height: 500px;
    }
    #bio-2-pane-01 .abs.full-width{
        top: 465px;
    }
    #bio-2-pane-01 .full-width .title{
        margin: 0px;
    }
    #bio-2-pane-01 .right{
        padding: 40px 0 ;
        min-height: initial;
    }
    #bio-2-pane-01 .right .title{
        margin-top: 0px;
        margin-right: 0px;
    }
    #bio-2-pane-01 .right .text{
        padding: 0 60px;
        box-sizing: border-box;
    }

    #bio-2-pane-square-01 {
        padding: 0px;
        height: auto !important;
    }
    #bio-2-pane-square-01::before {
        content: none;
    }
    #bio-2-pane-square-01 > .abs {
        display: none;
    }
    #bio-2-pane-square-01 .content .img {
        padding: 0px;
        width: 100%;
    }
    #bio-2-pane-square-01 .content .text {
        position: relative;
        background: #eee;
        width: 100%;
    }
    #bio-2-pane-square-01 .content .text > span {
        display: none;
    }


    #banner-info-01 {
        margin-bottom: auto !important;
        padding: 30px;
        height: auto;
        min-height: initial !important;
    }
    #banner-info-01 > .half-width {
        width: 100%;
    }
    #banner-info-01 > .half-width .margin-bottom-80 {
        margin-bottom: 50px;
    }
    #banner-info-01 h3 {
        margin-bottom: 5px;
    }
    #banner-info-01 > .half-width .width-70-percent {
        width: 100%;
    }
    #banner-info-01 > .half-width .width-70-percent .half-width {
        margin-top: 50px;
        width: 50%;
    }


    #info-combo-2-tiles {
        height: auto;
    }
    #info-combo-2-tiles .bg-image {
        height: calc(100% - 497px);
        top: 497px;
    }
    #info-combo-2-tiles .left-section {
        margin: 0 0 40px 0;
        width: 100%;
    }
    #info-combo-2-tiles .left-section .img {
        height: 400px;
    }
    #info-combo-2-tiles .text {
        width: 100%;
    }
    #info-combo-2-tiles .right-section {
        width: 100%;
        height: 392px;
    }
    #info-combo-2-tiles .quote {
        margin-bottom: 50px;
    }
    #info-combo-2-tiles .quote::before {
        margin: 30px 0;
        height: 50px;
    }


    .info-2-panel-image-off-02{
        height: auto;
    }
    .info-2-panel-image-off-02 > .rel {
        padding: 50px;
        width: 100%;
    }
    .info-2-panel-image-off-02 > .rel:before {
        display: none;
    }
    .info-2-panel-image-off-02 .info {
        width: 100%;
    }
    .info-2-panel-image-off-02 .img {
        position: relative;
        padding: 50% 0;
        width: auto;
    }


    #info-square-img-2-buttons {
        height: auto;
    }
    #info-square-img-2-buttons > div {
        width: 100%;
    }
    #info-square-img-2-buttons > div > .rel .half-width {
        text-align: center;
    }
    #info-square-img-2-buttons > div > .rel .half-width h2 {
        margin-bottom: 10px;
    }
    #info-square-img-2-buttons .btns .half-width {
        padding: 0 5px;
    }


    #call-to-action-02 > div {
        margin: 0px;
        width: 100% !important;
        text-align: center;
    }
    #call-to-action-02 > .center-section {
        display: block;
    }
    #call-to-action-02 > .center-section {
        background: transparent;
        padding: 30px 0;
    }
    #call-to-action-02 > .center-section::before {
        content: "";
        display: inline-block;
        position: relative;
        background: #aaa;
        width: 4px;
        height: 70px;
    }


    #info-half-by-2 {
        height: auto;
    }
    #info-half-by-2 .half-width {
        display: block;
        width: 100%;
        height: auto;
    }


    #four-items-01-pagination .entries li {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
        height: auto;
    }
    #four-items-01-pagination .entries li .img {
        height: 300px;
    }


    #info-list-4-by-4 li:not(.float-clear) {
        width: 100%;
        height: auto;
    }


    #staff-single-card-01 {
        height: auto;
    }
    #staff-single-card-01::before {
        display: none;
    }
    #staff-single-card-01 > .valign-content {
        display: block;
        width: 100%;
        height: auto;
    }
    #staff-single-card-01 > .valign-content .table-cell {
        display: block;
        width: 100%;
        height: auto;
    }
    #staff-single-card-01 > .valign-content .table-cell:first-child {
        height: 550px;
    }
    #staff-single-card-01 > .valign-content .table-cell:last-child {
        text-align: center;
    }
    #staff-single-card-01 > .valign-content .table-cell > .abs {
        position: relative;
        width: 100%;
        right: initial;
    }
    #staff-single-card-01 > .valign-content .full-height > .abs > div {
        display: inline-block;
        margin-top: 20px;
        width: 50px;
        height: 50px;
    }
    #staff-single-card-01 > .valign-content .full-height > .abs > div .fa {
        color: #808080;
    }


    #staff-card-list-01 .title {
        padding: 0 50px;
    }


    #events-banner-04 .details {
        padding: 0px 70px;
    }


    #events-card-list-01 ul li {
        margin: 20px 0;
        width: 100%;
    }


    #event-single-02 > .table-cell {
        display: block;
        width: 100%;
        height: auto;
    }
    #event-single-02 > .table-cell > .abs {
        position: relative;
        margin-top: 20px;
        padding: 0px;
    }
    #event-single-02 > .table-cell:last-child {
        display: block;
        width: 100%;
        height: 300px;
    }


    #events-3-panel .third-width {
        width: 100%;
    }
    #events-3-panel ul li.two-thirds-width {
        width: 100%;
    }



    .events-banner-05 > .valign-content {
        padding: 150px 50px;
    }
    .events-banner-05 > .valign-content > div {
        width: 100%;
        text-align: center;
        border: none;
    }
    .events-banner-05 > .valign-content > div:first-child {
        padding: 0 0 40px 0;
    }
    .events-banner-05 > .valign-content > div:last-child{
        margin: 0px;
    }
    .events-banner-05 > .valign-content > div::before {
        display: none;
    }



    #services-main-service-01 {
        padding: 0px;
    }
    #services-main-service-01 > div > .table-cell:first-child,
    #services-main-service-01 > div > .table-cell:last-child {
        display: block;
        width: 100%;
        text-align: center;
    }

    #services-main-service-01 > div > .table-cell:first-child > div:last-child {
        width: 100%;
    }
    #services-main-service-01 > div > .table-cell h1 {
        padding: 20px 0;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs {
        position: relative;
        margin-top: 30px;
        width: 100%;
        text-align: center;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs:last-child {
        padding-bottom: 70px;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs:last-child > div:first-child {
        margin-bottom: 35px;
        text-align: center;
    }


    #tile-list-01 {
        padding: 40px 0;
    }
    #tile-list-01 .width-950 {
        width: calc(100% - 150px);
    }
    #tile-list-01 .width-950 li {
        width: 100%;
        border: none;
        border-bottom: solid 2px #ccc;
    }
    #tile-list-01 ul li:nth-child(3n + 2) {
        border: none;
        border-bottom: solid 2px #ccc;
    }
    #tile-list-01 ul li:last-child,
    #tile-list-01 ul li:nth-last-child(2) {
        border: none;
    }
    #tile-list-01 .width-950 li div{
        font-size: 18px;
    }


    #contact-04 {
        padding: 0px;
        height: auto;
    }
    #contact-04 .bg {
        height: calc(100% - 626px);
        top: 626px;
    }
    #contact-04 .content {
        height: auto;
    }
    #contact-04 .content > div {
        display: block;
        width: 100% !important;
        text-align: center;
    }
    #contact-04 .content .contact .abs{
        position: relative;
    }
    #contact-04 .content .contact .abs > .padding-50:first-child {
        padding-top: 0px;
    }


    #donate-block-image-01 > .rel > .valign-content:nth-child(2){
        padding: 100px;
    }
    #donate-block-image-01 > .rel > .valign-content:nth-child(2),
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form,
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form > div,
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form > div > div,
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form > div > div canvas {
        padding: 0px !important;
        width: 250px !important;
    }
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) {
        padding: 40px;
        box-sizing: border-box;
    }
    .donate_knob {
        top: 90px;
        font-size: 40px !important;
    }


    /* --------------------------------------------------------------- */
    /* --------------------------- HEADERS --------------------------- */
    /* --------------------------------------------------------------- */
    /* HEADER 02 */
    .header-02 #header > .abs-center,
    .header-transparent-01 #header > .abs-center,
    .header-02 #header.menu-right > .right > a {
        display: none;
    }
    /* END | HEADER 02 */
    /* --------------------------------------------------------------------- */
    /* --------------------------- END | HEADERS --------------------------- */
    /* --------------------------------------------------------------------- */


    /* --------------------------------------------------------------- */
    /* --------------------------- BANNERS --------------------------- */
    /* --------------------------------------------------------------- */
    /* BANNER - TEXT AND IMAGE */
    #banner-text-and-image > .rel {
        padding: 40px;
    }
    /* END | BANNER - TEXT AND IMAGE */

    /* BANNER - TEXT AND SUBTITLE */
    #banner-text-and-image > .width-800 {
        padding: 0 30px;
        width: 100%;
    }
    /* BANNER - TEXT AND SUBTITLE */

    /* BANNER HQ TEXT AND FIND 01 */
    #banner-hq-text-find-01 > .rel {
        padding: 40px;
    }
    #banner-hq-text-find-01 > .width-800 {
        padding: 0 30px;
        width: 100%;
    }
    /* END | BANNER HQ TEXT AND FIND 01 */

    /* BANNER - TITLE AND BUTTON 02 */
    #banner-title_and_button-02 .content .nav{
        display: none;
    }
    /* END | BANNER - TITLE AND BUTTON 02 */

    /* BANNER - FULLSCREEN 01 */
    #banner-fullscreen-01 .banner-content h2 {
        font-size: 34px;
        line-height: 28px;
    }
    #banner-fullscreen-01 .banner-content > .padding-horiz-60{
        padding-left: 30px;
        padding-right: 30px;
    }
    #banner-fullscreen-01 .banner-content .btn {
        margin: 0 0 10px 0;
        padding: 12px 22px;
        width: 100px;
    }
    #banner-fullscreen-01 .bottom > .rel > span {
        text-align: center;
    }
    #banner-fullscreen-01 .bottom .left {
        text-align: center;
    }
    #banner-fullscreen-01 .bottom .right {
        display: none;
    }
    /* END | BANNER - FULLSCREEN 01 */


    .banner-welcome-text-01 {
        padding: 50px;
        height: auto;
    }
    .banner-welcome-text-01 > .full-height > .half-width {
        width: 100%;
    }
    .banner-welcome-text-01 .text, .banner-welcome-text-01 .learn-more {
        height: auto;
    }
    .banner-welcome-text-01 > .full-height > .half-width:last-child .learn-more {
        position: relative;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text {
        position: relative;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text .abs {
        position: relative;
        margin-bottom: 20px;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text .abs:last-child {
        margin: 30px 0 40px 0;
    }
    .banner-welcome-text-01 .learn-more .btn {
        margin-left: 5px;
    }
    /* --------------------------------------------------------------------- */
    /* --------------------------- END | BANNERS --------------------------- */
    /* --------------------------------------------------------------------- */



    /* ------------------------------------------------------------------ */
    /* --------------------------- BILLBOARDS --------------------------- */
    /* ------------------------------------------------------------------ */
    /* BILLBOARD - TEXT AND SUBTITLE 02 */
    .billboard-text .padding-100 {
        padding-left: 50px;
        padding-right: 50px;
    }
    /* END | BILLBOARD - TEXT AND SUBTITLE 02 */
    /* ------------------------------------------------------------------------ */
    /* --------------------------- END | BILLBOARDS --------------------------- */
    /* ------------------------------------------------------------------------ */


    /* ------------------------------------------------------------------ */
    /* --------------------------- SERVICES ----------------------------- */
    /* ------------------------------------------------------------------ */
    /* SERVICES 01 */
    #services > .content h1 {
        font-size: 40px;
        padding: 0 40px;
    }
    #services > .content .left {
        margin: 0 0 40px 0;
        padding: 0px;
        width: 100%;
        text-align: center;
        border: none;
    }
    /* END | SERVICES 01 */
    /* ---------------------------------------------------------------------- */
    /* --------------------------- END | SERVICES --------------------------- */
    /* ---------------------------------------------------------------------- */


    /* -------------------------------------------------------------- */
    /* --------------------------- EVENTS --------------------------- */
    /* -------------------------------------------------------------- */
    /* EVENTS - BANNER 01 */
    #events-banner-01 .bottom .left h2 {
        display: block;
        margin: 0 0 20px 0;
        padding: 0 0 20px 0;
        border: none;
        border-bottom: solid 1px #fff;
        font-size: 30px;
        line-height: 26px;
    }
    #events-banner-01 .bottom .left > .dib {
        margin-right: 40px;
    }
    #events-banner-01 .bottom .left .btn {
        margin: 20px 0 0 0;
    }
    /* END | EVENTS - BANNER 01 */

    /* EVENTS - BANNER 02 */
    #events-banner-02 {
        height: auto;
    }
    #events-banner-02 .content {
        padding: 60px 0 100px 0;
    }
    #events-banner-02 .content > .details {
        width: auto;
    }
    #events-banner-02 .content::before,
    #events-banner-02 .content > .details .left::after{
        display: none;
    }
    #events-banner-02 .content > .details .left h2,
    #events-banner-02 .content > .details .left .info {
        margin: 0px;
        padding: 0px;
        width: 100%;
        text-align: center;
    }
    #events-banner-02 .content > .details .left h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 28px;
    }
    #events-banner-02 .content > .details .left .info > div:nth-child(1),
    #events-banner-02 .content > .details .left .info > div:nth-child(2) {
        display: inline-block;
    }
    /* END | EVENTS - BANNER 02 */

    /* EVENTS - 2 COLUMN */
    #events-2-column ul li {
        height: auto;
    }
    #events-2-column ul li > div {
        float: none;
        width: 100%;
    }
    #events-2-column ul li > div:first-child {
        height: auto;
    }
    #events-2-column ul li > div:last-child {
        height: 250px;
    }
    #events-2-column .col-float-2-alter li > div:last-child .right {
        text-align: left;
    }
    #events-2-column ul li > div:last-child {
        padding: 30px !important;
    }
    /* END | EVENTS - 2 COLUMN */

    /* SINGLE EVENT 01*/
    #single-event-01 .content > .valign-content > div {
        padding: 0px;
        width: 100%;
    }

    #single-event-01 .content > .valign-content > div:first-child {
        margin-bottom: 30px;
    }

    #single-event-01 .content > .valign-content > div h2 {
        font-size: 30px;
        line-height: 30px;
    }
    /* END | SINGLE EVENT 01*/
    /* -------------------------------------------------------------------- */
    /* --------------------------- END | EVENTS --------------------------- */
    /* -------------------------------------------------------------------- */


    /* ------------------------------------------------------------------ */
    /* --------------------------- CONTACT US --------------------------- */
    /* ------------------------------------------------------------------ */
    /* CONTACT 02 */
    #contact-02 {
        padding: 60px;
        min-height: initial;
        height: auto !important;
        text-align: left;
    }
    #contact-02 .bg {
        height: 100% !important;
    }
    #contact-02 .left-section {
        margin-right: 0px;
        margin-bottom: 30px;
        padding-bottom: 40px;
        border-bottom: solid 1px #fff;
        width: 100%;
    }
    #contact-02 .right-section {
        margin: 0px;
        width: 100%;
    }
    /* END CONTACT 02 */
    /* ---------------------------------------------------------------------- */
    /* --------------------------- END CONTACT US --------------------------- */
    /* ---------------------------------------------------------------------- */


    /* ---------------------------------------------------------------------- */
    /* --------------------------- CALL TO ACTION --------------------------- */
    /* ---------------------------------------------------------------------- */
    /* CALL TO ACTION 01 */
    #call-to-action-01 > div {
        padding: 30px 0;
        width: 100%;
        text-align: center;
    }
    #call-to-action-01 .img {
        display: none;
    }
    #call-to-action-01 .text {
        margin-left: 0px;
        padding: 0 30px;
        width: 100%;
    }
    #call-to-action-01 .text h1 {
        font-size: 30px;
    }
    #call-to-action-01 .text div {
        margin-bottom: 20px;
        font-size: 14px;
    }
    #call-to-action-01 .text .btn {
        padding: 10px 22px;
        font-size: 12px;
    }
    /* END | CALL TO ACTION 01 */
    /* ---------------------------------------------------------------------------- */
    /* --------------------------- END | CALL TO ACTION --------------------------- */
    /* ---------------------------------------------------------------------------- */




    /* ----- WEBSITE CUSTOMIZATIONS ----- */
    #banner-welcome-rotate-event-text-01{
        padding: 100px 50px;
        min-height: auto;
        height: auto !important;
    }
    #banner-welcome-rotate-event-text-01 .bg {
        opacity: 0.7;
    }
    #banner-welcome-rotate-event-text-01 .trans-md {
        top: 0px;
        transform: translateY(0px);
        padding: 0px;
        text-align: center;
    }
    #banner-welcome-rotate-event-text-01 .half-width {
        padding: 0px;
        width: 100%;
    }
    #banner-welcome-rotate-event-text-01 h1 {
        font-size: 38px;
    }
    #banner-welcome-rotate-event-text-01 .text {
        margin-top: 40px;
        width: 100%;
    }
    #banner-welcome-rotate-event-text-01 > .trans-md > div:last-child > div:last-child {
        display: none;
    }


    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:first-child,
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:nth-child(2),
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:last-child {
        margin-top: 40px;
        padding: 0px;
        width: 100%;
    }


    #social-snippet-ob-01 {
        padding: 50px;
    }
    #social-snippet-ob-01 .text {
        font-size: 24px;
        line-height: 28px;
    }


    #event-countdown-event-ticker-01 {
        padding: 150px 50px;
        text-align: center;
    }
    #event-countdown-event-ticker-01 > .padding-horiz-20 {
        padding: 0px;
    }
    #event-countdown-event-ticker-01 .info {
        padding: 0px;
    }
    #event-countdown-event-ticker-01 .info .font-larger{
        font-size: 20px;
    }
    #event-countdown-event-ticker-01 .info h1{
        padding: 0px;
        font-size: 45px;
    }
    #event-countdown-event-ticker-01 .subtitle {
        width: 100%;
    }
    #event-countdown-event-ticker-01 > div > .padding-top-60{
        padding: 0px
    }
    #event-countdown-event-ticker-01 > div > .padding-top-60 > .half-width {
        width: 100%;
    }
    #event-countdown-event-ticker-01 > div > .padding-top-60 > .half-width:last-child {
        display: none;
    }


    #footer-youth-01 > div:first-child > div {
        margin: 0px;
        width: 100%;
        text-align: center;
    }
    #footer-youth-01 > div:first-child > div:first-child{
        margin-bottom: 20px
    }
    #footer-youth-01 > div:first-child > div:first-child .avatar-small {
        width: 100%;
    }
    #footer-youth-01 > div:first-child > div:first-child span:nth-child(2){
        margin: 0px;
    }
    #footer-youth-01 > div:first-child > div:last-child{
        margin-bottom: 15px
    }
    #footer-youth-01 > div:first-child > div:last-child span{
        margin-left: 20px;
    }
    #footer-youth-01 > div:first-child > div:last-child a:first-child span{
        margin-left: 0px;
    }
    #footer-youth-01 > div:last-child span{
        padding: 0px;
    }


    #info-title-4-tiles-text-01 {
        padding: 40px 0;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100{
        padding-bottom: 0px;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100 .margin-bottom-70{
        margin-bottom: 40px;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100 .margin-bottom-70 h1 {
        margin-bottom: 0px;
        font-size: 36px;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100 .margin-bottom-70 span {
        font-size: 14px;
    }
    #info-title-4-tiles-text-01 > div > .padding-top-100{
        padding-top: 50px;
    }
    #info-title-4-tiles-text-01 .text {
        padding: 0 50px;
        width: 100%;
        font-size: 18px;
    }


    #staff-list-01 .profile{
        padding: 0px;
    }
    #staff-list-01 .profile .bg {
        background: #333;
    }
    #staff-list-01 .profile .img {
        display: block;
        height: 400px;
    }
    #staff-list-01 .profile > div:last-child {
        padding: 50px;
        width: 100%;
        text-align: center;
    }
    #staff-list-01 .profile .text {
        width: 100%;
        text-align: center;
    }


    #events-banner-fullscreen-01 {
        min-height: initial;
        height: auto !important;
        max-height: initial;
        text-align: center;
    }
    #events-banner-fullscreen-01 > div h1 {
        font-size: 40px;
    }
    #events-banner-fullscreen-01 > div > .padding-50 > div .abs {
        position: relative;
        margin-top: 40px;
    }
    #events-banner-fullscreen-01 > div > .padding-50 > div .abs > div {
        display: block;
        margin-top: 50px;
        width: 100%;
        text-align: center;
    }


    #events-list-01 {
        text-align: center;
    }
    #events-list-01 > .padding-horiz-100 {
        padding: 0 50px;
    }
    #events-list-01 > .padding-horiz-100 .padding-horiz-20 {
        padding: 0px;
    }
    #events-list-01 > div .padding-100 {
        padding: 100px 50px;
    }
    #events-list-01 .width-70-percent,
    #events-list-01 .width-30-percent {
        width: 100%;
        text-align: center;
    }
    #events-list-01 .width-70-percent {
        margin-bottom: 30px;
    }
    #events-list-01 .width-30-percent {
        margin: 0px;
    }
    #events-list-01 .width-30-percent > div:first-child {
        display: none;
    }
    #events-list-01 .width-30-percent > div:last-child {
        background: #fff;
        margin: 0px;
        padding: 13px 20px;
        font-size: 12px;
        font-weight: 500;
        color: #333;
        text-transform: uppercase;
    }


    #event-single-03 {
        min-height: initial;
        height: auto !important;
        text-align: center;
    }
    #event-single-03 > div > div > div .half-width {
        margin-left: 0px;
        width: 100%;
    }
    #event-single-03 > div > div > div .half-width > div h1 {
        font-size: 40px;
    }
    #event-single-03 > div > div > div .half-width > div .padding-right-100 {
        padding: 0 0 10px 0;
    }
    #event-single-03 > div > div > div .half-width:last-child {
        margin-top: 20px;
        text-align: center;
    }
    #event-single-03 > div > div > .abs {
        position: relative;
        margin-top: 40px;
    }
    #event-single-03 > div > div > .abs .avatar-extra-small {
        display: inline-block;
    }
    #event-single-03 > div > div > .abs .half-width:first-child {
        margin-bottom: 20px;
    }
    #event-single-03 > div > div > .abs .half-width:last-child > div:last-child {
        text-align: left;
    }


    #contact-05{
        padding: 0px;
    }
    #contact-05 .content {
        padding: 0px;
        width: 100%;
        text-align: center;
    }
    #contact-05 .content .top{
        margin: 0px;
        padding: 50px;
    }
    #contact-05 .content .top .valign-top {
        padding: 0px;
        width: 100%;
    }
    #contact-05 .content .top .valign-top:first-child {
        margin-bottom: 10px;
        width: 100%;
    }
    #contact-05 .content .top .valign-top:first-child h1 {
        margin: 0px;
    }
    #contact-05 .content .top .valign-top:first-child .subtitle {
        font-size: 20px;
    }
    #contact-05 .content .top .valign-top:last-child{
        width: 100%;
    }
    #contact-05 .content .bottom {
        background: #191919;
        padding: 50px;
    }
    #contact-05 .content .bottom form > div > p:first-child {
        padding: 0px;
        width: 100%;
    }
    #contact-05 .content .bottom form > div > p:last-child {
        width: 100%;
    }
    #contact-05 .content .bottom form > div > p:last-child span {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }
    #contact-05 .content .bottom form > div > p:last-child span:last-child:not(.btn) {
        margin-top: 42px;
    }
    #contact-05 .content .bottom form > div > p:last-child .btn {
        padding: 12px;
    }
    /* ----- END | WEBSITE CUSTOMIZATIONS ----- */
}

@media (max-width: 520px){
    #sidebar {
        width: 100%;
    }
    #sidebar[data-position=right]{
        right: -100%;
    }


    #footer-04 .rel:first-child {
        padding-bottom: 0px;
    }
    #footer-04 .rel:first-child .links {
        margin-bottom: 0px;
    }
    #footer-04 .rel:first-child .abs:nth-child(2) {
        position: relative;
        margin: 0px;
        padding: 30px 0;
        text-align: center;
    }
    #footer-04 .rel:first-child .abs:last-child {
        display: table;
        position: relative;
        width: 100%;
    }
    #footer-04 .rel:first-child .abs:last-child > * {
        display: table-cell;
        padding: 0px;
        width: 50%;
        text-align: center;
    }
    #footer-04 .rel:first-child .abs:last-child > a > span {
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }


    /* --------------------------------------------------------------- */
    /* --------------------------- BANNERS --------------------------- */
    /* --------------------------------------------------------------- */
    /* BANNER - FULLSCREEN 01 */
    #banner-fullscreen-01 .banner-content {
        height: 100%;
    }
    #banner-fullscreen-01 .bottom{
       display: none;
    }
    /* END | BANNER - FULLSCREEN 01 */

    /* BANNER - TITLE AND BUTTON 02 */
    #banner-title_and_button-02 .content{
        padding: 0px;
    }
    #banner-title_and_button-02 .content .details {
        padding: 50px;
        width: 100%;
        text-align: center;
    }
    #banner-title_and_button-02 .content .details h2 {
        font-size: 44px;
        line-height: 38px;
    }
    #banner-title_and_button-02 .content .details .cta .btn.margin-right-10 {
        margin: 0 0 20px 0;
    }
    /* END | BANNER - TITLE AND BUTTON 02 */
    /* --------------------------------------------------------------------- */
    /* --------------------------- END | BANNERS --------------------------- */
    /* --------------------------------------------------------------------- */


    .info-2-panel-image-off-02 .btn {
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }


    #four-items-01-pagination {
        padding: 0px;
    }
    #four-items-01-pagination .title {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #four-items-01-pagination .entries {
        margin: 0px;
    }
    #four-items-01-pagination .entries li {
        margin: 0px;
    }


    #events-banner-04 .details h2 {
        font-size: 30px;
    }
    #events-banner-04 .details .font-normal {
        margin-top: 5px;
        font-size: 14px;
    }
    #events-banner-04 .details .margin-top-50 {
        margin-top: 30px;
    }
    #events-banner-04 .details .margin-top-50 span {
        padding: 8px 20px;
        font-size: 10px;
    }


    #events-card-list-01 .title {
        padding: 0 40px;
    }
    #events-card-list-01 .title .decor {
        width: 160px;
    }
    #events-card-list-01 ul li:last-child {
        margin-bottom: 0px;
    }


    #services-main-service-01 > div > .table-cell h1 {
        font-size: 60px;
        line-height: 50px;
    }
    #services-main-service-01 > div > .table-cell .font-normal {
        letter-spacing: 3px;
    }


    #donate-block-image-01 > .rel > .valign-content:nth-child(2) {
        padding: 50px !important;
    }
    #donate-block-image-01 > .rel > .valign-content:nth-child(2),
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form,
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form > div,
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form > div > div,
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) form > div > div canvas {
        width: 100% !important;
    }
    .donate_knob {
        top: 110px;
    }


    /* -------------------------------------------------------------- */
    /* --------------------------- EVENTS --------------------------- */
    /* -------------------------------------------------------------- */
    /* STATS BAR 01 */
    #stats-bar-01.margin-horiz-80 {
        margin-left: 30px;
        margin-right: 30px;
    }
    #stats-bar-01 .left > span {
        display: block;
        margin: 0;
    }
    #stats-bar-01 .left > div {
        margin: 0 20px 0 0;
    }
    /* END | STATS BAR 01 */

    /* SINGLE EVENT 01*/
    #single-event-01 .content > .valign-content{
        padding: 0 30px;
    }
    /* END | SINGLE EVENT 01*/
    /* -------------------------------------------------------------------- */
    /* --------------------------- END | EVENTS --------------------------- */
    /* -------------------------------------------------------------------- */


    /* ------------------------------------------------------------------- */
    /* --------------------------- SERVICES -------------------------------- */
    /* ------------------------------------------------------------------- */
    /* SERVICE LIST 01 */
    #service-list-01 > div {
        padding: 0px;
    }
    #service-list-01 ul li .top h3{
        font-size: 26px;
    }
    #service-list-01 ul li .top div{
        font-size: 18px;
    }
    /* END | SERVICE LIST 01 */
    /* ------------------------------------------------------------------- */
    /* --------------------------- SERVICES -------------------------------- */
    /* ------------------------------------------------------------------- */


    /* --------------------------------------------------------------- */
    /* --------------------------- FOOTERS --------------------------- */
    /* --------------------------------------------------------------- */
    /* FOOTER - ESSENTIALS 01 */
    #footer-essentials-01 .links .margin-horiz-80 {
        margin-left: 40px;
        margin-right: 40px;
    }
    /* END | FOOTER - ESSENTIALS 01 */
    /* --------------------------------------------------------------------- */
    /* --------------------------- END | FOOTERS --------------------------- */
    /* --------------------------------------------------------------------- */


    /* DYNAMIC FORM */
    #dynamic-form .field-row.field-row-2 {
        padding: 0px;
        width: 100%;
    }
    /* END | DYNAMIC FORM */



    /* ----- WEBSITE CUSTOMIZATIONS ----- */
    #info-title-4-tiles-text-01 .tiles > div {
        margin-top: 70px;
        width: 100%;
    }
    /* ----- END | WEBSITE CUSTOMIZATIONS ----- */
}

.mobile-only{
    display: none;
}


/* ALL MOBILE */
@media only screen and (min-device-width: 320px) and (max-device-width: 736px){
    #mobile,
    .desktop-only{ display: none; }

    html, body {
        font-size: 36px;
    }

    h1{
        font-size: 120px;
    }
    h2{
        font-size: 80px;
    }
    h3{
        font-size: 64px;
    }
    h4{
        font-size: 56px;
    }
    h5{
        font-size: 48px;
    }


    input,
    textarea,
    select,
    [contenteditable=true] {
        padding: 24px 32px;
        font-size: 36px;
        border: solid 2px #aaa;
    }
    [contenteditable]{ outline: none; }
    input.invalid,
    select.invalid,
    textarea.invalid,
    [contenteditable=true].invalid {
        border-bottom: solid 4px red;
    }
    input:focus.valid,
    select:focus.valid,
    textarea:focus.valid,
    [contenteditable=true]:focus.valid {
        border-bottom: solid 4px green;
    }
    .fieldset-item {
        border: solid 2px #aaa;
    }
    .fieldset-item span {
        padding: 24px 32px;
        width: 88px;
        font-size: 36px;
    }
    .fieldset-item input {
        margin-left: -10px;
        width: calc(100% - 88px);
    }
    .fieldset-item .fa-minus-circle {
        left: -110px;
        top: -52px;
        width: 60px;
        height: 60px;
    }
    .fieldset-item .fa-plus-circle {
        right: -100px;
        top: -52px;
        width: 60px;
        height: 60px;
    }

    .fieldset-date input,
    .fieldset-date select {
        line-height: 48px;
    }
    .fieldset-date select {
        margin-left: -12px;
    }
    .fieldset-date input {
        width: 190px;
    }
    .fieldset-date select:first-of-type {
        width: 540px;
    }
    .fieldset-date select:last-of-type {
        width: 160px;
    }


    form.transparent input,
    form.transparent textarea,
    form.transparent section {
        border-width: 4px;
    }


    form.round label {
        display: inline-block;
        margin: 0 0 10px 46px;
        font-size: 24px;
    }
    form.round input,
    form.round textarea,
    form.round select,
    form.round button,
    form.round .btn {
        padding: 24px 44px;
        border-radius: 100px;
        font-size: 32px;
    }
    form.round .btn {
        min-width: 360px;
        font-size: 24px;
    }
    form.round textarea {
        padding-top: 36px;
        min-height: 280px;
        border-radius: 50px;
    }
    .toggle-btn {
        padding: 18px 0;
        min-width: 360px;
        height: 80px;
        border-radius: 100px;
    }
    .toggle-btn .knob {
        width: 156px;
        height: 48px;
        border-radius: 40px;
    }
    .toggle-btn .signal {
        width: 476px;
        left: 24px;
        top: 12px;
    }
    .toggle-btn .signal span:first-child {
        margin-right: -14px;
        width: 160px;
    }
    .toggle-btn.off .signal {
        left: -144px;
    }
    .toggle-btn .signal span:last-child {
        width: 148px;
    }
    form.round .fa-lock {
        right: 44px;
        top: 78px;
    }
    .field-row {
        margin-right: -8px;
        padding: 0 20px;
    }
    form.round ul li:not(:first-child) {
        margin-top: 60px;
        padding-top: 60px;
        border-top: solid 2px #ccc;
    }
    form.round .apps > div {
        border-bottom: solid 2px #ddd;
    }
    form.round .apps .fa {
        width: 50px;
    }
    form .address .field-row:first-child {
        width: 75%;
    }
    form .address .field-row:last-child {
        width: 25%;
    }
    form.round .field-row .fa-spinner{
        right: 60px;
        top: 26px;
    }
    form.round .date {
        border: solid 2px #aaa;
        border-radius: 100px;
    }
    form.round .date.full-date input, form.round .date.full-date select {
        margin-right: -8px;
    }
    form.round .date select {
        border-left: solid 2px #aaa;
        border-right: solid 2px #aaa;
    }



    dl { width: 800px }
    dt { float: left; width: 400px; overflow: hidden; white-space: nowrap }
    dd { float: left; width: 400px; overflow: hidden }


    #footer-04 .rel:first-child {
        padding-bottom: 0px;
    }
    #footer-04 .rel:first-child .links {
        margin-bottom: 0px;
    }
    #footer-04 .rel:first-child .abs:nth-child(2) {
        position: relative;
        margin: 0px;
        padding: 60px 0;
        text-align: center;
    }
    #footer-04 .rel:first-child .abs:last-child {
        display: table;
        position: relative;
        width: 100%;
    }
    #footer-04 .rel:first-child .abs:last-child > * {
        display: table-cell;
        padding: 0px;
        width: 50%;
        text-align: center;
    }
    #footer-04 .rel:first-child .abs:last-child > a > span {
        padding: 20px 0;
        width: 100%;
        text-align: center;
    }
    #footer-04 > .rel:last-child span {
        display: block;
        position: relative;
        left: auto;
        right: auto;
        text-align: center;
    }
    #footer-04 > .rel:last-child span:last-child {
        padding-top: 20px;
    }



    .add-content .calc {
        right: 40px;
        top: 418px;
    }
    .add-content .calc li span {
        width: 200px;
    }



    #header {
        padding: 40px;
    }
    #header .left img {
        width: 60px;
    }
    #header .left .icon {
        width: 80px;
    }

    #settings {
        right: -100%;
        width: 100%;
        border-left: solid 2px #ddd;
        box-shadow: 0 0 120px 0 rgba(0,0,0,0.15);
    }

    #sidebar {
        width: 100%;
    }
    #sidebar .abs.opacity-07{
        opacity: 0.9;
    }
    #sidebar[data-position=right]{
        right: -100%;
    }
    #sidebar[data-position=right] .right .fa{
        position: absolute;
        right: 0px;
        top: 0px;
        padding: 40px;
    }


    .half-width{
        width: 100%;
    }
    .quarter-width{
        width: 100%;
    }
    .fifth-width{
        width: 100%;
    }
    .width-30-percent {
        width: 100%;
    }
    .width-70-percent {
        width: 100%;
    }

    .width-300,
    .width-400,
    .width-500,
    .width-600,
    .width-700,
    .width-800,
    .width-900,
    .width-950,
    .width-1024{ width: 100%; }

    .width-minus-10{ width: calc(100% - 20px); }
    .width-minus-20{ width: calc(100% - 40px); }
    .width-minus-30{ width: calc(100% - 60px); }
    .width-minus-40{ width: calc(100% - 80px); }
    .width-minus-50{ width: calc(100% - 100px); }
    .width-minus-60{ width: calc(100% - 120px); }
    .width-minus-70{ width: calc(100% - 140px); }
    .width-minus-80{ width: calc(100% - 160px); }
    .width-minus-90{ width: calc(100% - 180px); }
    .width-minus-100{ width: calc(100% - 200px); }

.height-minus-10{ height: calc(100% - 10px); }
.height-minus-20{ height: calc(100% - 20px); }
.height-minus-30{ height: calc(100% - 30px); }
.height-minus-40{ height: calc(100% - 40px); }
.height-minus-50{ height: calc(100% - 50px); }
.height-minus-60{ height: calc(100% - 60px); }
.height-minus-70{ height: calc(100% - 70px); }
.height-minus-80{ height: calc(100% - 80px); }
.height-minus-90{ height: calc(100% - 90px); }
.height-minus-100{ height: calc(100% - 100px); }

    .margin-10{ margin: 20px; }
    .margin-20{ margin: 40px; }
    .margin-30{ margin: 60px; }
    .margin-40{ margin: 80px; }
    .margin-50{ margin: 100px; }
    .margin-60{ margin: 120px; }
    .margin-70{ margin: 140px; }
    .margin-80{ margin: 160px; }
    .margin-90{ margin: 180px; }
    .margin-left-10{ margin-left: 20px; }
    .margin-left-20{ margin-left: 40px; }
    .margin-right-10{ margin-right: 20px; }
    .margin-right-20{ margin-right: 40px; }
    .margin-right-30{ margin-right: 60px; }
    .margin-right-40{ margin-right: 80px; }
    .margin-right-50{ margin-right: 100px; }
    .margin-top-10{ margin-top: 20px; }
    .margin-top-20{ margin-top: 40px; }
    .margin-top-30{ margin-top: 60px; }
    .margin-top-40{ margin-top: 80px; }
    .margin-top-3-{ margin-top: -6px; }
    .margin-top-5-{ margin-top: -10px; }
    .margin-top-10-{ margin-top: -20px; }
    .margin-top-20-{ margin-top: -40px; }
    .margin-top-30-{ margin-top: -60px; }
    .margin-top-40-{ margin-top: -80px; }
    .margin-top-50-{ margin-top: -100px; }
    .margin-top-60-{ margin-top: -120px; }
    .margin-top-70-{ margin-top: -140px; }
    .margin-top-80-{ margin-top: -160px; }
    .margin-bottom-10{ margin-bottom: 20px; }
    .margin-bottom-20{ margin-bottom: 40px; }
    .margin-bottom-30{ margin-bottom: 60px; }
    .margin-bottom-40{ margin-bottom: 80px; }
    .margin-100{ margin: 200px; }
    .margin-horiz-10{
        margin-left: 20px;
        margin-right: 20px;
    }
    .margin-horiz-20{
        margin-left: 40px;
        margin-right: 40px;
    }
    .margin-horiz-30{
        margin-left: 60px;
        margin-right: 60px;
    }
    .margin-horiz-40{
        margin-left: 80px;
        margin-right: 80px;
    }
    .margin-horiz-50{
        margin-left: 100px;
        margin-right: 100px;
    }
    .margin-horiz-60{
        margin-left: 120px;
        margin-right: 120px;
    }
    .margin-horiz-70{
        margin-left: 140px;
        margin-right: 140px;
    }
    .margin-horiz-80{
        margin-left: 160px;
        margin-right: 160px;
    }
    .margin-horiz-90{
        margin-left: 180px;
        margin-right: 180px;
    }
    .margin-horiz-100{
        margin-left: 200px;
        margin-right: 200px;
    }
    .margin-vert-40{
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .padding-0{
        padding: 0px;
    }
    .padding-10{
        padding: 20px;
    }
    .padding-20{
        padding: 40px;
    }
    .padding-30{
        padding: 60px;
    }
    .padding-40{
        padding: 80px;
    }
    .padding-50{
        padding: 100px;
    }
    .padding-60{
        padding: 120px;
    }
    .padding-70{
        padding: 140px;
    }
    .padding-80{
        padding: 160px;
    }
    .padding-90{
        padding: 180px;
    }
    .padding-100{
        padding: 200px;
    }
    .padding-left-5{ padding-left: 10px; }
    .padding-right-5{ padding-right: 10px; }
    .padding-right-10{ padding-right: 20px; }
    .padding-top-10{ padding-top: 20px; }
    .padding-top-20{ padding-top: 40px; }
    .padding-top-30{ padding-top: 60px; }
    .padding-top-40{ padding-top: 80px; }
    .padding-top-50{ padding-top: 100px; }
    .padding-top-60{ padding-top: 120px; }
    .padding-top-70{ padding-top: 140px; }
    .padding-top-80{ padding-top: 160px; }
    .padding-top-90{ padding-top: 180px; }
    .padding-top-100{ padding-top: 200px; }
    .padding-bottom-10{
        padding-bottom: 20px;
    }
    .padding-bottom-20{
        padding-bottom: 40px;
    }
    .padding-bottom-30{
        padding-bottom: 60px;
    }
    .padding-bottom-40{
        padding-bottom: 80px;
    }
    .padding-bottom-50{
        padding-bottom: 100px;
    }
    .padding-bottom-60{
        padding-bottom: 120px;
    }
    .padding-bottom-70{
        padding-bottom: 140px;
    }
    .padding-bottom-80{
        padding-bottom: 160px;
    }
    .padding-bottom-90{
        padding-bottom: 180px;
    }
    .padding-bottom-100{
        padding-bottom: 200px;
    }
    .padding-horiz-5{ padding-left: 10px; padding-right: 10px; }
    .padding-horiz-10{ padding-left: 20px; padding-right: 20px; }
    .padding-horiz-20{ padding-left: 40px; padding-right: 40px; }
    .padding-horiz-30{ padding-left: 60px; padding-right: 60px; }
    .padding-horiz-40{ padding-left: 80px; padding-right: 80px; }
    .padding-horiz-50{ padding-left: 100px; padding-right: 100px; }
    .padding-horiz-60{ padding-left: 120px; padding-right: 120px; }
    .padding-horiz-70{ padding-left: 140px; padding-right: 140px; }
    .padding-horiz-80{ padding-left: 160px; padding-right: 160px; }
    .padding-horiz-90{ padding-left: 180px; padding-right: 180px; }
    .padding-horiz-100{ padding-left: 200px; padding-right: 200px; }
    .padding-vert-2 {
        padding-top: 4px;
        padding-bottom: 4px;
    }
    .padding-vert-10 {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .padding-vert-20 {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .padding-vert-30 {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .padding-vert-40 {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .padding-vert-50 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .padding-vert-60 {
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .padding-vert-70 {
        padding-top: 140px;
        padding-bottom: 140px;
    }
    .padding-vert-80 {
        padding-top: 160px;
        padding-bottom: 160px;
    }
    .padding-vert-90 {
        padding-top: 180px;
        padding-bottom: 180px;
    }
    .padding-vert-100 {
        padding-top: 200px;
        padding-bottom: 200px;
    }


    .dot-5 {
        width: 10px;
        height: 10px;
    }
    .dot-10 {
        width: 20px;
        height: 20px;
    }



    .valign {
        margin: 0 -10px 0 0;
    }
    .valign-before::before {
        margin-right: -10px;
    }

    .font-extra-small{
        font-size: 20px;
    }
    .font-small{
        font-size: 26px;
    }
    .font-normal{
        font-size: 36px;
    }
    .font-large{
        font-size: 80px;
        line-height: 64px;
    }


    .btn {
        padding: 24px 96px;
        font-size: 32px;
        border-radius: 10px;
        border: solid 4px transparent;
    }
    .btn-small {
        padding: 10px 20px;
        font-size: 20px;
    }
    .btn.btn-small-text {
        padding: 30px 60px;
        font-size: 24px;
    }
    .btn-round{
        border-radius: 50px;
    }

    .border-white,
    .border-white-h:hover,
    .border-white-s.selected,
    .border-white-s.selected:hover{
        border-color: #fff;
    }
    .border-light,
    .border-light-h:hover,
    .border-light-s.selected,
    .border-light-s.selected:hover{
        border-color: #ccc;
    }
    .border-extra-light,
    .border-extra-light-h:hover,
    .border-extra-light-s.selected,
    .border-extra-light-s.selected:hover {
        border-color: #f6f6f6;
    }
    .border-orange,
    .border-orange-h:hover,
    .border-orange-s.selected,
    .border-orange-s.selected:hover{
        border-color: #D23227;
    }
    .border-normal,
    .border-normal-h:hover,
    .border-normal-s.selected,
    .border-normal-s.selected:hover{
        border-color: #888;
    }
    .border-dark-light,
    .border-dark-light-h:hover,
    .border-dark-light-s.selected,
    .border-dark-light-s.selected:hover{
        border-color: #555;
    }

    .border-1px{
        border-style: solid;
        border-width: 2px;
    }
    .border-2px{
        border-style: solid;
        border-width: 4px;
    }
    .border-3px {
        border-style: solid;
        border-width: 6px;
    }
    .border-4px {
        border-style: solid;
        border-width: 8px;
    }
    .border-5px {
        border-style: solid;
        border-width: 10px;
    }
    .border-10px {
        border-style: solid;
        border-width: 20px;
    }


    .border-left-1px {
        border-left-width: 2px;
    }

    .border-top-1px {
        border-top-width: 2px;
    }

    .border-bottom-1px {
        border-bottom-width: 2px;
    }
    .border-bottom-2px {
        border-bottom-width: 4px;
    }
    .border-bottom-3px {
        border-bottom-width: 6px;
    }
    .border-bottom-4px {
        border-bottom-width: 8px;
    }
    .border-bottom-5px {
        border-bottom-width: 10px;
    }
    .border-right-1px {
        border-right-width: 2px;
    }

    .border-radius-0px{
        border-radius: 0px;
    }
    .border-radius-2px{
        border-radius: 4px;
    }
    .border-radius-3px{
        border-radius: 6px;
    }
    .border-radius-4px{
        border-radius: 8px;
    }
    .border-radius-5px{
        border-radius: 10px;
    }




    .blur-2 {
        filter: blur(4px);
        -webkit-filter: blur(4px);
        -o-filter: blur(4px);
        -moz-filter: blur(4px);
        padding: 8px;
        left: -8px;
        top: -8px;
    }
    .blur-5 {
        filter: blur(10px);
        -webkit-filter: blur(10px);
        -o-filter: blur(10px);
        -moz-filter: blur(10px);
        padding: 20px;
        left: -20px;
        top: -20px;
    }
    .blur-10 {
        filter: blur(20px);
        -webkit-filter: blur(20px);
        -o-filter: blur(20px);
        -moz-filter: blur(20px);
        padding: 40px;
        left: -40px;
        top: -40px;
    }
    .blur-20 {
        filter: blur(40px);
        -webkit-filter: blur(40px);
        -o-filter: blur(40px);
        -moz-filter: blur(40px);
        padding: 80px;
        left: -80px;
        top: -80px;
    }


    i.icon-extra-small {
        font-size: 40px;
    }
    i.icon-small {
        font-size: 80px;
    }
    i.icon-normal {
        font-size: 120px;
    }
    i.icon-large {
        font-size: 160px;
    }

    .icon-map-marker {
        width: 94px;
        height: 94px;
        font-size: 48px;
        line-height: 94px;
    }


    .logo-small,
    .logo-small * {
        height: 60px;
    }
    .logo-normal,
    .logo-normal * {
        height: 80px;
    }
    .logo-large,
    .logo-large * {
        height: 160px;
        width: auto;
    }
    .logo-extra-large,
    .logo-extra-large * {
        height: 300px;
        width: auto;
    }



    .submenu .right {
        right: 40px;
    }
    .submenu .right i {
        padding-left: 10px;
    }


    .avatar-extra-small {
        width: 60px;
        height: 60px;
    }
    .avatar-small {
        width: 120px;
        height: 120px;
    }
    .avatar-normal {
        width: 200px;
        height: 200px;
    }
    .avatar-large {
        width: 300px;
        height: 300px;
    }





/* ------------------------------------------------------------------------------ */
/* --------------------------- COMPONENTS & TEMPLATES --------------------------- */
/* ------------------------------------------------------------------------------ */




/* --------------------------------------------------------------- */
/* --------------------------- BANNERS --------------------------- */
/* --------------------------------------------------------------- */
/* BANNER */
.ob-banner ul{
    width: 20000px;
}

.ob-banner-01{
    height: 100%;
}
/* END BANNER */


/* BANNER - FULLSCREEN 01 */
#banner-fullscreen-01 .banner-content{
    height: calc(100% - 180px);
}
#banner-fullscreen-01 .banner-content h2{
    line-height: 70px;
}
#banner-fullscreen-01 .banner-content > .padding-horiz-60{
    margin-left: -20px;
}
#banner-fullscreen-01 .bottom{
    height: 120px;
}
#banner-fullscreen-01 .banner-content .decor {
    width: 200px;
    height: 10px;
}
#banner-fullscreen-01 .banner-content .btn{
    margin: 0px;
    min-width: 300px;
    font-size: 24px;
}
#banner-fullscreen-01 .banner-content .btn:first-child{
    margin-bottom: 20px;
}
#banner-fullscreen-01 .bottom .btn {
    min-width: 150px;
    font-size: 24px;
}

.btn-round{
    border-radius: 200px;
}
/* END | BANNER - FULLSCREEN 01 */


/* BANNER 02 */
#banner-text-and-image,
#banner-text-and-subtitle{
    height: 500px;
}
#banner-text-and-image .bg,
#banner-text-and-subtitle .bg {
    top: 0px;
    height: 100%;
}
/* END | BANNER 02 */

    /* BANNER - TEXT AND IMAGE */
    #banner-text-and-image > .rel,
    #banner-text-and-subtitle > .rel {
        margin-left: -10px;
        width: 100%;
        padding: 40px;
    }
    #banner-text-and-image > .rel .font-large,
    #banner-text-and-subtitle > .rel .font-large{
        font-size: 60px;
    }
    /* END | BANNER - TEXT AND IMAGE */

    /* BANNER HQ TEXT AND FIND 01 */
    #banner-hq-text-find-01{
        height: 700px;
    }
    #banner-hq-text-find-01 > .rel {
        margin-left: -10px;
        width: 100%;
        padding: 40px;
    }
    #banner-hq-text-find-01> .rel .font-large{
        font-size: 60px;
    }
    /* END | BANNER HQ TEXT AND FIND 01 */


    /* BANNER - TITLE AND BUTTON 02 */
    #banner-title_and_button-02 .content{
        padding: 0px;
    }
    #banner-title_and_button-02 .content .details {
        padding: 80px;
        width: auto;
        left: 0px;
        right: 0px;
        bottom: 0px;
        text-align: center;
    }
    #banner-title_and_button-02 .content .details h2 {
        font-size: 88px;
        line-height: 76px;
    }
    #banner-title_and_button-02 .content .details .cta .btn{
        padding: 24px 44px;
        width: auto;
    }
    #banner-title_and_button-02 .content .details .cta .btn.margin-right-10 {
        margin: 0 0 40px 0;
    }
    #banner-title_and_button-02 .shadow {
        box-shadow: inset 0px -800px 1600px -200px rgba(63, 59, 58, 0.9);
    }
    #banner-title_and_button-02 .content .nav{
        display: none;
    }
    /* END | BANNER - TITLE AND BUTTON 02 */


    /* BANNER - INFO 01 */
    #banner-info-01 {
        height: auto;
        text-align: center;
    }
    #banner-info-01 h3 {
        margin-bottom: 30px;
    }
    #banner-info-01 .btn {
        margin-bottom: 70px;
        padding: 20px 70px;
        font-size: 29px;
    }
    #banner-info-01 > div:last-child {
        display: none;
    }
    /* END | BANNER - INFO 01*/


    .banner-welcome-text-01 {
        padding: 100px;
        height: auto;
    }
    .banner-welcome-text-01 > .full-height > .half-width {
        width: 100%;
    }
    .banner-welcome-text-01 .text,
    .banner-welcome-text-01 .learn-more {
        height: auto;
    }
    .banner-welcome-text-01 h2 font:last-child{
        line-height: 80px;
    }
    .banner-welcome-text-01 .text .valign-content{
        line-height: 24px;
    }
    .banner-welcome-text-01 > .full-height > .half-width:last-child .learn-more {
        position: relative;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text {
        position: relative;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text .abs {
        position: relative;
        margin-bottom: 40px;
    }
    .banner-welcome-text-01 > .full-height > .half-width .text .abs:last-child {
        margin: 60px 0 80px 0;
    }
    .banner-welcome-text-01 .learn-more .btn {
        margin-left: 5px;
    }
    .banner-welcome-text-01 .learn-more .btn {
        padding: 40px 140px;
        font-size: 24px;
    }
    /* ------------------------------------------------------------------- */
    /* --------------------------- END | BANNERS --------------------------- */
    /* ------------------------------------------------------------------- */


    .info-2-panel-image-off-02{
        height: auto;
    }
    .info-2-panel-image-off-02 > .rel {
        padding: 100px;
        width: 100%;
    }
    .info-2-panel-image-off-02 > .rel:before {
        display: none;
    }
    .info-2-panel-image-off-02 .info {
        width: 100%;
    }
    .info-2-panel-image-off-02 .info .title {
        font-size: 80px;
        line-height: 72px;
    }
    .info-2-panel-image-off-02 .info .text {
        line-height: 36px;
    }
    .info-2-panel-image-off-02 .img {
        position: relative;
        padding: 50% 0;
        width: auto;
    }


    #info-square-img-2-buttons{
        padding: 0px;
        height: auto;
    }
    #info-square-img-2-buttons > .rel {
        position: initial;
    }
    #info-square-img-2-buttons .img-sq {
        width: 100% !important;
    }
    #info-square-img-2-buttons > div > .rel {
        padding: 100px;
    }
    #info-square-img-2-buttons .half-width:first-child > .rel .half-width {
        margin: 0px;
        width: 100%;
    }
    #info-square-img-2-buttons .btns {
        padding: 100px;
    }
    #info-square-img-2-buttons .btns .btn {
        margin: 0px;
        padding: 30px 0;
    }
    #info-square-img-2-buttons > div > .rel .half-width {
        text-align: center;
    }
    #info-square-img-2-buttons > div > .rel .half-width h2 {
        margin-bottom: 20px;
    }
    #info-square-img-2-buttons .btns .half-width {
        padding: 0 20px;
        margin: 20px 0 0 0;
        text-align: center;
    }


    /* BILLBOARD - TEXT */
    .billboard-text .padding-100{
        padding-left: 100px;
        padding-right: 100px;
    }
    .billboard-text .font-large {
        font-size: 64px;
        line-height: 56px;
    }
    /* END | BILLBOARD - TEXT */



    /* --------------------------------------------------------------- */
    /* --------------------------- HEADERS --------------------------- */
    /* --------------------------------------------------------------- */
    /* HEADER 02 */
    .header-02 #header,
    .header-transparent-01 #header {
        padding: 0 0 0 60px;
        height: 120px;
    }
    .header-02 #header .logo-normal *,
    .header-transparent-01 #header .logo-normal {
        height: 60px;
    }
    .header-02 #content {
        padding-top: 120px;
    }
    .header-02 #header > .abs-center,
    .header-transparent-01  #header > .abs-center,
    .header-02 #header.menu-right > .right > a{
        display: none;
    }
    /* END | HEADER 02 */

    .header-02 #header.header-05{
        height: 120px !important;
    }
    /* ------------------------------------------------------------------- */
    /* --------------------------- END | HEADERS --------------------------- */
    /* ------------------------------------------------------------------- */


    /* ---------------------------------------------------------------------- */
    /* --------------------------- CALL TO ACTION --------------------------- */
    /* ---------------------------------------------------------------------- */
    /* CALL TO ACTION 01 */
    #call-to-action-01 > div {
        padding: 60px 0;
        width: 100%;
        text-align: center;
    }
    #call-to-action-01 .img {
        display: none;
    }
    #call-to-action-01 .text {
        margin-left: 0px;
        padding: 0 60px;
        width: 100%;
    }
    #call-to-action-01 .text h1 {
        font-size: 60px;
    }
    #call-to-action-01 .text div {
        margin-bottom: 40px;
        font-size: 28px;
    }
    #call-to-action-01 .text .btn {
        padding: 20px 44px;
        font-size: 24px;
    }
    /* END | CALL TO ACTION 01 */


    /* CALL TO ACTION - 02 */
    #call-to-action-02 > div:not(.center-section) {
        width: 100%;
        text-align: center;
    }
    #call-to-action-02 h2 {
        margin-bottom: 30px;
        font-size: 60px;
        line-height: 52px;
    }
    #call-to-action-02 h2 font {
        margin-top: 30px;
        font-size: 24px;
    }
    #call-to-action-02 .btn {
        padding: 16px 40px;
        font-size: 24px;
    }
    #call-to-action-02 > .center-section {
        margin: 70px 0;
        width: 8px;
        height: 200px;
    }
    #call-to-action-02 > div:not(.center-section) > div {
        width: 400px;
        height: 400px;
    }
    /* END | CALL TO ACTION - 02 */
    /* ---------------------------------------------------------------------------- */
    /* --------------------------- END | CALL TO ACTION --------------------------- */
    /* ---------------------------------------------------------------------------- */


    /* ---------------------------------------------------------------- */
    /* --------------------------- BIO -------------------------------- */
    /* ---------------------------------------------------------------- */
    /* BIO - 2 PANE 01 */
    #bio-2-pane-01 {
        min-height: initial;
        height: auto !important;
    }
    #bio-2-pane-01 .full-width .title {
        transform: translateY(-15px);
        margin-top: -60px;
        padding: 24px 60px;
        font-size: 48px;
    }
    #bio-2-pane-01 .left, #bio-2-pane-01 .right {
        display: block;
        float: none;
        clear: both;
        padding: 0px;
        height: auto;
        text-align: center;
    }
    #bio-2-pane-01 .right {
        padding: 40px 0;
        margin: 0px;
        min-height: initial;
    }
    #bio-2-pane-01 .right .title {
        margin-top: 40px;
        padding: 24px 0;
        margin-right: 0px;
        font-size: 48px;
    }
    #bio-2-pane-01 .text {
        height: calc(100% - 258px);
    }
    #bio-2-pane-01 .text > div {
        width: calc(100% - 10px);
    }
    #bio-2-pane-01 .right .text{
        padding: 0 100px;
        font-size: 32px;
    }
    #bio-2-pane-01 .signature {
        width: auto;
        height: 106px;
    }
    /* END | BIO - 2 PANE 01 */

/* BIO - 2 PANE SQUARE 01 */
#bio-2-pane-square-01 {
    padding: 0px;
    height: auto !important;
}
#bio-2-pane-square-01::before {
    content: none;
}
#bio-2-pane-square-01 > .abs {
    display: none;
}
#bio-2-pane-square-01 .content .img {
    padding: 0px;
    width: 100%;
}
#bio-2-pane-square-01 .content .text {
    position: relative;
    background: #eee;
    padding: 80px 60px 60px 60px;
    width: 100%;
}
#bio-2-pane-square-01 .content .text > span {
    display: none;
}
#bio-2-pane-square-01 .content .text .title h2{
    font-size: 40px;
    text-transform: uppercase;
}
#bio-2-pane-square-01 .content .text .title span {
    right: 60px;
    top: 80px;
    font-size: 40px;
}
#bio-2-pane-square-01 .content .text > div:nth-child(3){
    margin-top: 10px;
    font-size: 28px;
}
/* END | BIO - 2 PANE SQUARE 01 */
    /* ---------------------------------------------------------------------- */
    /* --------------------------- END | BIO -------------------------------- */
    /* ---------------------------------------------------------------------- */


    /* ------------------------------------------------------------------- */
    /* --------------------------- EVENTS -------------------------------- */
    /* ------------------------------------------------------------------- */
    /* EVENTS - BANNER 01 */
    #events-banner-01 .bottom .left h2 {
        display: block;
        margin: 0 0 20px 0;
        padding: 0 0 20px 0;
        width: auto;
        border: none;
        border-bottom: solid 1px #fff;
        font-size: 60px;
        line-height: 52px;
    }
    #events-banner-01 .bottom .left > .dib {
        margin-right: 40px;
    }
    #events-banner-01 .bottom .left .btn {
        position: absolute;
        right: 100px;
        bottom: 100px;
        margin: 20px 0 0 0;
    }
    /* END | EVENTS - BANNER 01 */

    #single-event-01 .content .width-950{
        margin-top: 60px;
        padding-left: 60px;
        padding-right: 60px;
        width: 100%;
    }
    #single-event-01 .content .width-950 > div:first-child{
        padding-bottom: 40px;
    }
    #single-event-01 .content .width-950 > div:last-child{
        padding: 0px;
    }
    #single-event-01 .section {
        margin-right: 0px;
    }
    #single-event-01 .content > .valign-content > div .bottom .right > .btn:first-child {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }


    #events-banner-02 {
        height: auto !important;
    }
    #events-banner-02 .content {
        padding: 60px 0 180px 0;
    }
    #events-banner-02 .content > .details {
        width: auto;
    }
    #events-banner-02 .content::before,
    #events-banner-02 .content > .details .left::after{
        display: none;
    }
    #events-banner-02 .content > .details .left h2,
    #events-banner-02 .content > .details .left .info {
        margin: 0px;
        padding: 0px;
        width: 100%;
        font-weight: 400;
        text-align: center;
    }
    #events-banner-02 .content > .details .left h2 {
        margin-bottom: 40px;
        font-size: 60px;
        line-height: 56px;
    }
    #events-banner-02 .content > .details .left .info > div:nth-child(1),
    #events-banner-02 .content > .details .left .info > div:nth-child(2) {
        display: inline-block;
        font-weight: 500;
    }
    #events-banner-02 .navigation span.selected {
        box-shadow: 0 0 0 6px;
    }


    #events-banner-04 .details .btn {
        font-size: 24px;
        padding: 20px 60px;
    }


    #events-card-list-01 {
        padding: 0px;
    }
    #events-card-list-01 .title {
        padding: 100px 60px;
    }
    #events-card-list-01 .title h3 {
        font-size: 52px;
    }
    #events-card-list-01 .title .half-width {
        width: 50%;
    }
    #events-card-list-01 .title .margin-left-5- {
        margin-left: -10px;
    }
    #events-card-list-01 .title .decor {
        bottom: 60px;
        width: 30%;
        height: 20px;
    }
    #events-card-list-01 ul {
        padding: 0px;
    }
    #events-card-list-01 ul li {
        display: block;
        margin: 0px;
        width: 100%;
        height: auto;
    }
    #events-card-list-01 ul li .abs:nth-child(2) {
        margin-right: 50px;
    }
    #events-card-list-01 ul li .abs:nth-child(2) .font-extra-small {
        font-size: 30px;
    }
    #events-card-list-01 ul li .abs:nth-child(2) .fa {
        padding-left: 12px;
        font-size: 50px;
    }
    #events-card-list-01 ul li .abs:last-child {
        position: relative;
        padding: 75% 60px 60px 60px;
        text-align: center;
    }
    #events-card-list-01 ul li > .pos-bottom .font-small {
        display: block;
        padding-top: 50px;
        font-size: 36px;
        line-height: 60px;
    }
    #events-card-list-01 ul li > .pos-bottom h4 {
        font-size: 60px;
        line-height: 54px;
    }
    #events-card-list-01 ul li > .pos-bottom .btn {
        padding: 20px 0;
        font-size: 30px;
    }


    #event-single-02 > .table-cell {
        display: block;
        height: auto;
        text-align: center;
    }
    #event-single-02 > .table-cell:last-child {
        padding-bottom: 70%;
    }
    #event-single-02 h2 {
        font-size: 70px;
        line-height: 60px;
    }
    #event-single-02 > .table-cell:first-child > .full-width:first-child > div {
        margin: 30px 0;
    }
    #event-single-02 .btn {
        padding: 20px 0;
        font-size: 30px;
    }
    #event-single-02 > .table-cell > .font-small {
        line-height: 30px;
    }
    #event-single-02 > .table-cell > .abs {
        position: relative;
        padding: 0px;
    }
    #event-single-02 > .table-cell:first-child .abs .valign-content {
        width: 100%;
        font-size: 28px;
        text-align: center;
    }
    #event-single-02 > .table-cell:first-child .abs .valign-content:first-child {
        margin: 70px 0;
    }



    #events-3-panel .title span {
        top: 75px;
        right: 100px;
    }
    #events-3-panel li,
    #events-3-panel li.third-width {
        display: block;
        width: 100%;
        text-align: center;
    }
    #events-3-panel ul li.two-thirds-width {
        width: 100%;
        height: auto;
    }
    #events-3-panel ul li .img {
        padding-bottom: 100%;
        height: auto;
    }
    #events-3-panel ul li > div > div {
        padding-bottom: 50px;
        white-space: initial;
    }
    #events-3-panel ul li .btn {
        padding: 20px 60px;
        font-size: 28px;
    }
    #events-3-panel ul li div .avatar-small {
        width: 100px;
        height: 100px;
    }


    .events-banner-05 {
        padding: 0px;
        height: auto !important;
    }
    .events-banner-05::before {
        display: none;
    }
    .events-banner-05 > .valign-content {
        padding: 300px 100px;
        width: auto;
        height: auto;
    }
    .events-banner-05 > .valign-content > div {
        display: block;
        width: 100%;
        text-align: center;
        border: none;
    }
    .events-banner-05 > .valign-content > div:first-child {
        padding: 0 0 80px 0;
    }
    .events-banner-05 > .valign-content > div:last-child{
        position: relative;
        margin: 0 0 100 0px;
    }
    .events-banner-05 > .valign-content > div::before {
        display: none;
    }
    /* ------------------------------------------------------------------------- */
    /* --------------------------- END | EVENTS -------------------------------- */
    /* ------------------------------------------------------------------------- */


/* ---------------------------------------------------------------------- */
/* --------------------------- LOCATIONS -------------------------------- */
/* ---------------------------------------------------------------------- */
/* LOCATIONS - 2 TILE 01 */
#locations-2-tile-01 .bg {
    top: 0px;
}
#locations-2-tile-01{
    min-height: 700px;
}
#locations-2-tile-01 .bg {
    top: 0px;
}
#locations-2-tile-01 .tile {
    margin: 0 50px;
    width: 380px;
    height: 480px;
}
#locations-2-tile-01 .tile > div {
    width: calc(100% - 20px);
    bottom: 20px;
}
/* END | LOCATIONS - 2 TILE 01 */
/* -------------------------------------------------------------------------- */
/* --------------------------- END | LOCATIONS --------------------------- */
/* -------------------------------------------------------------------------- */


    /* ---------------------------------------------------------------------- */
    /* --------------------------- SERVICES --------------------------------- */
    /* ---------------------------------------------------------------------- */
    /* SERVICE 01 */
    #services h1{
        font-size: 80px;
        padding: 0 80px;
    }
    #services > .content .left {
        margin: 0 0 80px 0;
        padding: 0px;
        width: 100%;
        text-align: center;
        border: none;
    }
    /* END | SERVICE 01 */

    /* SERVICE LIST 01 */
    #service-list-01 > div{
        padding: 0px;
    }
    #service-list-01 ul li .bottom span:first-child {
        width: 140px;
    }
    /* END | SERVICE LIST 01 */


    #services-main-service-01 {
        padding: 50px;
    }
    #services-main-service-01 > div > .table-cell,#services-main-service-01 > div > .table-cell:first-child {
        display: block;
        width: 100%;
        text-align: center;
    }
    #services-main-service-01 > div > .table-cell:first-child > div:last-child {
        width: 100%;
    }
    #services-main-service-01 > div > .table-cell h1 {
        margin: 30px 0;
    }
    #services-main-service-01 > div > .table-cell:last-child {
        width: 100%;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs {
        display: block;
        position: relative;
        text-align: center;
    }
    #services-main-service-01 .table-cell:last-child .right .avatar-small {
        margin: 0 20px;
        width: 90px;
        height: 90px;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs > div:first-child {
        margin: 60px 0;
        font-size: 28px;
        text-align: center;
    }
    #services-main-service-01 > div > .table-cell:last-child > .abs > .width-70-percent {
        padding: 30px 0;
        font-size: 40px;
    }
    #services-main-service-01 > .abs {
        position: relative;
        padding: 40px 0;
    }
    /* --------------------------------------------------------------------------- */
    /* --------------------------- END | SERVICES -------------------------------- */
    /* --------------------------------------------------------------------------- */


    /* ------------------------------------------------------------------ */
    /* --------------------------- CONTACT US --------------------------- */
    /* ------------------------------------------------------------------ */
    /* CONTACT 02 */
    #contact-02 {
        padding: 60px 60px 120px 60px;
        min-height: initial !important;
        height: auto !important;
        text-align: left;
    }
    #contact-02 .bg {
        height: 100% !important;
    }
    #contact-02 h1{
        margin-top: 5px;
        font-size: 100px;
        line-height: 100px;
    }
    #contact-02 .left-section {
        margin-right: 0px;
        margin-bottom: 30px;
        padding-bottom: 40px;
        border-bottom: solid 1px #fff;
        width: 100%;
    }
    #contact-02 .left-section > div:not(.heading){
        font-size: 32px;
    }
    #contact-02 .address{
        width: auto;
    }
    #contact-02 .right-section {
        margin: 0px;
        width: 100%;
    }
    /* END CONTACT 02 */



    #contact-04 {
        padding: 0px;
        height: auto;
    }
    #contact-04 .content {
        height: auto;
    }
    #contact-04 .content .contact {
        width: 100%;
    }
    #contact-04 .content .contact > .padding-50 {
        padding: 60px;
        text-align: center;
    }
    #contact-04 .content .contact h2, #contact-04 .content .form h2 {
        font-size: 70px;
    }
    #contact-04 .content .contact .address {
        font-size: 30px;
    }
    #contact-04 .content .contact .address .btn {
        margin-top: 80px;
        padding: 24px 48px;
        font-size: 30px;
    }
    #contact-04 .content .contact > .abs {
        position: relative;
        text-align: center;
    }
    #contact-04 .content .contact > .abs > .padding-50:first-child {
        padding-top: 40px;
    }
    #contact-04 .content .contact .abs .avatar-small {
        margin: 0 20px;
        width: 90px;
        height: 90px;
    }
    #contact-04 .content .contact > .abs > .padding-50:last-child {
        font-size: 60px;
    }
    #contact-04 .content .contact > .abs > .padding-50:last-child .font-small {
        font-size: 36px;
    }
    #contact-04 .content .form {
        width: 100%;
        text-align: center;
    }
    #contact-04 .content .form form input, #contact-04 .content .form form textarea {
        font-size: 30px;
        border: none;
        border-bottom: solid 2px #fff;
        border-radius: 0px;
        -webkit-appearance: none;
    }
    #contact-04 .content .form form .table-cell.half-width {
        display: inline-block;
        width: 50%;
    }
    #contact-04 .content .form form .table-cell.half-width:last-child {
        margin-left: -10px;
    }
    /* ---------------------------------------------------------------------- */
    /* --------------------------- END | CONTACT US --------------------------- */
    /* ---------------------------------------------------------------------- */


    /* --------------------------------------------------------------- */
    /* --------------------------- COLUMNS --------------------------- */
    /* --------------------------------------------------------------- */
    .col-float-2-alter li > div {
        float: none !important;
        width: 100%;
    }
    .col-float-2-alter li > div:first-child {
        padding-bottom: 20px !important;
    }
    .col-float-2-alter li > div:first-child .btn{
        margin-bottom: 20px;
    }
    .col-float-2-alter li > div:last-child {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
    }
    .col-float-2-alter li:last-child > div:last-child {
        padding-bottom: 40px !important;
    }

    /* 2 COLUMN - OVERLAP 02 */
    #two-column-overlap-02 .width-950 {
        width: 100%;
    }
    /* END | 2 COLUMN - OVERLAP 02 */

    /* 2 COLUMN - OVERLAP 02 - CPT */
    #two-column-overlap-02-cpt > ul{
        width: 100%;
    }
    /* END | 2 COLUMN - OVERLAP 02 - CPT */

    /* EVENTS - 2 COLUMN */
    #events-2-column ul li {
        height: auto;
    }
    #events-2-column ul li > div {
        float: none;
        width: 100%;
    }
    #events-2-column ul li > div:first-child {
        height: auto;
    }
    #events-2-column ul li > div:first-child .font-small{
        padding-bottom: 40px;
    }
    #events-2-column ul li > div:last-child {
        height: 500px;
    }
    #events-2-column .col-float-2-alter li > div:last-child .right {
        text-align: left;
    }
    #events-2-column ul li > div:last-child {
        padding: 60px !important;
    }
    #events-2-column li .bottom {
        bottom: 60px;
    }
    /* END | EVENTS - 2 COLUMN */
    /* ------------------------------------------------------------------- */
    /* --------------------------- END | COLUMNS --------------------------- */
    /* ------------------------------------------------------------------- */


    /* STATS BAR 01 */
    #stats-bar-01.margin-horiz-80{
        margin-left: 60px;
        margin-right: 60px;
    }
    #stats-bar-01 .left > span{
        display: none;
    }
    #stats-bar-01 .left div:nth-child(2) {
        margin: 0px;
    }
    #stats-bar-01 .left div > span {
        font-size: 60px;
    }
    #stats-bar-01 .left div > div {
        font-size: 24px;
        line-height: 24px;
    }
    #stats-bar-01 .right .search input {
        background: transparent;
        padding: 12px 32px;
    }
    #stats-bar-01 .right .search .fa {
        padding: 14px;
        right: 12px;
        top: 2px;
        font-size: 28px;
    }
    /* END | STATS BAR 01 */




    /* INFO - COMBO 2 TILES */
    #info-combo-2-tiles {
        padding: 60px;
        height: auto;
    }
    #info-combo-2-tiles .left-section {
        width: 100%;
        text-align: center;
    }
    #info-combo-2-tiles .left-section .img {
        padding-bottom: 100%;
        height: auto;
    }
    #info-combo-2-tiles .text {
        margin: 70px 0 100px 0;
        width: 100%;
    }
    #info-combo-2-tiles .text h2 {
        margin-bottom: 50px;
        padding: 20px 40px;
        font-size: 30px;
    }
    #info-combo-2-tiles .text div {
        font-size: 60px;
        line-height: 50px;
    }
    #info-combo-2-tiles .text span {
        font-size: 30px;
    }
    #info-combo-2-tiles .right-section {
        padding-bottom: 100%;
        width: 100%;
        height: auto;
        text-align: center;
    }
    #info-combo-2-tiles .right-section .text {
        margin: 1px;
    }
    #info-combo-2-tiles .quote {
        margin-bottom: 60px;
    }
    /* END | INFO - COMBO 2 TILES */


    /* INFO - HALF BY 2 */
    #info-half-by-2 {
        height: auto;
    }
    #info-half-by-2 > div {
        display: block;
        width: 100%;
        height: auto;
    }
    #info-half-by-2 .half-width .padding-horiz-40 {
        width: 80%;
        font-size: 70px;
    }
    #info-half-by-2 > div > .table-cell {
        display: block;
        width: 100%;
        height: auto;
        text-align: center;
    }
    #info-half-by-2 > div > .table-cell:first-child {
        padding-bottom: 100%;
    }
    #info-half-by-2 > div > .table-cell h3.font-uppercase {
        width: 100%;
        font-size: 60px;
        line-height: 54px;
    }
    #info-half-by-2 > div:last-child .font-small {
        margin: 100px 0;
        font-size: 28px;
        line-height: 36px;
    }
    #info-half-by-2 > div:last-child .btn {
        display: block;
        position: relative;
        margin: 0px;
    }
    /* END | INFO - HALF BY 2 */


    /* INFO LIST - 4 BY 4 */
    #info-list-4-by-4 li:not(.float-clear) {
        height: auto;
    }
    #info-list-4-by-4 li:not(.float-clear) h3 {
        line-height: 60px;
    }
    #info-list-4-by-4 li .font-small {
        line-height: 40px;
    }
    /* END | INFO LIST - 4 BY 4 */


#tile-list-01 ul li,
#tile-list-01 ul li:nth-child(-n + 3),
#tile-list-01 ul li:nth-child(3n + 2) {
    width: 100%;
    border: none;
    border-bottom: solid 4px #ccc;
}

#tile-list-02 ul li,
#tile-list-02 ul li:nth-child(-n + 3),
#tile-list-02 ul li:nth-child(3n + 2) {
    width: 100%;
    border: none;
    border-bottom-style: solid;
    border-bottom-width: 4px;
}

#tile-list-01 ul li:last-child,
#tile-list-01 ul li:nth-last-child(2),
#tile-list-02 ul li:last-child,
#tile-list-02 ul li:nth-last-child(2) {
    border: none;
}
#tile-list-01 .width-950 li div,
#tile-list-02 .width-950 li div {
    font-size: 40px;
}


    /* FOUR ITEMS - 01 PAGINATION */
    #four-items-01-pagination {
        padding: 0px;
    }
    #four-items-01-pagination
     .title {
        padding: 100px;
    }
    #four-items-01-pagination
     .entries-pagination-4 .entries {
        margin: 0px;
    }
    #four-items-01-pagination .entries li {
        margin: 0px;
        width: 100%;
        height: auto;
        text-align: center;
    }
    #four-items-01-pagination .entries li .img {
        padding-bottom: 100%;
        height: auto;
    }
    #four-items-01-pagination .entries li h3 {
        font-size: 60px;
        line-height: 54px;
    }
    #four-items-01-pagination .entries li .font-small {
        font-size: 30px;
        line-height: 40px;
    }
    /* END | FOUR ITEMS - 01 PAGINATION */



#staff-single-card-01 {
    height: auto;
}
#staff-single-card-01::before{
    display: none;
}
#staff-single-card-01 > .valign-content {
    width: 100%;
    height: auto;
}
#staff-single-card-01 > .valign-content .full-height {
    display: block;
    width: 100%;
    height: auto;
    text-align: center;
}
#staff-single-card-01 > .valign-content .full-height:first-child {
    padding-bottom: 100%;
}
#staff-single-card-01 > .valign-content .full-height > div h1 {
    font-size: 60px;
}
#staff-single-card-01 > .valign-content .full-height > div span {
    display: inline-block;
    margin: 20px 0;
    font-size: 30px;
}
#staff-single-card-01 > .valign-content .full-height > div div {
    font-size: 30px;
    line-height: 60px;
}



#staff-card-list-01 {
    padding: 0px;
}
#staff-card-list-01 .title {
    margin: 0px;
    padding: 100px;
}
#staff-card-list-01 ul li:not(.float-clear) {
    margin: 0px;
    width: 100%;
    height: auto;
}
#staff-card-list-01 > div:last-child {
    width: 100%;
}
#staff-card-list-01 ul {
    width: 100%;
}
#staff-card-list-01 ul li .img {
    position: relative;
    padding-bottom: 100%;
    height: auto;
    box-sizing: border-box;
}
#staff-card-list-01 ul li .img::before {
    position: absolute;
    margin: auto;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 80%;
    height: 80%;
    border-width: 20px;
    box-sizing: border-box;
}
#staff-card-list-01 ul li .color-normal {
    padding: 100px;
}
#staff-card-list-01 ul li .color-normal .font-normal {
    margin-bottom: 5px;
    font-size: 60px;
}
#staff-card-list-01 ul li .color-normal .font-extra-small {
    font-size: 30px;
    letter-spacing: 3px;
}
#staff-card-list-01 ul li:last-child {
    border-bottom: solid 1px #ccc;
}



/* ONE BODY - TICKETS 01 */
#ob-tickets-01 .ticket-list .img {
    width: 200px;
    height: 200px;
}
/* END | ONE BODY - TICKETS 01*/


    #single-event-01 #stats-bar-01 .font-large {
        display: none;
    }


    /* ------------------------------------------------------------------- */
    /* --------------------------- DONATIONS ----------------------------- */
    /* ------------------------------------------------------------------- */
    /* DONATE - BLOCK IMAGE - 01 */
    #donate-block-image-01 .padding-100 {
        padding: 50px;
    }
    #donate-block-image-01 .padding-100 .third-width {
        width: 100%;
    }
    #donate-block-image-01 .padding-100 .third-width form .margin-top-60- {
        margin: -40px 0 60px 0;
    }
    /* END | DONATE - BLOCK IMAGE - 01 */

    .popup[data-position=center] .content {
        width: calc(100% - 200px);
        max-width: initial;
        text-align: center;
    }
    /* ----------------------------------------------------------------------- */
    /* --------------------------- END | DONATIONS --------------------------- */
    /* ----------------------------------------------------------------------- */


    /* ------------------------------------------------------------------- */
    /* ---------------------- ONE BODY - DASHBOARD ----------------------- */
    /* ------------------------------------------------------------------- */
    /* HEADER */
    #header .right #time,
    #header .right [ob-click=open_settings],
    #header .right > [href] {
        display: none;
    }
    .ob_page.options .options-tiles ul li {
        padding: 60px 30px;
        width: 300px;
        height: 300px;
    }
    #wrapper > #settings {
        display: none;
    }
    /* END | HEADER */


    .ob_page.settings > div:not(.submenu) > div {
        margin: 0px auto 100px auto;
        width: calc(100% - 150px);
    }
    .ob_page.settings .fifth-width {
        width: 20%;
    }
    .ob_page.settings .account-details .border-top-1px {
        margin-bottom: 40px;
    }


    .ob_page.settings form .btn {
        width: 100%;
        min-width: auto;
    }
    .ob_page.settings .password-change form .field-row-2 {
        padding: 0px;
        width: 100%;
    }
    .ob_page.settings .password-change form .field-row-2:nth-child(2) {
        margin-top: 40px;
    }
    .ob_page.settings .social-connections form .btn {
        font-size: 22px;
    }
    .ob_page.settings .admin-permissions .address .field-row {
        width: 100%;
    }
    .ob_page.settings .admin-permissions form p:first-child {
        text-align: center;
    }
    .ob_page.settings .admin-permissions form .address .field-row:first-child {
        margin-bottom: 20px;
        padding: 0px;
        width: 100%;
    }
    .ob_page.settings .admin-permissions form .address .field-row:last-child {
        padding: 0px;
        width: 100%;
    }
    .ob_page.settings .admin-permissions form .address .field-row:last-child span {
        width: 100%;
    }
    .ob_page.settings .admin-permissions form p:first-child > span:last-child {
        margin-left: 0px;
        padding-left: 0px;
    }


    .status-bar .stats {
        text-align: center;
    }
    .status-bar .stats > div:last-child {
        margin: 0;
    }
    .status-bar .stats > div > div:first-child {
        font-size: 55px;
    }
    .status-bar > .right {
        position: relative;
        right: auto;
    }
    .status-bar > .right .search {
        width: 100%;
    }
    .status-bar > .right .search input {
        padding: 28px 64px 28px 38px;
        font-size: 30px;
    }
    .status-bar > .right .search .fa {
        padding: 26px 42px;
        font-size: 40px;
    }

    .ob_page.cloud .status-bar .stats > div {
        margin: 0 0 30px 0;
        width: 50%;
        text-align: left;
    }
    .ob_page.cloud .status-bar .stats > div:nth-child(2n + 2) {
        margin-left: -9px;
    }


    .ob_page.members #members .members-list > div{
        border-color: #ddd;
    }
    .ob_page.members #members .members-list > div > div:first-child {
        margin-bottom: 40px;
        padding-bottom: 40px;
        width: 100%;
        border-bottom: solid 1px #ededed;
    }
    .ob_page.members #members .members-list > div > div:not(:first-child):not(.abs) {
        margin: 0 0 50px -5px;
        width: 50%;
    }
    .ob_page.members #members .members-list > div > div:nth-child(3) {
        text-align: right;
    }
    .ob_page.members #members .members-list > div > div:nth-last-child(2) {
        margin: 0px !important;
        width: 100% !important;
    }


    #cloud-storage .status-bar > .right .search {
        border-top: solid 1px #ccc;
        margin-top: 3px;
        padding-top: 40px;
    }
    .directory-list {
        margin: 50px;
    }
    .directory-list li {
        margin: 0 0 20px 0;
        width: 100%;
        height: 120px;
    }
    .directory-list li.folder {
        text-align: center;
    }
    .directory-list li.folder > .left {
        width: 60px;
        height: 60px;
    }
    .directory-list li.folder > .left .fa {
        margin: 0 0 0 -5px;
        font-size: 30px;
    }
    .directory-list li.file > .left {
        width: 120px;
    }
    .directory-list li.file > .right {
        width: calc(100% - 120px);
    }
    .directory-list li.file > .right .details {
        padding: 0 30px;
    }



    #analytics {
        padding: 34px;
    }
    #analytics > div {
        text-align: center;
    }
    #analytics > div > h2 {
        margin-bottom: 40px;
    }
    #analytics > div > div:nth-child(2) {
        padding: 60px 0;
        width: 100%;
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
    }
    #analytics > div > div:nth-child(2) > div {
        vertical-align: top;
        margin: 0 0 0 -6px;
        padding: 0 20px;
        width: 33.33%;
        box-sizing: border-box;
    }
    #analytics > div > div:nth-child(2) > div .font-large {
        font-size: 40px;
        line-height: 40px;
    }
    #analytics > div > div:nth-child(2) > div .font-small {
        font-size: 22px;
    }
    .analytics-module {
        margin: 0 0 40px 0;
        width: 100%;
        height: auto;
        font-size: 30px;
    }
    .analytics-module .head {
        height: 70px;
    }
    .module-2-third {
        width: 100%;
    }
    .module-2-third > div:last-child {
        margin-bottom: 80px;
    }


    .ob_page.cloud > .bg-extra-light > .half-width {
        text-align: center;
    }
    .ob_page.cloud > .bg-extra-light > .half-width:first-child > span {
        margin: 10px 0;
    }
    .ob_page.cloud > .bg-extra-light > .half-width:last-child {
        border-top: solid 1px #ccc;
    }
    .ob_page.cloud > .bg-extra-light > .half-width > h3,
    .ob_page.cloud > .bg-extra-light > .half-width:not(:first-child) > span {
        display: block;
        width: 100%;
    }
    .ob_page.cloud > .bg-extra-light > .half-width:not(:first-child) > span {
        margin-bottom: 20px;
    }
    form p.currency-before::before {
        left: 46px;
        top: 75px;
    }


    #communications h1 {
        font-size: 80px;
    }
    #communications .client-list li span{
       width: 50%;
    }
    #communications .client-list li span:nth-child(2),
    #communications .client-list li span:nth-child(3) {
        display: none;
    }


    #ob-tickets-01 > .padding-50 {
        padding: 0px;
    }
    #ob-tickets-01 > .padding-50 h3 {
        background: #f6f6f6;
        padding: 20px 36px;
        font-size: 36px;
        font-weight: 400;
    }
    #ob-tickets-01 > .padding-50 ul {
        padding: 0 40px;
    }
    #ob-tickets-01 > .padding-50 ul li {
        margin-left: -5px;
        width: 50%;
        box-sizing: border-box;
    }
    #ob-tickets-01 > .padding-50 ul li .img {
        width: 100%;
        height: 300px;
    }
    #ob-tickets-01 > .padding-50 ul li .title {
        line-height: 38px;
    }
    #ob-tickets-01 > .padding-50 ul li > * {
        width: 100%;
    }
    #ob-tickets-01 ul li .avatar-small {
        width: 80px;
        height: 80px;
    }
    #ob-tickets-01 ul li .avatar-small .icon-large {
        font-size: 112px;
    }
    #ob-tickets-01 ul li .margin-right-40 {
        margin: 0px;
        font-size: 30px;
    }
    #ob-tickets-01 ul li {
        padding: 40px;
    }
    #ob-tickets-01 ul li .avatar-small {
        margin-right: 20px;
    }
    #ob-tickets-01 ul li .abs{
        margin-right: 40px;
        margin-top: 50px;
    }
    #ob-tickets-01 ul li .abs .btn {
        padding: 15px 40px;
        font-size: 24px;
        text-transform: uppercase;
    }


    #tickets #qrcode {
        padding: 100px;
        box-sizing: border-box;
    }
    #tickets #qrcode > * {
        width: 100%;
    }


    .social-accounts .id .avatar-normal .fa-stack {
        top: 63px;
        right: -20px;
    }
    .social-accounts .id {
        width: 100%;
        box-sizing: border-box;
    }
    .social-accounts .status > .stat {
        margin-left: -7px;
        padding-bottom: 80px;
        width: 33.33%;
        text-align: center;
        box-sizing: border-box;
    }


    .social-accounts .publish.valign-before::before{
        display: none;  
    }
    .social-accounts textarea {
        height: 300px;
    }


    .checkmark__circle {
        stroke-width: 50px;
    }



    #website-manager .menu {
        width: 100%;
        height: auto;
        overflow: initial;
    }
    #website-manager .main-form {
        position: relative;
        left: 0px;
        width: 100%;
        height: auto !important;
        overflow: initial;
    }
    #website-manager .main-form form ul li > .font-400 {
        font-size: 30px;
    }
    #website-manager .main-form .form ul li > .dib.color input {
        margin-top: 20px;
        padding: 20px 30px;
        width: 100%;
        font-size: 26px;
    }
    #website-manager .main-form .form ul li > .dib.color input[type=color] {
        margin-top: 20px;
        height: 80px;
    }
    #website-manager .main-form .form ul li > .right.half-width {
        margin-top: 20px;
        text-align: left;
    }
    #website-manager .main-form .form ul li > .right.half-width > .btn {
        padding: 20px 30px;
        width: 100%;
        font-size: 26px;
        text-align: center;
        box-sizing: border-box;
    }
    #website-manager .main-form .form ul li > .right.half-width > *:first-child {
        margin-bottom: 20px;
    }


    #website-manager .main-form form p input {
        margin: 0 0 30px 0;
        width: 100%;
    }
    #website-manager .main-form form p span input {
        margin: 0px;
        width: calc(100% - 115px);
    }

    #website-manager .main-form .head .abs {
        position: relative;
        margin-top: 30px;
        text-align: left;
    }
    #website-manager .main-form form .field-row-2 {
        margin-bottom: 30px;
        padding: 0px;
        width: 100%;
    }
    #website-manager .main-form form [type=checkbox] {
        margin-right: -30px;
        margin-bottom: 0px;
        width: auto;
        height: auto;
    }



    .popup[data-position=center] .content > div > div > div > .width-30-percent {
        width: 30%;
        text-align: left;
    }

    .popup[data-position=center] .content > div > div > div > .width-70-percent {
        margin-left: -8px;
        width: 70%;
        text-align: right;
    }


    .table li span:last-of-type {
        margin-right: -5px;
    }

    .table li span {
        padding: 20px 40px !important;
    }


    .row-list-search {
        margin-right: 50px;
        width: 350px;
    }


    #join-ob-01 form {
        padding: 0 70px;
    }
    #join-ob-01 form .font-small {
        font-size: 24px;
    }
    #join-ob-01 form .btn {
        width: 100%;
    }
    /* ------------------------------------------------------------------- */
    /* ------------------- END |ONE BODY - DASHBOARD --------------------- */
    /* ------------------------------------------------------------------- */


    /* ------------------------------------------------------------------- */
    /* --------------------------- LOGIN --------------------------------- */
    /* ------------------------------------------------------------------- */
    /* LOGIN - ONE BODY */
    .ob_page.login .brand img {
        width: 240px;
    }
    .ob_page.login .brand h1 {
        font-size: 70px;
    }
    .ob_page.login .brand h1 font {
        font-size: 30px;
    }
    .ob_page.login .ob-login {
        width: auto;
    }
    .ob_page.login .ob-login .btn {
        padding: 40px 100px;
    }
    /* END | LOGIN - ONE BODY */
    /* ------------------------------------------------------------------- */
    /* --------------------------- END | LOGIN --------------------------- */
    /* ------------------------------------------------------------------- */


    /* DYNAMIC FORM */
    #dynamic-form {
        padding-left: 100px;
        padding-right: 100px;
        width: 100%;
    }
    /* END | DYNAMIC FORM */



    #donate-block-image-01 .padding-100 .third-width {
        font-size: 30px;
    }
    #donate-block-image-01 > .rel > .valign-content:nth-child(2) {
        width: 100%;
    }
    .donate_knob {
        top: 160px;
        font-size: 60px !important;
    }


    /* ---------------------------------------------------------------------------------- */
    /* --------------------------- END | COMPONENTS & TEMPLATES --------------------------- */
    /* ---------------------------------------------------------------------------------- */



    /* ----- WEBSITE CUSTOMIZATIONS ----- */
    h1.serif{
        line-height: 100px;
    }

    .font-larger{
        font-size: 60px;
    }

    #banner-welcome-rotate-event-text-01{
        padding: 200px 100px 300px 100px;
        height: auto !important;
        min-height: initial;
    }
    #banner-welcome-rotate-event-text-01 .bg {
        opacity: 0.7;
    }
    #banner-welcome-rotate-event-text-01 .subtitle {
        font-size: 48px;
    }
    #banner-welcome-rotate-event-text-01 .text {
        margin-top: 80px;
        width: 100%;
        font-size: 36px;
        font-weight: 300;
        line-height: 40px;
    }
    #banner-welcome-rotate-event-text-01 .text font{
        font-weight: 600;
    }
    #banner-welcome-rotate-event-text-01 .trans-md {
        top: 0px;
        transform: translateY(0px);
        padding: 0px;
        text-align: center;
    }
    #banner-welcome-rotate-event-text-01 .half-width {
        padding: 0px;
        width: 100%;
    }
    #banner-welcome-rotate-event-text-01 h1 {
        font-size: 76px;
    }
    #banner-welcome-rotate-event-text-01 > .trans-md > div:last-child > div:last-child {
        display: none;
    }


    #events-snippet-01 .triangle-decor.top{
        top: -199px;
        border-right: solid 2880px transparent;
        border-bottom: solid 200px #191919;
    }
    #events-snippet-01 .triangle-decor.bottom{
        bottom: -199px;
        border-right: solid 2880px transparent;
        border-top: solid 200px #191919;
    }
    #events-snippet-01 .event:nth-child(2) {
        margin-top: 108px;
    }
    #events-snippet-01 {
        margin-bottom: 200px;
        padding: 200px 100px;
    }
    #events-snippet-01 > .padding-horiz-20 {
        padding: 0px;
    }
    #events-snippet-01 > .padding-horiz-20 > div:first-child {
        margin-bottom: 120px;
        width: 100%;
        text-align: center;
    }
    #events-snippet-01 > .padding-horiz-20 > div:first-child .font-larger {
        font-size: 40px;
        font-weight: 400;
    }
    #events-snippet-01 > .padding-horiz-20 > div:first-child h1 {
        padding: 0px;
        font-size: 80px;
    }
    #events-snippet-01 > .padding-horiz-20 > div:first-child .font-small {
        font-weight: 300;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child {
        padding: 0px;
        width: 100%;
    }
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:first-child,
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:nth-child(2),
    #events-snippet-01 > .padding-horiz-20 > div:last-child > div:last-child {
        margin-top: 80px;
        padding: 0px;
        width: 100%;
    }



    #social-snippet-ob-01 {
        padding: 100px;
    }
    #social-snippet-ob-01 > div{
        padding: 0px;
    }
    #social-snippet-ob-01 .text{
        width: 100%;
        font-size: 48px;
        font-weight: 300;
        line-height: 56px;
    }
    #social-snippet-ob-01 .text .color-orange{
        font-weight: 400;
    }
    #social-snippet-ob-01 > div div:last-child{
        font-weight: 400;
    }


    #event-countdown-event-ticker-01 {
        padding: 300px 100px;
        text-align: center;
    }
    #event-countdown-event-ticker-01 > .padding-horiz-20 {
        padding: 0px;
    }
    #event-countdown-event-ticker-01 .info {
        padding: 0px;
    }
    #event-countdown-event-ticker-01 .info .font-larger{
        font-size: 40px;
        font-weight: 400;
    }
    #event-countdown-event-ticker-01 .info h1{
        padding: 0px;
        font-size: 90px;
    }
    #event-countdown-event-ticker-01 .subtitle {
        width: 100%;
        font-weight: 300;
    }
    #event-countdown-event-ticker-01 > div > .padding-top-60{
        padding: 0px
    }
    #event-countdown-event-ticker-01 > div > .padding-top-60 > .half-width {
        width: 100%;
        font-weight: 300;
    }
    #event-countdown-event-ticker-01 > div > .padding-top-60 > .half-width:last-child {
        display: none;
    }


    #footer-youth-01 > div:first-child > div {
        margin: 0px;
        width: 100%;
        text-align: center;
    }
    #footer-youth-01 > div:first-child > div:first-child{
        margin-bottom: 40px
    }
    #footer-youth-01 > div:first-child > div:first-child .avatar-small {
        width: 100%;
    }
    #footer-youth-01 > div:first-child > div:first-child span:nth-child(2){
        margin: 0px;
    }
    #footer-youth-01 > div:first-child > div:last-child{
        margin-bottom: 30px
    }
    #footer-youth-01 > div:first-child > div:last-child span{
        margin-left: 40px;
    }
    #footer-youth-01 > div:first-child > div:last-child a:first-child span{
        margin-left: 0px;
    }
    #footer-youth-01 > div:last-child span{
        padding: 0px;
    }


    #info-title-4-tiles-text-01 {
        padding: 80px 0;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100{
        padding-bottom: 100px;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100 .margin-bottom-70{
        margin-bottom: 80px;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100 .margin-bottom-70 h1 {
        margin-bottom: 0px;
        font-size: 72px;
    }
    #info-title-4-tiles-text-01 > div:nth-child(2) > .padding-bottom-100 .margin-bottom-70 span {
        font-size: 32px;
    }
    #info-title-4-tiles-text-01 > div > .padding-top-100{
        padding-top: 100px;
    }
    #info-title-4-tiles-text-01 .tiles > div .left > div:first-child {
        font-size: 34px;
    }
    #info-title-4-tiles-text-01 .tiles > div .left > div:last-child {
        font-weight: 300;
    }
    #info-title-4-tiles-text-01 .tiles > div:nth-child(3),
    #info-title-4-tiles-text-01 .tiles > div:last-child {
        margin-top: 140px;
    }
    #info-title-4-tiles-text-01 .text {
        padding: 0 100px;
        width: 100%;
        font-size: 36px;
        font-weight: 300;
    }



    #staff-list-01 .profile{
        padding: 0px;
    }
    #staff-list-01 .profile .bg {
        background: #333;
    }
    #staff-list-01 .profile .img {
        display: block;
        padding-bottom: 80%;
    }
    #staff-list-01 .profile > div:last-child {
        padding: 100px;
        width: 100%;
        text-align: center;
    }
    #staff-list-01 .profile .text {
        width: 100%;
        text-align: center;
    }
    #staff-list-01 .profile .text .font-small {
        font-weight: 300;
    }


    #events-banner-fullscreen-01 {
        min-height: initial;
        height: auto !important;
        max-height: initial;
        text-align: center;
    }
    #events-banner-fullscreen-01 > div{
        padding: 200px 100px;
    }
    #events-banner-fullscreen-01 > div h1 {
        font-size: 80px;
    }
    #events-banner-fullscreen-01 > div .padding-top-5.padding-bottom-20 {
        font-size: 48px;
    }
    #events-banner-fullscreen-01 > div .font-small {
        font-weight: 300;
    }
    #events-banner-fullscreen-01 > div > .padding-50 > div .abs {
        position: relative;
        margin-top: 80px;
    }
    #events-banner-fullscreen-01 > div > .padding-50 > div .abs > div {
        display: block;
        margin-top: 100px;
        width: 100%;
        text-align: center;
    }


    
    #events-list-01 {
        text-align: center;
    }
    #events-list-01 .heading {
        line-height: 120px;
    }
    #events-list-01 .heading::after {
        left: 270px;
        bottom: -40px;
        border-top: solid 40px black;
        border-left: solid 40px transparent;
        border-right: solid 40px transparent;
    }
    #events-list-01 > .padding-horiz-100 {
        padding: 0 100px;
    }
    #events-list-01 > .padding-horiz-100 .padding-horiz-20 {
        padding: 0px;
    }
    #events-list-01 > div .padding-100 {
        padding: 200px 100px;
    }
    #events-list-01 .width-70-percent,
    #events-list-01 .width-30-percent {
        width: 100%;
        text-align: center;
    }
    #events-list-01 .width-70-percent {
        margin-bottom: 60px;
    }
    #events-list-01 .width-30-percent {
        margin: 0px;
    }
    #events-list-01 .width-30-percent > div:first-child {
        display: none;
    }
    #events-list-01 .width-30-percent > div:last-child {
        background: #fff;
        margin: 0px;
        padding: 26px 40px;
        font-size: 32px;
        font-weight: 500;
        color: #333;
        text-transform: uppercase;
    }


    #event-single-03 {
        padding: 200px 100px;
        min-height: initial;
        height: auto !important;
        text-align: center;
    }
    #event-single-03 > div > div > div .half-width {
        margin-left: 0px;
        width: 100%;
    }
    #event-single-03 > div > div > div .half-width > div h1 {
        font-size: 80px;
        color: #fff;
    }
    #event-single-03 > div > div > div .half-width > div .padding-right-100 {
        padding: 0 0 20px 0;
        font-weight: 300;
    }
    #event-single-03 > div > div > div .half-width:last-child {
        margin-top: 40px;
        text-align: center;
    }
    #event-single-03 > div > div > div .half-width:last-child .font-large{
        font-weight: 300;
    }
    #event-single-03 > div > div > .abs {
        position: relative;
        margin-top: 80px;
    }
    #event-single-03 > div > div > .abs .avatar-extra-small {
        display: inline-block;
    }
    #event-single-03 > div > div > .abs .half-width:first-child {
        margin-bottom: 40px;
    }
    #event-single-03 > div > div > .abs .half-width:first-child .padding-top-20.padding-bottom-10 {
        font-weight: 400;
    }
    #event-single-03 > div > div > .abs .half-width:first-child .font-small {
        font-weight: 300;
    }
    #event-single-03 > div > div > .abs .half-width:last-child .btn{
        color: #fff;
    }
    #event-single-03 > div > div > .abs .half-width:last-child > div:last-child {
        text-align: left;
    }


    #contact-05{
        padding: 0px;
    }
    #contact-05 .content {
        padding: 0px;
        width: 100%;
        text-align: center;
    }
    #contact-05 .content .top{
        margin: 0px;
        padding: 100px;
    }
    #contact-05 .content .top .valign-top {
        padding: 0px;
        width: 100%;
    }
    #contact-05 .content .top .valign-top:first-child {
        margin-bottom: 20px;
        width: 100%;
        font-weight: 400;
    }
    #contact-05 .content .top .valign-top:first-child h1 {
        margin: 0px;
        font-size: 80px;
    }
    #contact-05 .content .top .valign-top:first-child .subtitle {
        font-size: 40px;
        font-weight: 400;
    }
    #contact-05 .content .top .valign-top:last-child{
        width: 100%;
        font-weight: 400;
    }
    #contact-05 .content .bottom {
        background: #191919;
        padding: 100px;
    }
    #contact-05 .content .bottom form > div > p:first-child {
        padding: 0px;
        width: 100%;
    }
    #contact-05 .content .bottom form > div > p:last-child {
        width: 100%;
    }
    #contact-05 .content .bottom form > div > p:last-child span {
        margin: 0px;
        padding: 0px;
        width: 100%;
    }
    #contact-05 .content .bottom form > div > p:last-child span:last-child:not(.btn) {
        margin-top: 84px;
    }
    #contact-05 .content .bottom form > div > p:last-child .btn {
        padding: 32px;
    }
    /* ----- END | WEBSITE CUSTOMIZATIONS ----- */
}