/* Main styles Set up Start */
:root {
  /* text colors */
  --main-text-color: #ffffff;

  /* colors of link cards */
  --link-card-content: linear-gradient(225deg, #1e293b, #93268f);
  --link-card-content-hover: linear-gradient(45deg, #1e293b, #4D008C);
  --link-card-background: #fff;
  --link-card-background-hover:#fff;
  --link-card-background-icon: #93268f;
  --link-card-background-icon-hover: #4D008C;
  --bell-color-title-bottom-border: #3c7eb1;

  /* colors for the loading animation */
  --spinner-color: #93268f;
  --secondary-spinner-color: #7e7a966c;

  /* amount of cards wide in circle layout  */
  --grid-w-nmb: repeat(3, 1fr);
  --logged-in-grid-w-nmb: repeat(4, 1fr);

  /*  card radius: 50% for a circle, 5% for a rounded rectangle */
  --card-radius: 50%;

  /* BACKGROUND IMAGE FOR IFRAME */
  --aca-background-image-url: url(../img/RC_mountainrange.png); 
  
  /* bell variable */
  --bell-color: #f00827;
  --close-button-background-color: #f00827;
  --close-button-border-color: #f00827;
  
  /*Chooser ASPX styles*/
  --chooserpage-icons-hover-color: #0077c8;
}

/* Main styles Set up End */


/*modal styling*/
#modal1{
  width: 150px;
  height: 150px;
  background-color: #f5f5f5;
  font-size: 24px;
}

/* ~~~~~~~~~~~~~~~~~~~~~~ START LOGIN-OPTION-THREE ~~~~~~~~~~~~~~~~~~~~~~ */
.login-option-three{
  display: flex;
  flex-direction: column;
  padding: 30px 20px 30px 20px;
  border-radius: 25px;
  height: 300px;
  min-height: 130px;
  width: 275px;
  min-width: 255px;
  background-color: #392b55;
  border: 6px solid #E4E1DC;
}
.login-buttons-wrapper{
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.loginoptionthree-title{
  display: block;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}
.loginoptionthree-login{
  display: flex;
  background: #93268f;
  border: 2px solid #93268f;
  padding: 12px !important;
  border-radius: 15px;
  color: #fff !important;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  width: 100%;
  min-width: 125px;
}
.loginoptionthree-login:hover{
  background: #152140;
  border: 2px solid #8ebbbc;
  color: #152140 !important;
  background-color: #83bbbc;
}
.loginoptionthree-register{
  display: flex;
  background: #fff;
  border: 2px solid #93268f;
  padding: 12px !important;
  border-radius: 15px;
  color: #152140;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  width: 100%;
  min-width: 125px;
}
.loginoptionthree-register:hover{
  background: #152140;
  border: 2px solid #8ebbbc;
  color: #152140 !important;
  background-color: #8ebbbc;
}
@media screen and (max-width: 1300px){
  .gq-aca-wrapper #circle-layout.card-container{
    display: flex;
    align-items: center;
    flex-direction: column !important;
  }
  .login-option-three{
    margin-right: 0 !important;
    padding: 10px !important;
    height: 25% !important;
    min-width: 365px;
  }
  .login-buttons-wrapper{
    flex-direction: row;
    gap: 40px !important;
    padding: 0px 32px !important;
  }
}
/* ~~~~~~~~~~~~~~~~~~~~~~ END LOGIN-OPTION-THREE ~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~~~~~~~~ LOADING SPINNER START ~~~~~~~~~~~~~~~~~~~~~~~ */
/* loading spinner position */
.loader {
  position: fixed;
  top: 40%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

/* loading spinner background*/
.loaderBackground {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #ffffff;
}

/* loading spinner itself */
.loader::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  margin: 40px auto;
  border: 12px solid var(--secondary-spinner-color);
  border-radius: 50%;
  border-top: 12px solid var(--spinner-color);
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* text that is displayed while the page is loading */
.loadingText {
  position: fixed;
  top: 54%;
  left: .05%;
  width: 100%;
  height: 100%;
  z-index: 9999;
  text-align: center;
  font-size: 20px;
  color: var(--spinner-color);
}
/* ~~~~~~~~~~~~~~~~~~~~~~~ LOADING SPINNER END ~~~~~~~~~~~~~~~~~~~~~~~ */

/*~~~~~~~~~~~~~~~~~~~~~~~~ Login Box Start ~~~~~~~~~~~~~~~~~~~~~~~~ */
/* .aca_wrapper > div{
  flex-direction: column-reverse;
} */
.gq-aca-wrapper {
  display: flex;
  align-items: center;
}

.span-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #f0f0f0; /* Light grey background */
  text-align: center;
  box-shadow: 4px 4px 6px black;
  padding-bottom: 0%;
  width: 100%; 

}

.action-button {
  margin: 5px 0; /* Space between buttons */
  background-color: #137bbf; /* Blue background */
  color: white; /* White text */
  border: none; /* No border */
  border-radius: 8px; /* Rounded corners */
  padding: 10px 20px; /* Padding around text */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  width: 40%; /* Width of the button */
  text-decoration: none;

}

.action-button:hover {
  background-color: #004f99; /* Darker blue on hover */
  color: white;
  text-decoration: none;
}

.action-button:active {
  background-color: rgb(135, 167, 207); /* Even darker blue on click */
}

.centered-text {
  text-align: center; /* Centered text */
  font-size: 14px; /* Smaller font size */
}
.home-wrapperaspx{
  padding-top: 0 !important;
}

/*~~~~~~~~~~~~~~~~~~~~~~~~ Login Box End ~~~~~~~~~~~~~~~~~~~~~~~~ */




/* ~~~~~~~~~~~~~~~~~~~~~~~ STYLES FOR THE IFRAME START ~~~~~~~~~~~~~~~~~~~~~~~ */
.aca_wrapper{
  background-image: var(--aca-background-image-url);
  background-position: center;
  background-size: cover;
  padding: 5px;
}
.gq-aca-wrapper i {
  font-size: 55px !important;
  color: var(--main-background);
  /* text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000 !important; */
  /* text-shadow: -2px -2px 2px rgba(0,0,0,0.15), 2px -2px 2px rgba(0,0,0,0.15), -2px 2px 2px rgba(0,0,0,0.15), 2px 2px 2px rgba(0, 0, 0, 0.15) !important; */ 
}

/* Login Page embedded in body of site */
iframe#login-frame{
  margin: 30px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 4px 4px 12px black;
  min-height: 550px;
  width: 330px;
  min-width: 330px;
  /* opacity: .4; */
}
/* .announcement-container{
  display:flex;
  min-height: 470px;
  width: 300px;
  height: 450px;
  margin-top: 40px !important;
  background-position: center;
  background-size: contain;
} */
.aca_wrapper > div {
  /* background-color: rgba(255, 255, 255, 0); */
  /* gap: 85px; */
  /* display: flex; */
  /* justify-content: center; */
}
/* ~~~~~~~~~~~~~~~~~~~~~~~ STYLES FOR THE IFRAME END ~~~~~~~~~~~~~~~~~~~~~~~ */
.home-wrapperaspx{
  justify-content: space-around;
  width: 100% !important;
}
/*CHOOSER ASPX STYLES*/
button#Choose-Wizard{
  display: flex;
  flex-direction: column;
  width: 500px;
  height: 300px;
  padding: 12px;
  border: 2px solid black;
  background-color: #f5f5f5;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
button#Choose-List{
  display: flex;
  flex-direction: column;
  width: 500px;
  height: 300px;
  padding: 12px;
  border: 2px solid black;
  background-color: #f5f5f5;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
/*new buttons*/
.Choose-wrapper{
  display: flex;
  flex-direction: column;
  width: 700px;
  height: 300px;
  padding: 12px;
  border: 2px solid black;
  background-color: #f5f5f5;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.Wiz-wrapper{
  display: flex;
  flex-direction: column;
  width: 500px;
  height: 300px;
  padding: 12px;
  border: 2px solid black;
  background-color: #f5f5f5;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer ;
}
.choose-buttonslist{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 90%;
}
.wizard-buttonslist{
  display: flex;
  justify-content: center;
  width: 100%;
}
.wizard-button{
  width: 80%;
  display:flex;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.25), -2px 2px 3px rgba(0,0,0,0.25);
  background-color: #ebebeb;
  border-radius: 5px;
  align-items: center;
  text-align: start;
  height: 90px;
  text-decoration: none;
}
a.wizard-button svg{
  fill: #333333 !important;
  margin-left: 26px;
  margin-right: 10px;
}
.wizard-button:hover svg{
  fill: var(--chooserpage-icons-hover-color) !important;
}
.wizard-button:hover .wizard-link{
  color: var(--chooserpage-icons-hover-color);
}
.wizard-link{
  width:100%;
  text-align: start;
  font-size: 24px;
  letter-spacing: .1ch;
  font-weight: 600;
  padding-left: 8px;
  color: #000;
}
.module-button{
  width: 100%;
  display:flex;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.25), -2px 2px 3px rgba(0,0,0,0.25);
  background-color: #ebebeb;
  border-radius: 5px;
  align-items: center;
  text-align: start;
  height: 90px;
  text-decoration: none;
}
span.module-button svg{
  margin-left: 10px;
  margin-right: 10px;
}
a.module-button svg{
  fill: #333333 !important;
  margin-left: 16px;
  margin-right: 10px;
}
.module-button:hover svg{
  fill: var(--chooserpage-icons-hover-color) !important;
}
.module-button:hover .module-link{
  color: var();
}
.module-link{
  width:100%;
  text-align: start;
  font-size: 18px;
  font-weight: 600;
  padding-left: 8px;
  color: #000;
}
span.container-title{
  font-size: 22px;
  font-weight: 600;
}
/*end new buttons*/
button#Choose-List:hover{
  background-color: #addcfb;
}
button#Choose-Wizard:hover{
  background-color: #addcfb;
}
div#options-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 40px;
  min-height: 650px !important;
}
/*END CHOOSER ASPX STYLES*/

/* ~~~~~~~~~~~~~~~I DONT KNOW WHAT THIS IS START ~~~~~~~~~~---- */
.ds-beta .p-button{
  background: #aa2237;
  background-color: #aa2237;
}
.gq-aca-wrapper{
  display:flex;
  justify-content: center;
  min-height: 650px;
  padding: 0 25px 25px 25px;
}

.gq-aca-wrapper iframe {
  overflow: hidden;
  width: inherit;
}

.gq-aca-wrapper header h1 {
  background-color: #fff;
  font-weight: 500;
  padding: 0 25px 25px;
  font-size: 48px;
  line-height: 1;
}

.gq-aca-wrapper .container-fluid {
  padding-right: 0px;
  padding-left: 0px;
}

.gq-aca-wrapper main {
  padding-bottom: 1px;
  padding-top: 20px;
}

/* Simple Card styles for prettying */
.gq-aca-wrapper html {
  font-size: 16px;
  font-family: "Rubik", sans-serif;
}


/* .gq-aca-wrapper i.gq-fa-paper-plane,
.gq-aca-wrapper i.gq-fa-list {
  font-size: 60px !important;
} */

/* 
.gq-aca-wrapper .tooltip-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gq-aca-wrapper .tooltip-wrap .tooltip-content {
  display: none;
  position: absolute;
  background-color: #e8f1ee;
  padding: 0.5em;
  left: -17px;
  top: 122px;
  z-index: 2;
  width: 175px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 3px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 56%), 0 6px 20px 0 rgb(0 0 0 / 57%);
}
.tooltip-content p{
  margin-bottom: 8px;
}

.gq-aca-wrapper .tooltip-wrap:focus-within .tooltip-content {
  display: block;
}
.gq-aca-wrapper .tooltip-wrap .tooltip-content li:hover,
.gq-aca-wrapper .tooltip-wrap .tooltip-content li:focus-within {
  background-color: rgb(230, 230, 230);
}
.gq-aca-wrapper .tooltip-wrap:hover .tooltip-content {
  display: block;
}
.gq-aca-wrapper #circle-layout .tooltip-content li a {
  color: var(--circle-aca-color) !important;
  cursor: pointer;
}
.gq-aca-wrapper #circle-layout .tooltip-content li {
  margin-bottom: 0px;
  list-style: none;
} */

/* ~~~~~~~~~~~~~~~I DONT KNOW WHAT THIS IS END ~~~~~~~~~~ */






/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Circle Layout Start~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
/* container for grid layout */
.gq-aca-wrapper #circle-layout.card-container {
  /* margin: auto 30px; */
  /* border-radius: 10px; */
  width: 95%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row-reverse;
}
#agency-cardlist li{
  min-width: 33% !important;
  align-items: center;
  justify-content: center;
}
#agency-cardlist{
  /* width: 95% !important; */
  /* margin: 25px !important; */
  /* gap: 10px; */
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* #agency-cardlist li{
  min-width: 25% !important;
  max-width: 25% !important;
} */
/* grid layout for circle layout */
.gq-aca-wrapper #circle-layout.card-container > ul {
  /* display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 100% !important;
  padding-bottom: 50px;
  padding-top: 50px;
  list-style: none; */
  /* gap: 25px; */

}
 
/* LOGGED OUT */
.gq-aca-wrapper #circle-layout.card-container > ul.loggedOut {
justify-content: center;
}
 
/* LOGGED IN */
.gq-aca-wrapper #circle-layout.card-container > ul.loggedIn {
  /* grid-template-columns: var(--logged-in-grid-w-nmb); */
  /* gap: 50px !important ; */
}
ul.loggedIn #circle-layout.card-container{
  /* width: 85% !important; */
}

/* individual link cards */
.gq-aca-wrapper .circle_container {
  /* background-color: var(--link-card-background); */
  /* background: var(--link-card-background); */
  /* border: 6px solid var(--link-card-background-icon); */
  width: 200px !important;
  max-width: 200px !important;
  margin-top: 30px !important;
  /* margin: 30px auto 0; */
  /* justify-content: center; */
  /* align-items: center; */
  height: 200px; /*BGB*/
  /* padding: 15px 15px; */
  border-radius: var(--card-radius);
  /* box-shadow: 5px 5px 10px rgba(0,0,0,0.5); */
  display: flex;
  position: relative;
}
a.card-link.circle_color{
  min-width: 200px !important;
  background: var(--link-card-background);
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
  border: 6px solid var(--link-card-background-icon);
  width: 200px !important;
  max-width: 200px !important;
  height: 200px;
  border-radius: var(--card-radius);
}
a.card-link.circle_color:hover{
  background-color: var(--link-card-background-hover);
  background: #fff;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
  border: 6px solid var(--link-card-background-icon-hover);
  width: 200px !important;
  max-width: 200px !important;
  height: 200px !important;
  border-radius: var(--card-radius);
}
/*  hover state of individual link cards */
.gq-aca-wrapper .circle_container:hover,
.gq-aca-wrapper .circle_container:focus-within {
  /* background-color: var(--link-card-background-hover); */
  /* background: var(--link-card-background-hover); */
  /* box-shadow: 0 0 0 9px rgba(255, 195, 90, 0.76); */
  /* display: flex; */
  /* border: 6px solid var(--link-card-background-icon-hover); */
  /* flex-direction: column; */
  /* justify-content: center; */
  /* align-items: center; */
}
.gq-aca-wrapper .circle_container:hover a.card-link.circle_color,
.gq-aca-wrapper .circle_container:focus-within a.card-link.circle_color{
  border: 6px solid var(--link-card-background-icon-hover);
}

/* individual link card content */
.gq-aca-wrapper .circle_container i,
.gq-aca-wrapper .circle_container .card__title span {
  color: var(--link-card-background-icon);
  max-width: 160px;
}

/* individual link card image HOVER */
.gq-aca-wrapper .circle_container:hover i,
.gq-aca-wrapper .circle_container:focus-within i {
  color: var(--link-card-background-icon-hover) !important;
  /* text-shadow: none; */
}
/* individaul link card text HOVER */
.gq-aca-wrapper .circle_container:hover .card__title span,
.gq-aca-wrapper .circle_container:focus-within .card__title span {
  color:var(--link-card-background-icon-hover)!important;
  /* text-shadow:none; */
}

.gq-aca-wrapper .card__title span {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.1rem;
  color: white;
  text-align: center;
  justify-content: center;
  display: flex;
}

.gq-aca-wrapper #circle-layout .inside-circle {
  
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 5px;
}

/* Style to do with icon specifically */
.gq-aca-wrapper #circle-layout .icon_helper {
  align-items: center;
  text-align: center;
  margin: auto;
  background-repeat: no-repeat;
  padding: 4px;
  padding-top: 0px;
}


.gq-aca-wrapper #circle-layout a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  text-decoration: none;
  width:100%;
  padding-bottom: 12px;
}
/* .gq-aca-wrapper #circle-layout .circle_color:hover {
  background-color: transparent !important;
} */
.gq-aca-wrapper .card-link.circle_color {
  position: relative;
}

/* image on link cards */
.gq-aca-wrapper .icon_helper img {
  height: 40px;
  width: 40px;
  margin: 0px 0 0 0px;
}

.gq-aca-wrapper .circle_container .tooltip-content { 
  /* display: none; */
  position: absolute !important; /* Position relative to .circle_container */
  top: 100% !important; /* Tooltip appears just below the container */
  left: 50% !important; /* Center the tooltip horizontally */
  transform: translateX(-50%) !important; /* Adjust position to center it */
  width: auto; /* Tooltip width based on content */
  background-color: rgba(0, 0, 0, 0.8); /* Background color */
  color: white ; /* Text color */
  padding: 10px;
  border-radius: 5px;
  visibility: hidden; /* Hidden by default */
  opacity: 0; /* Transparent by default */
  transition: opacity 0.3s !important; /* Smooth transition */
}
.gq-aca-wrapper .circle_container:hover .tooltip-content,.gq-aca-wrapper .circle_container:focus-within .tooltip-content { 
  display: block;
  visibility: visible !important;
  opacity: 1 !important;
  background-color: #efefef !important;
  position: relative;
  z-index: 3;
  /* left: -74px; */
  top: 35px;
  border: 4px solid var(--link-card-background-icon-hover);
  border-radius: 15px;
  height: auto !important;
  width: 260px;
}
p.tooltip-modules a {
  justify-content: start !important;
}
p.tooltip-modules{
  padding-left: 10px;
  margin-bottom: 0px;
  padding-bottom: 6px;
  padding-top: 6px;
}
p.tooltip-modules:hover,p.tooltip-modules:focus{
  background-color: var(--link-card-background-icon-hover) !important;
  color: #fff !important;
}
.tooltip-modules:nth-child(even){
  background-color: #d7cfcf7b !important;
}
.tooltip-modules:nth-child(even):hover{
  background-color:  var(--link-card-background-icon-hover) !important;
}
.tooltip-modules:nth-child(even):hover a{
  color: #fff !important;
}
p.tooltip-modules:hover a{
  color: #fff !important;
}
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Circle Layout End~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */                                
 
#announcement-list .active-announcement {
 
}
#announcement-list {
  width: 60vw !important;
}
 
#inactive-announcement {
  position: absolute;
  top: 160px;
  width: 90px !important;
  height: 90px !important;
  right: 5px;
  border-radius: 50% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  display: none;
 
}
 
.bell-icon {
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: 4px solid var(--bell-color);
  padding: 8px;
}
 
#inactive-announcement> .announcement-count {
  font-size: 20px;
  color: var(--bell-color);
  margin: 0;
  font-weight: bold;
  height: 30px;
  width: 30px;
  background-color: white;
  border: 3px solid var(--bell-color);
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
}
 
.announcement-header{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 6px;
  background-color: var(--bell-color);
  border-bottom: 4px solid #4f2e5b;
  border-radius: 8px 8px 0  0 ;
  margin: auto;
  margin-bottom: 12px;
  width: 100%;
}
 
.announcement-header> h2 {
 color: white;
 font-weight: bolder;
 margin: 0;
}
#close-announcement {
  cursor: pointer;
  padding: none;
  border-radius: 50%;
  border: transparent;
  text-decoration: none;
}
.close-container {
  display: flex;
  justify-content: center;
  padding: 4px;
  border-radius: 0 0 8px 8px;
  margin: auto;
  margin-bottom: 6px;
  width: 100%;
  background-color: transparent;
}
#close-announcement{
  display: flex;
  justify-content: center;
  padding: 4px;
  background-color: var(--close-button-background-color);
  border: 4px solid var(--close-button-border-color);
  border-radius: 12px ;
  margin: 8px;
  width: 50%;
  align-items: center !important;
}
 
#close-announcement> h3 {
  color: white !important;
  padding: 0% !important;
  margin-bottom: 0% !important;
 }
 
 #close-announcement:hover {
  background-color: #773838;
}
 
#close-announcement:active {
  background-color: #b96464;
 
}

.active-announcement{
  margin: 15% auto;
  padding: 0px;
  border: 1px solid #888;
  width: 75vw;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #000000;
  margin: auto;
  text-align: left;
  transition: transform 0.3s ease-in-out;
  position: relative;
 
}
#announceGQ {
  max-height: 80vh;
  overflow: auto;
}
 
.inactive-announcement{
  position: absolute;
  left: 500px;
  top: 155px;
  border: 2px solid #000;
  height: 80px;
}
 
.inactive-announcement:hover{
  border: 2px solid #5e5e5e;
}
 
 
.active-announcement {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
  background-color: #f9f9f9;  
  border: 6px solid #f00827 !important;
  margin: auto;
  border-radius: 15px !important;
  text-align: left;
  transition: transform 0.3s ease-in-out;
 
}
 
.active-announcement:hover {
  transform: translateY(-5px) !important;
}
 
.announcementgroupitem {
  display: flex;
  justify-content: start;
  text-align: left;
  padding: 4px;
  padding-left: 10px;
  margin: auto;
  width: 90%;
  border-bottom: #000 3px solid;
}
 
.announcementgroupitem p {
  margin: 0 !important;
  padding: 0% !important;
  font-weight: bold;
  font-size: 1.2rem;
}

@media screen and (max-width: 760px){
 
  /* make active-announcement 95 vw */
.active-announcement {
    width: 80vw;
}
a.card-link.circle_color {
    padding: 12px !important;
    min-width: 350px !important;
    min-height: 65px !important;
}
.gq-aca-wrapper .circle_container {
  min-width: 350px !important;
  max-width: 350px !important;

}
.gq-aca-wrapper .circle_container i, .gq-aca-wrapper .circle_container .card__title span {
  max-width: 250px;
  font-size: 20px;
}
}

/* ~~~~~~~~~~~~~~~~~~~~~~~ ANNOUNCEMENTS STYLES END ~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~~~~~~~~~~~~~~~~~~~~~~~~ START ADJUSTMENTS FOR SCREEN SIZES ~~~~~~~~~~~~~~~~~~~~~~~~~*/
/*screens smaller than 1400px */
@media screen and (max-width: 1300px){
  /* Iframe elements */
 

}

/* ~~~~~~~~~~~~~screens smaller than 1210px~~~~~~~~~~~~~ */
@media screen and (max-width: 1210px) {
  /* Iframe elements */

.gq-aca-wrapper #circle-layout.card-container > ul {
  /* gap: 25px !important; */
}

  /* Card elements */
.gq-aca-wrapper #circle-layout.card-container > ul {
  /* grid-template-columns: 1fr 1fr 1fr; */
}

}

/* ~~~~~~~~~~~~~screens smaller than 1050px~~~~~~~~~~~~~ */
@media screen and (max-width: 1050px) {
  /* Card elements */
  .gq-aca-wrapper #circle-layout.card-container > ul {
    grid-template-columns: 1fr 1fr !important;
  }
}


/* ~~~~~~~~~~~~~screens smaller than 815px~~~~~~~~~~~~~ */
@media screen and (max-width: 815px) {
  .gq-aca-wrapper #HeaderContent:before {
    width: 200px;
  }

  .gq-aca-wrapper #titlebanner {
    width: 90%;
  }
}

/* ~~~~~~~~~~~~~screens smaller than 760px~~~~~~~~~~~~~ */
@media screen and (max-width: 760px){
  ul.foot-navOne{
    justify-content: center;
    align-items: center;
  }
  ul.foot-navOneB{
    display: none;
  }
  ul.foot-navOneBottom{
    display: flex;
  }
  ul.foot-navOnewrapper{
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
   /* Iframe elements */
  /* Card elements */
  #inactive-announcement{
    right: 5px;
  }
  .gq-aca-wrapper #circle-layout.card-container > ul {
    grid-template-columns: 1fr ;
    padding: 0px;
    margin: 5px;
  }
  .gq-aca-wrapper .card-container {
    width: 100%;
  
  }
  .gq-aca-wrapper #circle-layout.card-container > ul{
    /* flex-direction: column;
    display: flex; */
    width: 90% !important;
  }

 /* individual card */
 a.card-link.circle_color, a.card-link.circle_color:hover{
  width: 100% !important;
  height: 14vw !important; /*BGB*/
  border-radius: 5%/30%; 
  padding: none;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.3) !important;
  display: flex;
  margin: 0%;
  justify-content: center;
  align-items: center;
 }
 .gq-aca-wrapper .circle_container {
    /* background: linear-gradient(180deg, #f8ec8f, #fdc100) !important; */
    width: 100% !important;
    height: 14vw; /*BGB*/
    border-radius: 5%/30%; 
    padding: none;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.3) !important;
    display: flex;
    margin: 0%;
    justify-content: center;
    align-items: center;
   
}
.gq-aca-wrapper #circle-layout a {
  padding-top: 0;
}
.gq-aca-wrapper #circle-layout .inside-circle{
  margin-top: 0;
}
section#circle-layout{
  margin-top: 25px !important;
}

/* hight of letters*/
.gq-aca-wrapper .circle_container .card__title span {
  font-size: 22px;
  /* line-height: 6vw; */
}

/* hide icon helper */
.gq-aca-wrapper #circle-layout .icon_helper {
  display: none;
}
}
@media (max-width:600px){
  .action-button{
    width: 80%;
  }
}
/* ~~~~~~~~~~~~~screens smaller than 550px~~~~~~~~~~~~~ */
@media screen and (max-width: 450px){
  
}
@media screen and (max-width: 420px) {
  .login-buttons-wrapper {
      display: flex;
      flex-direction: column !important;
      gap: 5px !important;
      padding: 0 !important;
  }
  .loginoptionthree-register{
    margin: 4px !important;
  }
  .loginoptionthree-login{
    margin: 4px !important
  }
  iframe#ACAFrameWizard{
    width: 100% !important;
  }
  div#ACAFrame{
  padding: 0 !important;
  }
}
  
/* 
.gq-aca-wrapper .index-link:focus,
.gq-aca-wrapper .index-link:hover {
  background-color: #21834c;
  color: rgb(63, 63, 63);
}
.gq-aca-wrapper #options-container {
  display: flex;
  justify-content: center;
  padding: 100px;
}
.gq-aca-wrapper .options-button {
  margin: 30px;
  padding: 20px !important;
  text-align: center;
  border: 1px solid black;
  color: black !important;
  height: 250px;
  width: 350px;
  background-color: white;
  box-shadow: 3px 3px 25px 0 black;
  display: block;
  text-decoration: none;
}
.gq-aca-wrapper .options-button:hover {
  border: 1px solid var(--green-color);
  box-shadow: 3px 3px 25px 0 var(--hover-green-color);
}
.gq-aca-wrapper .options-button i {
  font-size: 60px;
  color: black !important;
  height: 50px;
  width: 50px;
  margin-bottom: 20px;
} 
  */
