:root {
  --cassiopeia-color-primary: #6495ed;
  --cassiopeia-color-link: #6495ed;
 /* --cassiopeia-color-link: #173337; */
  --cassiopeia-color-hover: #263133;
}

/* Override the lila background with white */
.container-header {
    background-color: white;
    background-image: none;
    height: 140px;
}

/* Menu */
.container-nav {
    background-color: white;
    background-image: none;
    height: 125px;
}


/* We add padding and radius so that on hover there is a nice background */
.container-header .mod-menu{
    -webkit-border-radius: 0 0 6px 6px;
    -moz-border-radius: 0 0 6px 6px;
    border-radius: 0 0 6px 6px; 
    padding: 3px 5px;
    color: #6495ed;
}
/* align items in the menu module */
.container-header .mod-menu {
    align-items: right;
}

.container-header .mod-menu a:link {
  color: #6495ed;
}


/*.container-header .mod-menu a:visited {
  color: #6c757d;
}*/


.container-header .mod-menu a:hover {
  color: #263133;
}


/*.container-header .mod-menu a:active {
  color: #6c757d;
}



/*navbar-collapse collapse show*/
.container-header .navbar-collapse.show {
    display: block;
    background: white;
    box-shadow: 0 0 .6em; rgba(0, 0, 0, 0.1);
}
.container-header .navbar-toggler {
  color: rgba(0,0,0,.55);
  background: white;
  border-color: rgba(0,0,0,.1);
}


.is_articlecarousel4dslider {
  height: 300px;
}

.header.container-header.full-width{
  height: 120px;
}



/* Footer white background and centered */
.container-footer {
    background-color: white;
    background-image: none;
  	display: grid;
    justify-items: center;
    justify-content: center !important;
    height: 100px;
}



.mod-custom137 mod-custom{
  position: flex-rightflex;
}

.container-footer.grid-child.mod-custom151.mod-custom.custom{
  display: flex;
  flex: 1 1 0%;
  align-items: center;
}









/*custom block layout for the wiki site*/
.container-box {
width: 300px;
padding: 20px;
margin-bottom: 20px;
background-color: #fcfafa;
border: 1px solid #e3e3e3;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, ff, ff.05);
}
.support-block {
display: block;
width: 100%;
padding-right: 0;
padding-left: 0;
background-color: #5cb85c;
}
.item-list {
display: inline-block;
padding: 6px 12px;
margin-bottom: 5px;
font-size: 20px;
font-weight: 600;
line-height: 28px;
text-align: center;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
color: #FF1DCE;
}

/*custom button for the support request on certain pages of the wiki*/
.BUTTON_VCG {
   background: #3D94F6;
   background-image: -webkit-linear-gradient(top, #6495ed, #6495ed);
   background-image: -moz-linear-gradient(top, #6495ed, #6495ed);
   background-image: -ms-linear-gradient(top, #6495ed, #6495ed);
   background-image: -o-linear-gradient(top, #6495ed, #6495ed);
   background-image: -webkit-gradient(to bottom, #6495ed, #6495ed);
   -webkit-border-radius: 10px;
   -moz-border-radius: 10px;
   border-radius: 2px;
   color: #FFFFFF;
   font-family: Arial;
   font-size: 14px;
   font-weight: 100;
   padding: 10px;
   -webkit-box-shadow: 1px 1px 20px 0 #f0f0f0;
   -moz-box-shadow: 1px 1px 20px 0 #f0f0f0;
   box-shadow: 1px 1px 20px 0 #f0f0f0;
   text-shadow: 1px 1px 20px #f0f0f0;
   border: solid #0059A0 1px;
   text-decoration: none;
   display: inline-block;
   cursor: pointer;
   text-align: center;
}

/*custom button for the support request on certain pages of the wiki*/
.BUTTON_VCG:hover {
   border: solid #337FED 1px;
   background: #FFAE00;
   background-image: -webkit-linear-gradient(top, #3D94F6, #1E62D0);
   background-image: -moz-linear-gradient(top, #3D94F6, #1E62D0);
   background-image: -ms-linear-gradient(top, #3D94F6, #1E62D0);
   background-image: -o-linear-gradient(top, #3D94F6, #1E62D0);
   background-image: -webkit-gradient(to bottom, #3D94F6, #1E62D0);
   -webkit-border-radius: 20px;
   -moz-border-radius: 20px;
   border-radius: 20px;
   text-decoration: none;
}

/*** css code for popout text ***/
/* subtle zoom to attention and then back */
.pop-outin {
  animation: 9s anim-popoutin ease infinite;
}

@keyframes anim-popoutin {
  0% {
    color: black;
    transform: scale(0);
    opacity: 0;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  25% {
    color: red;
    transform: scale(2);
    opacity: 1;
    text-shadow: 3px 10px 5px rgba(0, 0, 0, 0.5);
  }
  50% {
    color: black;
    transform: scale(1);
    opacity: 1;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
  }
  100% {
    /* animate nothing to add pause at the end of animation */
    transform: scale(1);
    opacity: 1;
    text-shadow: 1px 0 0 rgba(0, 0, 0, 0);
  }
}

.fromtop {
  animation: 2s anim-fromtop linear infinite;
}
@keyframes anim-fromtop {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  25% {
    opacity: 1;
    transform: translateY(0%);
  }
  50% {
  }
  100% {
  }
}
