html, body {
    margin-top: 0px;
    margin-left: 0px;
    margin-right: 0px;
    width: 100%;
    height: 100% !important;
}

/* Full Screen Background Image
.bg-index {
    background-image: url("../images/index-slideshow/1.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    z-index: -10000; 
}
*/
.bg-lightgrey {
    background-color: #d8d8d8; 
}

.bg-black {
    background-color: #000;
}

#body-wrapper {
    width: 1000px;
    max-width: 1000px;
    height: 100%;
    min-height: 100% !important;
    z-index: -100;
    border: 0px solid #fff;
    border-style: solid;
    margin: 0 auto 0 auto;
    display: table !important;
}

.table-wrap {
    border: 0px #000;
    border-style: solid;
    width: 1000px;
    height: 100%;
    min-height: 100%;
}

.footer {
    height: 250px;
    width: 100% !important;
    background-color: #2a2a2a;
    border: 0px solid white;
    border-spacing: 0px;
    -webkit-filter: opacity(0.8);
    -moz-filter: opacity(0.8);
    -o-filter: opacity(0.8);
    filter: opacity(0.8);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.center {
    align-content: center;
    align-items: center;
    align-self: center;
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.v-center {
    vertical-align: middle;
    position: relative;
}

.top {
    vertical-align: top;
    position: relative;
}

img {
    border: 0px solid;
}

.hidden {
    display: none;
}

.background-full {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: fixed !important;
    min-width: 100%;
    width: auto;
    min-height: 100%;
    height: auto;
    z-index: -1000;
}

.blur-5 {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    filter: blur(5px);
}

.contact-text {
    width: 400px;
    height: 50px;
    border: 0px;
    border-radius: 10px;
    font-family: opensans-light;
    font-size: 25px;
    outline: 0px;
    padding-left: 10px;
    padding-right: 10px;
}

.select {
    border-radius: 10px;
    border: 0px;
    width: 250px;
    height: 50px;
    font-family: avenir-next;
    font-size: 20px;
	outline: none;
    cursor: pointer;
}

.contact-textarea {
    width: 500px;
    height: 300px;
    border: 0px;
    border-radius: 10px;
    font-family: opensans-light;
    font-size: 25px;
    outline: 0px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    resize: none;
}

.contact-email-submit {
    width: 200px;
    height: 50px;
    background-color: #f00;
    font-family: opensans-light;
    font-size: 25px;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #f00;
}
.contact-email-submit:hover {
    cursor: pointer;
    background-color: #ff5050;
    border: 1px solid #ff5050;
}
.contact-email-submit:active {
    cursor: pointer;
    background-color: transparent;
    color: #f00;
    border: 1px solid #f00;
}

/* ====== Zoom effect ====== */

.mfp-zoom-in {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  transform: scale(0.8);
}
.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}
.mfp-zoom-in.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1);
}
.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(0.8);
  opacity: 0;
}
.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/* text-based popup styling */
.white-popup {
    position: relative;
    background: #FFF;
    padding: 25px;
    width: auto;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
}

/* Form Arrow Animation */
.arrow {
	position: relative;
    top: 5px;
	animation: arrow_move 3s infinite;
	-webkit-animation: arrow_move 3s infinite;
	z-index: -1000;
    display: inline-block;
}

@-webkit-keyframes arrow_move {
    0% {left: 70px; opacity: 0;}
    25% {left: 40px; opacity: 1.0;}
    50% {left: 40px; opacity: 1.0;}
    100% {left: 10px; opacity: 0;}
}

@-moz-keyframes arrow_move {
    0% {left: 70px; opacity: 0;}
    25% {left: 40px; opacity: 1.0;}
    50% {left: 40px; opacity: 1.0;}
    100% {left: 10px; opacity: 0;}
}

@-o-keyframes arrow_move {
    0% {left: 70px; opacity: 0;}
    25% {left: 40px; opacity: 1.0;}
    50% {left: 40px; opacity: 1.0;}
    100% {left: 10px; opacity: 0;}
}

@keyframes arrow_move {
    0% {left: 70px; opacity: 0;}
    25% {left: 40px; opacity: 1.0;}
    50% {left: 40px; opacity: 1.0;}
    100% {left: 10px; opacity: 0;}
}

/* Form Submit Animation */
.shake {
    position: relative;
    -webkit-animation: shake_motion 0.3s;
    -moz-animation: shake_motion 0.3s;
    -o-animation: shake_motion 0.3s;
    animation: shake_motion 0.3s;
}

@-webkit-keyframes shake_motion {
    0% {left: 6px;}
    20% {left: -6px;}
    40% {left: 6px;}
    60% {left: -6px;}
    80% {left: 6px;}
    100% {left: 0px;}
}

@-moz-keyframes shake_motion {
    0% {left: 6px;}
    20% {left: -6px;}
    40% {left: 6px;}
    60% {left: -6px;}
    80% {left: 6px;}
    100% {left: 0px;}
}

@-o-keyframes shake_motion {
    0% {left: 6px;}
    20% {left: -6px;}
    40% {left: 6px;}
    60% {left: -6px;}
    80% {left: 6px;}
    100% {left: 0px;}
}

@keyframes shake_motion {
    0% {left: 6px;}
    20% {left: -6px;}
    40% {left: 6px;}
    60% {left: -6px;}
    80% {left: 6px;}
    100% {left: 0px;}
}

/* Spacers */
.spacer-100 {
    height: 100px;
    min-height: 100px;
}
.spacer-90 {
    height: 90px;
    min-height: 90px;
}
.spacer-80 {
    height: 80px;
    min-height: 80px;
}
.spacer-70 {
    height: 70px;
    min-height: 70px;
}
.spacer-60 {
    height: 60px;
    min-height: 60px;
}
.spacer-50 {
    height: 50px;
    min-height: 50px;
}
.spacer-40 {
    height: 40px;
    min-height: 40px;
}
.spacer-30 {
    height: 30px;
    min-height: 30px;
}
.spacer-20 {
    height: 20px;
    min-height: 20px;
}
.spacer-10 {
    height: 10px;
    min-height: 10px;
}


.welcomeTo, .topkoteLogo {
    position: relative;
}