/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@media (min-width:768px) {

  .mobile-contact-wrap,
  #mobile-modal {
    display: none !important;
  }

  .mobile-modal-wrap {
    padding: 3% !important;
  }

  .mobile-modal-content {
    max-width: 800px;
    margin: auto !important;
    overflow-x: hidden !important;
  }

  /* width */
  .mobile-modal-content::-webkit-scrollbar {
    width: 8px;
  }

  /* Track */
  .mobile-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Handle */
  .mobile-modal-content::-webkit-scrollbar-thumb {
    background: #888;
  }

  /* Handle on hover */
  .mobile-modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}

@media (max-width:768px) {
  .desktop-contact {
    display: none !important;
  }

}

#close-mobile-modal {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 111;
}

.mobile-modal-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  margin: auto;
  top: 0px;
  z-index: 9999999;
  left: 0px;
  background: #fff;
}

.mobile-modal-content {
  margin: 10px;
  border-radius: 5px;
  overflow: scroll;
  height: 100%;
  max-height: calc(100% - 85px);
}

#mobile-modal.active {
  display: block !important;
}

.mobile-contact-wrap {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 10vh;
  max-height: 75px;
  min-height: 50px;
  background: whitesmoke;
  z-index: 999999;
  padding: 8px;
  box-sizing: border-box;
}

.mobile-contact {
  display: flex;
  height: 100%;
}

.mobile-button {
  background: #021034;
  border: unset !important;
  outline: none !important;
  color: white !important;
  border-radius: 5px !important;
}

.big-button {
  color: white !important;
  font-weight: 500 !important;
  margin-right: 5px;
  flex: 3;
  font-size: 16px;
}
.mobile-button.small-button{
  background: #AFA161;
}
.small-button {
  margin-left: 5px;
  flex: 1;
}

.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  display: flex;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.mobile-contact .big-button path {
  stroke: white;
}

.mobile-contact .small-button path {
  fill: white;
}

.mobile-contact svg {
  vertical-align: bottom;
}
.desktop-contact.btn{
	display:none !important;
}