@import "fonts.css"; 
@import "awesome.css"; 
@import "pagination.css"; 

:root {
    --brown: #82312d;
    --yellow: #cea06c;
    --mustard: #ecbd12;
    --teal: #8aa291;
    /* --tealGlow: #0a8a30; */
     /* --tealGlow: red */
    --tan: #c8b06f;
    /* #fcde67  */
    --alternateHighlight:  rgb(238, 238, 238);
  }

html, body { height: 100vh;}
body { 
    margin: 0; 
    font-family: "Myriad";
    font-size: 18px;
}

.shadow{
    -webkit-box-shadow: 1px 4px 16px 6px rgba(0,0,0,0.14); 
    box-shadow: 1px 4px 16px 6px rgba(0,0,0,0.14);
}

h2{
    border-bottom: 1px solid  black;
    color: black;
    width: 100%;
    font-family: "Cormorant Garamond";
    font-size: 35px;
    padding-bottom: 0px;
    /* white-space: nowrap; */
    margin: 0 0 25px 0;
}

h3{
    border-bottom: 1px solid black;
    font-family: "Myriad";
    font-size: 25px;
    margin-bottom: 10px;
}

.error{
    color: red;
    font-size: .8em;
    display: none;
    padding-left: 3px;
}

.show-error{
    display: inline-block;
}

.error-text{
    color :red;
}

.confirm{
    color: green;
}



.flex{
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
}

.flex>div {
    flex: 1;
  }

/* .router-container {
    position: relative;
    height: auto;
	min-height: 100%;
    width: 100%;
} */


.container{
  max-width: 1400px;
  margin: auto;
  padding: 50px 60px;
}

.hide{
    display: none;
}

.show{
    display: block;
}

button{
    border: 1px solid var(--teal);
    background: var(--teal);
    /* border: 1px solid var(--mustard);
    background: var(--mustard); */
    border-radius: 3px;
    line-height: 20px;
    height: 42px!important;
    display: block;
    color: #fff;
    padding: 5px 15px;
    cursor: pointer;

    transition: .4s;
    font-size: 16px;
    margin-top: 10px!important;
}

button:hover, :focus{
    background: var(--tealGlow);
    border-color: var(--tealGlow);
    /* color: #fff; */
    color: var(--teal);
}


button:disabled{
    opacity: .5;
    cursor: auto;
}

button:disabled:hover{
    background: var(--teal);
    border-color: var(--teal);
    color: #fff;
}



button.red {
    border-color: red;
    background: red;
}

button.red:hover {
    background: white;
    color: red;
}

/* Underline styles */
a {
    display: inline;
    position: relative;
    padding: 0.1em 0;
    overflow: hidden;
    color: var(--brown);
    text-decoration: none;
}

a:hover {
   color: #000;
}
  
/* Fade in */
a::after {
    content: '';
    position: absolute;
    bottom: 1.5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    opacity: 0;
    transition: opacity 300ms, width 300ms;
}

  a:hover::after {
    width: 100%;
    opacity: 1;
  }



@media only screen and (max-width: 700px) {
    .flex{
        display: block; 
    }

    .flex>div {
        flex: 0;
      }
}

@media only screen and (max-width: 600px) {
    .container{
        padding: 20px 20px;
        margin-top: 40px;
    }
}


