@charset "UTF-8";
/* CSS Document */
.coin-wrap {display: none;!important}
#intro-slice {
  background: #000;
  display: none;
}
#us-map a.btn.btn-sm.btn-primary {
    border-color: #3E7691;
    background-color: #407691;
    border-radius: 3px;
    color: #fff!important;
    text-decoration: none!important;
    margin: 0 auto!important;
    text-align: center!important;
}
.center {
    margin: 0 auto;
    text-align: center;
}
.country-btns .com-btn {
    padding: 2px 18px 4px;
    background: #355e93;
    border-radius: 5px;
    color: #ffffff;
    font-family: 'Lato';
    font-weight: 400;
    outline: none;
    position: relative;
    transition: .3s all ease-in-out;
}
.country-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem .5rem;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
}

.country-btns .com-btn {
  flex: 0 1 auto;
  min-width: 140px; /* keeps buttons uniform */
}
.com-btn:hover {
    background-color: #254267;
}
.map-wrap {
  display: inline-flex;
  flex-direction: column;
}
#map-intro a.calendar-btn {
    margin-top: 2px;
    display: inline-flex;
    align-items: center;
    background-color: #254267;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    padding: 0.25em 0.5em;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}
#map-intro .calendar-btn i {
    margin-right: 0.35em;
    font-size: 1em;
}

/* Hover/Focus Effects */
#map-intro .calendar-btn:hover,
#map-intro.calendar-btn:focus {
    background-color: #003366;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}
/***********dropdown country list ***********/
.state-dropdown-wrapper {
  width: 100%;
  
  margin-bottom: 1rem;
  position: relative;
}

.state-dropdown {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  appearance: none;
  outline: none;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="%23999" height="12" viewBox="0 0 24 24" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 0.75rem center;
  background-size: 30px;
}

.state-dropdown:hover,
.state-dropdown:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.5);
}

.state-dropdown optgroup {
  font-weight: bold;
  color: #007bff;
}

/***********spinning seal ***********/
/* =========================================
   TRUE 3D COIN — FLAT, SOLID & SMOOTH FLIP
   ========================================= */
.content-wrap.content-wrap-wide {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.coin-wrap {
  width: 250px;
  height: 250px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
/* --- COIN CORE --- */
.coin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  animation: coinFlip 3s linear forwards; /* smooth continuous flip */
}
/* --- FACES --- */
.coin-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  backface-visibility: hidden;
}
/* FRONT */
.coin-front {
  transform: translateZ(15px); /* slightly thicker to prevent edge transparency */
  background: url("/Portals/1/Spotlight/2025/America-250/DoW-250-4C.png") center / contain no-repeat;
}
/* BACK — soft gold */
.coin-back {
  transform: rotateY(180deg) translateZ(5px); /* matches thickness */
  background:
    radial-gradient(circle at 35% 30%, #fff6cc, #e6c86a 45%, #d1ab4f 75%, #bfa04a);
}
/* --- EDGE (FLAT & SOLID) --- */
.coin::before {
  content: "";
  position: absolute;
  inset: -5px; /* matches coin thickness */
  border-radius: 50%;
  background: #d1ab4f; /* solid edge color */
  transform: translateZ(0);
}
/* --- INNER SHADOW --- */
.coin::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, .35);
  pointer-events: none;
}
/* --- FLIP ANIMATION --- */
@keyframes coinFlip {
  0% {
    transform: rotateY(0deg); /* front */
  }
  50% {
    transform: rotateY(180deg); /* back */
  }
  100% {
    transform: rotateY(360deg); /* front again */
  }
}
/*** Seal container ***/
.blockrel {
  position: relative;
  width: 150px; /* match image size */
  height: 150px; /* match image size */
  overflow: hidden; /* contain the sheen */
  display: block;
  margin: 0 auto; /* center if needed */
  border-radius: 50%; /* circular shape */
  z-index: 10; /* above other content */
}
.blockrel img.blockrel-overlay {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%; /* keep image circular */
}
/* --- Realistic Diagonal Metallic Sheen --- */
.blockrel::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  bottom: -15%;
  left: -45%;
  background: linear-gradient(58deg, rgba(243, 214, 153, 0) 40%, rgba(243, 214, 153, 0.3) 48%, rgba(243, 214, 153, 0.2) 50%, rgba(243, 214, 153, 0.3) 52%, rgba(243, 214, 153, 0) 60%);
  clip-path: circle(50% at 50% 50%);
  border-radius: 50%;
  animation: sheenSweep 8.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 20;
}
@keyframes sheenSweep {
  0%, 20% {
    bottom: -50%;
    left: -50%;
    opacity: 0;
  } /* pause off-coin */
  21% {
    bottom: -50%;
    left: -50%;
    opacity: 0.1;
  } /* fade in start */
  25% {
    bottom: -50%;
    left: -50%;
    opacity: 1;
  } /* fully visible start of sweep */
  40% {
    bottom: 30%;
    left: 30%;
    opacity: 0.6;
  } /* slow first part */
  50% {
    bottom: 55%;
    left: 55%;
    opacity: 0.4;
  } /* accelerating */
  55% {
    bottom: 85%;
    left: 85%;
    opacity: 0.1;
  } /* end, fast sweep */
  60%, 100% {
    bottom: 85%;
    left: 85%;
    opacity: 0;
  } /* pause after sweep */
}
/*** Existing page styles ***/
.DnnModule.DnnModule-DNN_HTML.DnnModule-8692 {
  margin-top: -7rem;
}
.quote-name {
  text-align: right !important;
  float: right;
}
.intro-blurb p {
  margin-bottom: 10px;
  margin-top: 20px;
  line-height: 1.4;
  text-align: center;
}
.top-seal {
  margin-top: -2rem;
  margin-bottom: 0rem;
  padding: 3em 3em 2em;
  max-width: 65ch;
  background: #fff;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%), 0 3px 16px rgb(0 0 0 / 15%);
}
.dod-seal {
  min-height: 150px;
  top: 1.5em;
}

.DnnModule.DnnModule-DNN_HTML.DnnModule-9264 {
  margin-top: -7rem;
  z-index: 999;
}
/**** map slice ****/
.intro {
  padding: 22px 15px;
  background: #ebeff5;
  border: 1px solid #355e93;
  border-top: none;
  align-items: center;
  margin-bottom: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
span.bold {
  font-weight: 600;
}
p.disclaimer {
  font-size: 12px;
  color: #717171;
  line-height: 1.1;
  padding: 15px;
  margin: 20px 0px 0;
  font-style: italic;
  background: #ffffff94;
  border-radius: 3px;
}
#side-list tbody td {
  padding: 0;
}
.event-deets {
  padding: 8px 0 10px;
  border-top: 1px solid #e1e1e1;
}
#side-list em {
  font-size: 16px;
  font-weight: 600;
  display: block;
  padding: 1rem 1.5rem;
  background: #f6f8fb;
  color: #212121;
  font-style: normal;
}
span.city {
    width: 100%;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    background: #5077A8;
    padding: 4px 1rem;
    margin: 0 auto;
}
span.event-title {
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding: 3px 1rem;
}
i.fa.fa-external-link {
  font-size: 12px;
}
span.cal-event-meta, span.cal-event-desc {
  font-size: 14px;
  color: #717171;
  margin-bottom: 0.15rem;
  padding: 0 1rem;
  display: block;
}
#side-list table {
  margin: 0;
  width: 100%;

}
#side-list {
  position: relative;
  margin-top: 10px;
  width: 100%;
  background: #c9d0db;
  font-size: 17px;
  border-collapse: collapse;
  max-height: 450px;
  overflow-y: auto;
  border-radius: 3px;
	
}
/*
#side-list.is-scrollable {
    mask-image: linear-gradient(
        to bottom,
        #ffffff 0%,
        #ffffff 85%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        #ffffff 75%,
        #ffffff 90%,
        transparent 100%
    );
}
*/
#side-list::-webkit-scrollbar {
  width: 8px;
}
#side-list::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
  margin-top: 10px;
  background-color: #254267;
}
.overseas-buttons-container .btn {
  border-radius: 4px;
}
#side-list .default-list {
  background: #f8f9fb;
  padding: 0;
  margin: 0;
}
.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 1rem 0;
  background: #ebeff5;
}
.all-events {
  padding: 1rem;
  text-align: center;
}
#us-map #map-intro {
  color: #333;
  font-weight: 400;
  text-align: left;
  max-width: 65ch;
  line-height: 1.3;
  font-size: 16px;
  margin: 0 2px 18px;
}
#map-intro a {
  color: #254267;
  font-weight: 600;
  text-decoration: underline;
  transition: .25s;
}
#map-intro a:hover {
  color: #355e93;
}
#us-map {
  padding: 2rem 0 3rem;
  position: relative;
}
#map-container {
  position: relative;
  z-index: 3;
}
#side-list a.btn.btn-sm.btn-primary {
  color: #fff;
  text-decoration: none;
}
#us-map path {
    fill: #355e93;
    stroke: #fff;
    transition: fill .4s ease;
    transform-origin: center center;
}
#us-map path:hover {
    cursor: pointer;
    fill: #688ebc;
}
#us-map #custom-map {
  display: block;
  height: 100%;
  width: 100%;
}

.blue.active-blue {
  fill: #7696bf !important;
}

.active-list {
  display: block !important;
  transition: .3s all ease-in-out;
}
#side-list a {
  font-size: 14px;
  color: #355e93;
  text-decoration: underline;
}
#side-list td {
  padding: 2px 1rem;
}
#side-list thead th {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  font-family: 'Oswald';
  color: #ffffff;
  background-color: #333;
  text-align: center;
  padding: 4px 1rem;
}
#side-list tbody th {
  padding: 4px 1rem;
  font-size: 16px;
  font-weight: 600;
  background-color: #e5e7e6;
  color: #717171;
  text-align: left;
}
#side-list tbody td .indent {
  display: inline-block;
  font-size: 13px;
  color: #333;
  padding: 10px 5px 10px 0;
}
#side-list tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}
#side-list tbody tr:nth-child(odd) td {
  background-color: #fff;
}
#side-list .fine-print sup {
  font-weight: bold;
  margin-right: 5px;
}
#side-list .single-list {
    background: #fff;
    display: none;
    left: 0;
    position: relative;
    top: 0;
    border: 1px solid #e1e1e1;
}
#side-list table tr td:nth-child(1) {
  text-align: left;
}
#side-list table tr td:nth-child(2) {
  text-align: center;
}
#side-list table tr td:nth-child(3) {
  text-align: left;
}


#side-list .fine-print {
  font-size: 16px;
  font-style: italic;
  line-height: 20px;
  margin: .5rem 1rem;
}
#side-list .fine-print span {
  display: block;
}
#side-list .state-list .fine-print {
  display: block;
  font-size: 14px;
  line-height: unset;
  margin: 0;
  padding-top: 5px;
}
#side-list caption {
    font-family: lato;
    font-size: 20px;
    color: #fff;
    padding: .5rem 1rem;
    text-align: left;
    font-weight: 600;
    background-color: #254267;
    border-radius: 3px 3px 0 0;
}
.active-state {
  fill: #688ebc !important;
}
/* =============================== VIDEO SLICE =============================== */
.video-slice {
  width: 100%;
  color: #fff;
  padding: 4rem 1.5rem;
  background: linear-gradient(0deg, rgb(12 12 12 / 30%) 0%, rgb(33 33 33 / 53%) 50%, rgb(33 33 33 / 49%) 100%), url(/Portals/1/Spotlight/2025/America-250/flag-bkgd.jpg);
  background-size: cover;
  background-position: center center;
  box-shadow: inset 0px 0px 70px rgba(0, 0, 0, 0.9);
}
.video-slice-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
} 
.video-text h2 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 900;
}
.video-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    max-width: 55ch;
} 
.video-card {
  position: relative;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 2px 6px rgba(0, 0, 0, 0.1);
}
.video-card video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


/***** SIDEBAR *******/
.sidebar-section.sidebar-search-section, .DnnModule.DnnModule-DNN_HTML.DnnModule-9193 {
  display: none;
}
a.poster-link {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 3px;
    box-shadow: 1px 1px 5px 0px #00000047;
    text-decoration: none;
    flex-direction: column;
    width: fit-content;
    padding: 10px;
}
a.poster-link:hover, a.poster-link:focus {
  text-decoration: none;
}
.poster-link img {
    width: 100%;
    height: auto;
}
a.poster-link p {
    margin: 0;
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    color: #355e93;
    transition: color 0.2s ease;
}
a.poster-link:hover p, a.poster-link:focus p {
  color: #0b3c5d;
}
a.poster-link:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.related a.poster-link {
    background: #254267;
    border-radius: 15px;
    box-shadow: 2px 2px 4px 0px #00000069;
    flex-direction: column;
    padding: 20px 20px 10px;
    margin: 10px auto;
}
.related .poster-link img {
    max-width: 180px;
}
.related a.poster-link p {
    color: #fff;
    padding: 5px 0;
    font-size: 22px;
}
/* --- MOBILE --- */

@media (max-width: 991px) {
 .intro-blurb p {
    margin-bottom: 20px;
  }
 
	.map-wrap {

    display: none;
}
	#map-intro a.calendar-btn {

    margin-top: 5px;
    
}
	#side-list {
   
    max-height: unset;
   
}
}
@media (max-width: 900px) {
  .video-slice-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .video-text {
    text-align: center;
  }
  .video-text p {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .DnnModule.DnnModule-DNN_HTML.DnnModule-9264 {
    margin-top: -1rem;
    z-index: 999;
}
	
	.top-seal {
    margin: -3rem 15px -1rem;
		padding: 3em 2em 2em;
}
 
 
}
@media only screen and (max-width: 600px) {
  .DnnModule.DnnModule-DNN_HTML.DnnModule-8692 {
    margin-top: 0rem;
  }
	.video-text p {
    font-size: 1.2rem;
    line-height: 1.4;
    ;
}
}




