@import "theme_colors_and_fonts.css";
/* * * * * * * * * * 
/* SCSS VARIABLES  */
/* ~~~~~~~~~~~~~~~~*/
/* Fonts */
@font-face {
  font-family: MsMadi;
  src: url(https://menholiday.jeffreyscottagency.com/wp-content/themes/base-theme/assets/fonts/MsMadi-Regular.ttf);
}
/* Colors*/
/* Other variables */
/* Mixins */
/* ~~~~~~~~~~~~~~~~*/
/* END VARIABLES   *
 * * * * * * * * * */
/* * * * * * * * * * 
 * GLOBAL          */
/* ~~~~~~~~~~~~~~~~*/
body {
  font-family: "Montserrat", sans-serif;
  color: #333;
}
/* Header */
#masthead .is-style-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#masthead .main-navigation ul {
  justify-content: end;
  margin-left: 2rem;
}
/* ~~~~~~~~~~~~~~~~*/
/* END GLOBAL      *
 * * * * * * * * * */
/* * * * * * * * * * 
 * TYPOGRAPHY      */
/* ~~~~~~~~~~~~~~~~*/
a, a:visited {
  color: inherit !important;
}
/* ~~~~~~~~~~~~~~~~~~*/
/* END TYPOGRAPHY    *
 * * * * * * * * * * */
/* * * * * * * * * * *
 * BLOCK STYLES      */
/* ~~~~~~~~~~~~~~~~~~*/
/* Buttons */
.is-style-fill .wp-block-button__link {
  border-radius: 0;
  padding: 1rem 2rem;
  text-transform: uppercase;
}
/* Columns */
.is-style-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}
.is-style-no-gap {
  gap: 0;
}
.wp-block-columns {
  margin-bottom: 0;
}
/* ~~~~~~~~~~~~~~~~~~*/
/* END BLOCK STYLES  *
 * * * * * * * * * * */
.message {
  color: #888;
  background-color: #ddd;
  padding: 1.7em;
  font-weight: 600;
  border-radius: 1em;
  font-size: 1.1em;
}
#create_post[disabled] {
  color: #888;
  border-color: #888;
  background-color: #ddd;
  cursor: not-allowed;
  pointer-events: none;
}
.error.message {
  color: #b00905;
  background-color: #b009051c;
  padding: 1.7em;
  font-weight: 600;
  border-radius: 1em;
  font-size: 1.1em;
}
.photo .errorMessage {
  margin-top: 1em;
}
.loader {
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.loader .dot {
  display: block;
  width: 2em;
  height: 2em;
  background: #2F4A2B;
  border-radius: 100%;
  animation: bob 1s ease infinite alternate;
  transform: translate3d(0, -1em, 0);
  margin: 2em 0.5em;
  will-change: transform;
}
.loader .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.loader .dot:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes bob {
  0% {
    transform: translate3d(0, -1em, 0);
  }
  100% {
    transform: translate3d(0, 1em, 0);
  }
}
/* * * * * * * * * * *
 * MEDIA QUERIES     */
/* ~~~~~~~~~~~~~~~~~~*/
@media screen and (max-width: 600px) {
  #masthead .is-style-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #masthead .main-navigation #primary-menu {
    position: fixed;
    width: 100vw;
    transform: translateX(100%);
    transition: transform 0.5s ease;
    left: 0;
    right: 0;
    margin-top: 2rem;
  }
  #masthead .main-navigation.toggled #primary-menu {
    transform: translateX(0%);
    padding: 2rem;
    background: #fff;
    box-shadow: -2px 0px 6px rgba(0, 0, 0, 0.2);
  }
  #masthead .main-navigation ul {
    justify-content: end;
    margin-left: 2rem;
  }
  #masthead .menu-toggle {
    border-radius: 0;
    padding: 1rem 2rem;
    text-transform: uppercase;
    margin-right: 0;
    margin-left: auto;
  }
}
/* ~~~~~~~~~~~~~~~~~~*/
/* END MEDIA QUERIES *
 * * * * * * * * * * */
