/*
 * --------- SITE VARIABLES ---------
 */
 @font-face {
    font-family: FontRegular;
    src: url('fonts/Inter-Regular.ttf');
  }

  @font-face {
    font-family: FontMedium;
    src: url('fonts/Inter-Medium.ttf');
  }

  @font-face {
    font-family: FontSemiBold;
    src: url('fonts/Inter-SemiBold.ttf');
  }

  @font-face {
    font-family: FontBold;
    src: url('fonts/Inter-Bold.ttf');
  }

 :root {
    /* colors */
    --primary-green: #5e8d9a;
    --secondary-green: #33535a;
    --orange: #CE8147;
    --blue: #226e93;
    --accent-light: #e9b397;
    --btn-hover: #330036;
    --link-color: #C73E1D;
    --link-hover: #226e93;
    --red: rgb(192, 0, 0);
    --white-overlay-light: rgba(255, 255, 255, 0.8);
    --white-overlay-dark: rgba(255, 255, 255, 0.2);

    /* fonts */
    --bodycopy: FontRegular, Helvetica, Arial sans-serif;
    --heads: FontBold, Helvetica, Arial sans-serif;
}

/**
 * Body
 */

body {
    margin: 2px;
    font-family: var(--bodycopy);
    background: linear-gradient(to bottom, #005b94, #0e2f44);
    color: white;
    /* padding: 3rem 2rem; */
    /* text-align: center;
    background-color: rgba(34, 110, 147, 1); 
    background-image: url('/NWMC/2025/template/images/ocean_bg.jpg'); 
    background-position: -10px center; 
    background-size: cover; */
}

* {
    box-sizing: border-box;
}

/**
 * Header
 */
#main-header {
    /* width: 95%;
    max-width: 1200px; */
    margin: 10px auto;
    display: flex;
    flex-direction: row-reverse;


}

#header {
    width: 95%;
    max-width: 1200px;
    margin: 10px auto;
    background-color: #fff;
    border: 1px solid #000;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#header div {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
    text-align: right;
    font-weight: bold;
}

#header div img {
    width: 100%;
}

#header-actions {
    margin: 10px;
    text-align: right;
    min-width: 50px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 2em;
    font-family: FontSemiBold, Arial, Helvetica, sans-serif;
    font-size: 22px;
}

.header {
    color: white;
    width: 100%;
    /* height: 250px; */
    /* background-color: rgba(34, 110, 147, 1); */
    /* background-image: url('/NWMC/2025/template/images/ocean_bg.jpg'); */
    /* background-position: -10px center; */
    /* background-size: cover; */
    display: flex;
    /* padding: 1rem; */
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 1rem;
    /* padding: 40px; */
}

#header-actions a {
    color: #fff;
}
.header-logo{
    width: 200px;
    margin-right: 20px;
}
.header-words {
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}
.header-words .title{
    font-size: 2rem;
}
.br-whitespace{
    display: none;
}
.header-words .dates{
    font-size: 1.4rem;
    line-height: 1.8;
}

.header-logo img {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}
.mobile-header-words {
    display: none;
    font-family: FontSemiBold;
}

@media screen and (max-width: 1200px){
    .header-words .title{
        font-size: 1.2rem;
    }
    .header-words .dates{
        font-size: 1rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 845px){
    .header {
        flex-direction: column;
        flex: 2;
        padding-left: 15px;
        align-items: flex-start;
    }

    #header-actions {
        flex: 1;
    }
    .header-words {
        text-align: center;
    }
    .header-logo{
        max-width: 200px;
        padding: 20px 20px 10px 0;
        margin-right: 0;
    }
}
@media screen and (max-width: 600px){
    .header {
        height: auto;
    }
    .header-words{
        display: none;
    }
    .mobile-header-words {
        display: block;
    }
    .bullet-whitepsace{
        display: none;
    }
    .br-whitespace{
        display: inline;
    }

    #header-actions {
        flex-direction: column;
        justify-content: flex-start;
        gap: 1rem;
    }
}
@media screen and (max-width: 400px){
    .header-words .title{
        font-size: 1.4rem;
    }
    .header-words .dates{
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

#content #view-crm-account-dashboard {
    display: flex;
    justify-content: space-evenly;
}

/**
*   Dashboard
*/

/* @media screen and (min-width: 1200px) {
    #view-crm-account-dashboard {
        display: flex;
        justify-content: space-evenly;
    }
} */


/**
 * Content
 */

#content {
    /* width: 95%;
    max-width: 1200px; */
    margin: 10px auto;
    padding: 40px;
    background-color: #fff;
    min-height: 600px;
    /* border-radius: 10px; */
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    /* border: 1px solid var(--blue); */
}


/**
 * Footer
 */

#footer {
    width: 95%;
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px 40px;
    color: #fff;
    /* background-color: rgba(34, 110, 147, 1);
    background-image: url('/NWMC/2025/template/images/ocean_bg.jpg');
    background-position: bottom center;
    background-size: cover; */
    /* border: 1px solid var(--blue); */
    text-align: left;
    font-size: 0.9rem;
}
#footer h3{
    margin: 10px 0;
    color: #fff;
}
#footer a{
    color: #fff;
    text-decoration: underline;
}

/* #pre-footer{
    margin-top: 10px;
    width: 95%;
    max-width: 900px;
    margin: 25px auto;
    background-color: #fff;
}

#footer-line{
    height: 3px;
    width: 100%;
    background-color: var(--blue);
}

#pre-footer p{
    margin: 0 5px;
}*/


/**
 * Flexbox
 */

.flexbox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flexbox div {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border: 1px dotted #aaa;
    padding: 5px 15px;
    margin: 10px;
}



/**
 * Registration
 */

#regOptions {
    width: 75%;
}

#regOptions tr:nth-child(odd) .regPriceCurrent {
    background-color: #DBC2B9;
}

#regOptions .regHeaderCurrent {
    background-color: #DBC2B9;
    border-bottom: 1px solid #000;
    text-align: center;
    width: 150px;
    color: #000000;
}

#regOptions .regHeaderNotCurrent {
    background-color: #777777;
    border-bottom: 1px solid #000;
    text-align: center;
    width: 150px;
    color: #ffffff
}

#regOptions .regPriceCurrent {
    text-align: center;
    height: 48px;
    background-color: #fff;
}

#regOptions .regPriceCurrent input[type='radio'] {
    margin: 3px;
}

#regOptions .regPriceNotCurrent {
    text-align: center;
    height: 48px;
    background-color: #777777;
    color: #ffffff;
}

/**
 * Icons
 */

img[src^='/GLOBAL/icons'] {
    vertical-align: -4px;
}


.asterisk {
    display: inline-block;
    color: red;
    font-weight: bold;
    font-size: 1rem;
}

.cfp_profile {
    margin-bottom: 15px;
}

/*
*  Header
*/

.new_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.row_middle {
    height: 50%;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.new_header_title {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    border: 4px solid white;
    font-size: 34pt;
    font-weight: 700;
    text-align: center;
    text-justify: space-evenly;
    text-transform: none;
}

.new_header_row a {
    text-decoration: none;
    color: white;
    border: none;
}

.header_date_time {
    width: 40%;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding-right: 25px;
}

.new_header_row img {
    /* max-width: 115vw; */
    margin-top: 10px;
}

/* @media screen and (max-width: 800px)
{
	.desktop_only {
		display: none;
	}
} */


@media screen and (max-width: 1300px) {
    #regOptions {
        width: 100%;
    }
}
@media screen and (max-width: 768px)
{
    .new_header_row img  {
        width: 100%;
    }


    
}

/*
* Styleguide
*/
.styleguide {
    padding: 20px;
}

/*
* --------- LISTS ---------
*/

ul.deadlines li {
    padding: 10px 0;
    text-align: left;
}

ol.deadlines li {
  padding: 5px 0;
  text-align: justify;
}

/*
* --------- INPUTS ---------
*/

label {
    display: inline-block;
    width: calc(100% - 40px);
    vertical-align: top;
    margin-bottom: 14px;
    font-size: 1rem;
    cursor: pointer;
}
td label {
    vertical-align: 0px;
}

input[type="radio"],
input[type="checkbox"]{
    appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid var(--primary-green);
}
input[type="checkbox"] {
    border-radius: 0.25em;
}
input[type="checkbox"]:checked {
    background-color: var(--primary-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

input[type="radio"] {
    background-color: #fff;
    border-radius: 50%;
    float: left;
}
input[type="radio"]:checked {
    background-color: var(--primary-green);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

input[type="button"],
input[type="submit"] {
    display: inline-block;
    background-color: var(--blue);
    border: 1px solid transparent;
    border-radius: 6px;
    transition: ease all 0.4s;
    color: white;
    padding: 10px 20px;
    font-family: var(--heads);
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

input[type="button"]:hover,
input[type="submit"]:hover {
    background-color: var(--btn-hover);
    border: 1px solid var(--btn-hover);
    color: #ffffff;
}

input[type="text"],
input[type="select"],
input[type="text-area"],
input[type="password"],
input[type="email"],
select {
    width: 100%;
    max-width: 600px;
    font-size: 1.2rem;
    font-weight: 400;
    padding: 10px 16px;
    border: 1px solid #b2b2b2;
    border-radius: 5px;
    margin-bottom: 10px;
    font-family: var(--heads);
    color: #212529;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    line-height: 1.5;
}
input[type="text"]:focus,
input[type="select"]:focus,
input[type="text-area"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus {
    border: 1px solid var(--blue);
    box-shadow: unset !important;
    background: #fff;
    outline: 0;
}

input[type="text"]::placeholder,
input[type="select"]::placeholder,
input[type="text-area"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
select option::placeholder {
   font-family: var(--bodycopy);
   font-size: 1.2rem;
}

textarea {
    border: 1px solid #b2b2b2;
    padding: 3px 4px;
    width: 100%;
    margin: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 6px;
    border-radius: 5px;
    height: 100px;
    box-sizing: border-box;
}


/*
* --------- TABLES ---------
*/


th, tr, td, table {
    border-collapse: collapse;
    padding: 5px;
}
tr:nth-child(odd) {
    background: #f1f1f1;
}
th {
    text-align: left;
    background-color: var(--primary-green);
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    font-family: var(--heads);
    padding: 0.5rem 0.625rem 0.625rem;
}
td {
    padding: 10px 10px;
}

.reg-mem-table {
    margin-bottom: 3rem;
}

.regform-table tr {
    margin-bottom: 1rem;
}

/*
 * --------- GENERIC STYLES ---------
 */

body {
    font-family: var(--bodycopy);
    font-size: 18px;
    line-height: 1.35;
    color: #000000;
    margin: 0;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5 {
    font-family: var(--heads);
    color: var(--blue);
    margin: 0;
    text-transform: none;
}
h1 {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blue);
}
h2 {
    font-weight: 500;
    font-style: normal;
    margin: 30px 0 20px;
}
h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.8rem 0 0.8rem;
    color: var(--secondary-green);
}
h4 {
    font-size: 1.3rem;
    color: var(--secondary-green);
    margin-top: 1.2rem;
    margin-bottom: 0.3rem;
}
h5 {
    color: var(--red);
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--link-color);
}

a.white{
    color: #ffffff;
}

a:hover {
    text-decoration: none;
    color: var(--link-hover);
}



a.learn-more {
    color: var(--link-hover);
    font-weight: bold;
    font-size: 14px;
    font-family: var(--heads);
    text-decoration: none;
}

a.learn-more:hover {
    color: var(--link-hover);
}


p {
    margin: 0 0 1rem;
}

p.dm{
    font-family: var(--heads);
    color: #000000;
}

b, strong{
    font-weight: 700;
}

li{
    margin-bottom: 1rem;
}

/* --------- UTILITY CLASSES --------- */

.box {
    border: 3px solid #312f32;
    padding: 2em;
    display: inline-block;
}

.w-100 {
    width: 100%;
}

.color-green {
    color: var(--primary-green);
}

.bg-white {
    background-color: #FFFFFF;
}

.bg-texture{
    background: url(/2022/template/images/background.jpeg) repeat;
}

.text-center {
    text-align: center;
}

.text-bold {
    font-weight: bold;
}

.p-1 {
    padding: 1rem;
}

.container {
    max-width: 1100px;
    /* padding-top: 2.1rem;
    padding-bottom: 2rem; */
    margin: auto;
}

.container h2:first-child{
    margin-top: 0.8rem;
}

/**
*   Payment Form
*/

#spreedly-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#spreedly-form div label {
    margin-bottom: 5px;
}

#spreedly-form div input[type="text"] {
    min-width: 70px;
}

/*
* Contact Forms
*/

.contact-form-field {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-form-field label {
    inline-size: 175px;
    margin-right: 10px;
}

.contact-form-field img {
    margin-right: 5px;
}

.contact-form-field .number-field {
   max-width: 215px;
}

@media screen and (max-width: 750px) {
    .contact-form-field {
        flex-direction: column;
    }

    .contact-form-field label {
        inline-size: auto;
        width:100%;
    }

    .contact-form-field .number-field {
        max-width: 100%;
    }

    .contact-form-field span {
        width: 100%;
    }

    #content {
        border: none;
        padding: 20px;
    }
}
