/* Custom styles that can't be easily converted to Tailwind utilities */

.popup {
    background-color: #ffffff;
    width: 660px;
    padding: 30px 40px;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    top: 50%;
    border-radius: 8px;
    display: none;
    font-family: "Poppins",sans-serif;
    text-align: center;
    z-index:1000;
}

.popup button {
    display: block;
    margin:  0 0 20px auto;
    background-color: transparent;
    font-size: 1.25em;
    color: #ffffff;
    background: #03549a;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup a {
    display: block;
    width: 150px;
    position: relative;
    margin: 10px auto;
    text-align: center;
    background-color: #0f72e5;
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
}

.ribbon h2 {
   position: relative;
   width: 50%;
   font-size: 1.5em;
   font-weight: bold;
   padding: 6px 20px 6px 70px;
   margin: -20px 10px 10px -35px;
   color: #FFF;
   background-color: #FFB03B;
   text-shadow: 0px 1px 2px #FFB03B;
   -webkit-box-shadow: 0px 2px 4px #888;
   -moz-box-shadow: 0px 2px 4px #888;
   box-shadow: 0px 2px 4px #880327;
}

.ribbon h2:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 0px;
    top: 100%;
    border-width: 5px 10px;
    border-style: solid;
    border-color: #880327 #880327 transparent transparent;
}

.infobox-container {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: auto;
}

.infobox {
    width: 250px;
    padding: 10px 5px 5px 5px;
    margin:10px;
    position: relative;
    z-index: 90;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    background: #B64926;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#B64926), to(#B64926));
    background-image: -moz-linear-gradient(top,#B64926,#B64926);
    color: #fff;
    font-size: 90%;
}

.infobox h3 {
    position: relative;
    width: 270px;
    color: #fff;
    padding: 10px 5px;
    margin: 0;
    left: -15px;
    z-index: 100;
    -webkit-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    box-shadow: 0px 0px 3px rgba(0,0,0,0.55);
    background: #FFB03B;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FFB03B), to(#FFB03B));
    background-image: -moz-linear-gradient(top,#FFB03B,#FFB03B);
    font-size: 160%;
    text-align: center;
    text-shadow: #2187c8 0 -1px 1px;
    font-weight: bold;
}
 
.infobox-container .triangle-l {
    border-color: transparent #880327 transparent transparent;
    border-style: solid;
    border-width: 13px;
    height: 0;
    width: 0;
    position: absolute;
    left: -13px;
    top: 49px;
    z-index: 0;
}

.infobox-container .triangle-r {
    border-color: transparent transparent transparent #880327;
    border-style: solid;
    border-width: 13px;
    height: 0;
    width: 0;
    position: absolute;
    left: 258px;
    top: 48px;
    z-index: 0;
}

.infobox a {
    color: #35b0ff;
    text-decoration: none;
    border-bottom: 1px dotted transparent;
}

.infobox a:hover, .infobox a:focus {
    text-decoration: none;
    border-bottom: 1px dotted #35b0ff;
}

#thover {
    position:fixed;
    background:#000;
    width:100%;
    height:100%;
    opacity: .6
}
  
#tpopup {
    position:absolute;
    background:#fff;
    left:50%;
    top:50%;
    border-radius:5px;
    margin-left:-400px; /* width/2 + padding-left */
    margin-top:-150px; /* height/2 + padding-top */
    text-align:center;
    box-shadow:0 0 10px 0 #000;
}

#tclose {
    position:absolute;
    background:black;
    color:white;
    right:-15px;
    top:-15px;
    border-radius:50%;
    width:30px;
    height:30px;
    line-height:30px;
    text-align:center;
    font-size:0.5em;
    font-weight:bold;
    font-family:'Arial Black', Arial, sans-serif;
    cursor:pointer;
    box-shadow:0 0 10px 0 #000;
}

/* Navbar styles */
.navbar-nav > li > a {
    font-weight: bold;
    text-transform: uppercase;
    color:#fff;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
    opacity: 0.8;
}

.navbar-nav > .active > a,
.navbar-nav > .active > a:hover,
.navbar-nav > .active > a:focus {
    color: #fff;
    background-color: transparent;
    opacity: 1;
}

/* Contact form styles */
#mail-status {
    padding: 12px 20px;
    width: 100%;
    display:none; 
    font-size: 1em;
    font-family: "Georgia", Times, serif;
    color: rgb(40, 40, 40);
}

.error {
    background-color: #F7902D;
    margin-bottom: 40px;
}

.success {
    background-color: #48e0a4;
}

