.topbar-responsive {
  background: #fff;
}

.topbar-responsive .topbar-responsive-logo {
  color: #fefefe;
  vertical-align: middle;
  background: white;
  width: 100px;
}

.topbar-responsive .topbar-responsive-logo img {
  background: white;
  width: 400px;
}

.wrap {
  /*padding: 1rem;*/
  background: white;
}

.topbar-responsive .menu {
  background: #fff;
}

.topbar-responsive .menu li:last-of-type {
  margin-right: 0;
}

.topbar-responsive .menu a {
  color: #fefefe;
  transition: color 0.15s ease-in;
}

.topbar-responsive .menu a:hover {
  color: #597a21;
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive .menu a {
    padding: 0.875rem 0;
  }
}

.topbar-responsive .menu .topbar-responsive-button {
  color: #597a21;
  border: none;
  transition: all 0.5s;
  font-weight: bold;
  margin-left: 20px;
}

.topbar-responsive .menu .topbar-responsive-button:hover {
  color: #597a21;
  border-color: #c6d1d8;
  border-bottom: 1px solid;
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive .menu .topbar-responsive-button {
    width: 100%;
    margin: 0.875rem 0;
  }
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive {
    padding: 0.75rem;
  }
  .topbar-responsive .top-bar-title {
    position: relative;
    width: 100%;
  }
  .topbar-responsive .top-bar-title span {
    position: absolute;
    right: 0;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 0.25rem 0.45rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .topbar-responsive .top-bar-title span .menu-icon {
    margin-bottom: 4px;
  }
}

.no-border {
  border: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.logo-small {
  width: 70%;
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.top {
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
  color: white;
  text-shadow: -4px 0px 25px #000000;
  transition: all 0.5s;
  background-color: #597a21;
  background-image: url(/Images/wall_hp_block.jpg);
  background-repeat: no-repeat;
  background-position-y: -200px;
  margin-bottom: 1rem;
}

top:hover {
  background-color: blue;
  background-image: none;
  text-decoration: none;
  transition: all 0.5s;
}


@media screen and (max-width: 39.9375em) {
  .logo-small {
    width: 100%;
  }
}

a {
  transition: all 0.5s;
  color: #597a21;
}

a:hover {
  text-decoration: underline;
  transition: all 0.5s;
}

.callout.secondary {
  background-color: #F8F8F8;
  color: #0a0a0a;
}

.full {
  width: 100vw;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@media screen and (max-width: 39.9375em) {
  .topbar-responsive-links {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    width: 100%;
    -webkit-animation: fadeIn 1s ease-in;
    animation: fadeIn 1s ease-in;
  }
}

.social-footer {
  padding: 1rem;
  background: #597a21;
  margin-top: 1rem;
  //*display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;*//
}

.social-footer-icons {
    float: right;
}

.social-footer .social-footer-icons li:last-of-type {
  margin-right: 0;
}

.social-footer .social-footer-icons .fa {
  font-size: 1.3rem;
  color: #fefefe;
  opacity: 0.7;
}

.social-footer .social-footer-icons .fa:hover {
  opacity: 1;
}

.social-footer-left{
  color: white;
}

.help-block.text-danger {
  color: red;
}

.alert.alert-success {
  color: #597a21;
  margin-bottom: 20px;
}

.mytooltip {
    position: relative;
    display: inline-block;
    color: #597a21;
    font-weight: bold;
}

.mytooltip .mytooltiptext {
    visibility: hidden;
    width: 180px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.mytooltip:hover .mytooltiptext {
    visibility: visible;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    text-align: left;
}

/* The Close Button Modal */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #597a21;
    text-decoration: none;
    cursor: pointer;
}

.portal {
  background-color: #597a21;
  color: #fff;
  padding: 1px 3px 1px 3px;
  font-weight: bold;
}

.videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}