@charset "UTF-8";
/*---------------------------------------------------------------------------------
    Included CSS INDEX
-----------------------------------------------------------------------------------

01. Typography
02. Components
    - Common
    - Sidebar
    - Header
    - Tools-sidebar

03. Layout 
    - Cards

04. Cayuga Overrides
	- Cayuga

-----------------------------------------------------------------------------------*/
/*=== Typography ===*/
/*--- Roboto Normal Family ---*/
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
/* Italic */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
/* Bold */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
/* Bold Italic */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
/* Light */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
/* Light Italic */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
/* Medium */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
/* Medium Italic */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
/* Thin */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
/* Thin Italic */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
/* Black */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
/* Black Italic */
@font-face {
  font-family: "Roboto";
  src: url("/media/site-assets/fonts/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}
/*--- Roboto Slab Variable Width Family ---*/
@font-face {
  font-family: "Roboto Slab";
  src: url("/media/site-assets/fonts/RobotoSlab-VariableFont_wght.ttf") format("truetype");
  font-weight: 1 999;
}
/*--- Roboto Condensed Variable Width Family ---*/
@font-face {
  font-family: "Roboto Condensed";
  src: url("/media/site-assets/fonts/RobotoCondensed-VariableFont_wght.ttf") format("truetype");
  font-weight: 1 999;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("/media/site-assets/fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 1 999;
  font-style: italic; /* Specify italic style */
}
/** General **/
body {
  margin: 0;
  background-color: #F6F8F8;
  font-family: "Roboto", "sans-serif";
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Slab", "sans-serif";
  color: rgb(29, 35, 38);
  font-weight: 700;
}

.main-heading {
  font-size: 28px;
  font-weight: normal;
  color: rgb(29, 35, 38);
}

a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.none {
  display: none;
}

p {
  color: #1D2326;
  font-size: 14px;
  line-height: auto;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
  color: #1D2326;
  font-size: 14px;
  line-height: auto;
  font-weight: 400;
}
ul li strong {
  font-weight: 600;
}

.detail-card ul li {
  line-height: 32px;
}

input,
.form-control {
  padding: 8px 15px;
  border: 1px solid #eee;
  line-height: 22px;
  border-radius: 5px;
  font-size: 13px;
  color: #1D2326;
}
input:focus, input:active,
.form-control:focus,
.form-control:active {
  outline: none;
  box-shadow: none;
  border: 1px solid #eee;
  color: #1D2326;
}
input::placeholder,
.form-control::placeholder {
  color: #999;
}

textarea {
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 13px;
  color: #1D2326;
}

#advanced_search_form {
  margin: 20px 10px 20px 5px;
  padding: 5px 10px;
  border-bottom: 2px solid #DDDCC5;
  background-color: #EEEEE2;
  border-radius: 5px;
}
#advanced_search_form label {
  color: #8c0000;
  font-family: "Roboto Slab", "sans-serif";
  font-size: 16px;
  font-weight: 700;
}
#advanced_search_form input {
  width: auto;
  background-color: #fff;
  border: 1px solid #d0d0c8;
  box-shadow: inset 0 1px 3px #ccc;
  border-radius: 5px;
  font-size: 12px;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}

/* -- Bootstrap Button Overrides -- */
.btn-primary {
  background-color: #8c0000;
  border: 1px solid #8c0000;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #1D2326;
  border: 1px solid #1D2326;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.gx-main-content {
  transition: all 0.1s ease-in-out;
  padding: 72px 0 0 0;
  flex: 1 1 auto;
}

.sb-hide .gx-main-content {
  width: 100%;
  margin-left: 0;
}

b {
  color: #8c0000;
}

.img-rectangle {
  border-radius: 0;
}

.img-round-radius {
  border-radius: 5px;
}

.img-round {
  border-radius: 50%;
}

.img-pill {
  border-radius: 50px;
}

.min-h-100 {
  min-height: calc(100vh - 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

code[class*=language-],
pre[class*=language-] {
  text-shadow: none;
}

/* Spacing */
.pb-m-24 {
  padding-bottom: 24px;
}

.pb-15 {
  padding-bottom: 15px;
}

.m-b-0 {
  margin-bottom: 0;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-t-24 {
  margin-top: 24px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-24 {
  margin-bottom: 24px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-r-5 {
  margin-right: 5px;
}

.m-r-10 {
  margin-right: 10px;
}

.m-l-5 {
  margin-left: 5px;
}

.m-l-10 {
  margin-left: 10px;
}

.m-r-15 {
  margin-right: 15px;
}

.mb-m-15 {
  margin-bottom: -15px;
}

.mb-m-24 {
  margin-bottom: -24px;
}

.mb-m-30 {
  margin-bottom: -30px;
}

.p-15 {
  padding: 15px;
}

.p-b-15 {
  padding-bottom: 15px;
}

.gx-border {
  border: 1px solid #eee;
}

/*  Loader  */
#gx-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  z-index: 999;
}
#gx-overlay .gx-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
#gx-overlay .gx-ellipsis div {
  position: absolute;
  top: 33px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
  opacity: 0.7;
  transform: scale(0);
}
#gx-overlay .gx-ellipsis div:nth-child(1) {
  background: #8c0000;
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
#gx-overlay .gx-ellipsis div:nth-child(2) {
  background: #CA0813;
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
#gx-overlay .gx-ellipsis div:nth-child(3) {
  background: #8c0000;
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
#gx-overlay .gx-ellipsis div:nth-child(4) {
  background: #CA0813;
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

/* Colors */
.color-primary {
  color: #8c0000;
}

.color-secondary {
  color: #CA0813;
}

.color-success {
  color: #2bbb93;
}

.color-info {
  color: #50d1f8;
}

.color-warning {
  color: #ffa04f;
}

.color-danger {
  color: #fb2f2f;
}

.color-dark {
  color: #1d2531;
}

.bg-color-primary {
  color: #5f6af5;
}

.bg-color-secondary {
  color: #ff4f7f;
}

.bg-color-success {
  color: #2bbb93;
}

.bg-color-info {
  color: #50d1f8;
}

.bg-color-warning {
  color: #ffa04f;
}

.bg-color-danger {
  color: #fb2f2f;
}

.bg-color-dark {
  color: #1d2531;
}

.bg-primary {
  background-color: #8c0000 !important;
}

.bg-secondary {
  background-color: #CA0813 !important;
}

label {
  margin-bottom: 5px;
  font-size: 12px;
  color: #999;
  font-weight: 500;
}

.gx-page-title {
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
}
.gx-page-title .gx-breadcrumb h5 {
  font-size: 24px;
  font-weight: 700;
  color: rgb(29, 35, 38);
}
.gx-page-title .gx-breadcrumb ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
}
.gx-page-title .gx-breadcrumb ul li {
  font-family: "Roboto Condensed", "sans-serif";
  font-size: 13px;
  font-weight: 400;
  color: #1D2326;
  position: relative;
}
.gx-page-title .gx-breadcrumb ul li:not(:first-child) {
  padding-left: 20px;
}
.gx-page-title .gx-breadcrumb ul li:not(:first-child):after {
  content: "\ea6e";
  font-family: "remixicon", sans-serif !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0;
  left: 3px;
}
.gx-page-title .gx-breadcrumb ul li a {
  color: #8C0000;
  text-decoration: none;
}
.gx-page-title .gx-breadcrumb ul li a:hover {
  color: #CA0813;
  text-decoration: underline;
}
.gx-page-title .gx-breadcrumb ul li a:focus {
  color: #CA0813;
  text-decoration: none;
}
.gx-page-title .gx-tools {
  display: flex;
  align-items: center;
}
.gx-page-title .gx-tools > div {
  padding-left: 5px;
}
.gx-page-title .gx-tools .calendar {
  height: 35px;
  padding: 0 8px;
  font-size: 12px;
  color: #1D2326;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
.gx-page-title .gx-tools .calendar i {
  margin-right: 5px;
  font-size: 16px;
  color: rgb(29, 35, 38);
}
.gx-page-title .gx-tools .refresh {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: rgb(29, 35, 38);
  background-color: #fff;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}
.gx-page-title .gx-tools .filter button {
  width: 35px;
  height: 35px;
  padding: 0;
  background-color: #fff;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  color: rgb(29, 35, 38);
  font-size: 13px;
}
.gx-page-title .gx-tools .filter button i {
  font-size: 16px;
}
.gx-page-title .gx-tools .filter button:after {
  display: none;
}
.gx-page-title .gx-tools .filter button:focus {
  box-shadow: none;
}

.gx-page-title-2 .gx-breadcrumb {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.gx-page-title-2 .gx-breadcrumb h5 {
  margin: 0;
}

.simple-table {
  width: 100%;
}
.simple-table thead tr th {
  padding: 10px;
}
.simple-table tr td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.simple-table tr td span {
  display: block;
}
.simple-table tr td .title {
  font-size: 14px;
  color: #1D2326;
  text-transform: capitalize;
}
.simple-table tr td .link {
  font-size: 13px;
  color: #999;
  text-transform: lowercase;
}
.simple-table tr td .users-view {
  font-size: 13px;
  font-weight: 600;
  color: #1D2326;
}
.simple-table tr td .users-view i {
  margin-right: 5px;
}

.radius-30 {
  border-radius: 30px !important;
}

.radius-0 {
  border-radius: 0 !important;
}

.gx-btn {
  height: 35px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: capitalize;
  color: #1D2326;
  border: 1px solid #eee;
  border-radius: 5px;
  cursor: pointer;
}
.gx-btn:hover {
  background-color: rgba(72, 85, 104, 0.07);
}
.gx-btn:focus {
  outline: none;
  box-shadow: none;
}

.gx-btn-primary,
.gx-primary-btn {
  transition: all 0.3s ease-in-out;
  height: 35px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #8c0000;
  color: #fff;
  font-size: 14px;
  border: 1px solid #8c0000;
  border-radius: 5px;
  cursor: pointer;
}
.gx-btn-primary:hover,
.gx-primary-btn:hover {
  background-color: #fff;
  color: #8c0000;
  border: 1px solid #8c0000;
}
.gx-btn-primary:focus,
.gx-primary-btn:focus {
  outline: none;
  box-shadow: none;
}

.gx-btn-secondary {
  transition: all 0.3s ease-in-out;
  height: 35px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #CA0813;
  color: #fff;
  font-size: 14px;
  border: 1px solid #CA0813;
  border-radius: 5px;
  cursor: pointer;
}
.gx-btn-secondary:hover {
  background-color: #fff;
  color: #CA0813;
  border: 1px solid #CA0813;
}
.gx-btn-secondary:focus {
  outline: none;
  box-shadow: none;
}

.max-width-1170 {
  max-width: 1170px;
  margin: auto;
}

.dropdown {
  border-radius: 5px;
}
.dropdown .dropdown-toggle {
  width: 30px;
  height: 30px;
  padding: 0;
  background: transparent;
  border: 1px solid #eee;
  border-radius: 5px;
}
.dropdown .dropdown-toggle:after {
  display: none;
}
.dropdown .dropdown-toggle:focus {
  box-shadow: none;
}
.dropdown .dropdown-toggle i {
  color: #1D2326;
  line-height: 29px;
}

.gx-code {
  margin-top: 15px;
  background: #fff;
  overflow: auto;
  width: auto;
  border: solid #eee;
  border-width: 0.1em 0.1em 0.1em 0.8em;
  padding-top: 15px;
  padding-left: 15px;
  border-radius: 5px;
}
.gx-code pre {
  margin: 0;
  line-height: 125%;
}
.gx-code pre span,
.gx-code pre code {
  color: #1D2326;
  background-color: #fff;
}

.icons-header {
  width: 100%;
  display: block;
  position: relative;
}

.gx-material-icons .hide {
  display: none;
}

.material-icons {
  column-count: 3;
}
.material-icons div {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 5px;
}
.material-icons div code {
  border: 1px solid #f3f3f3;
  width: 65px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 24px;
  cursor: pointer;
}
.material-icons div span {
  cursor: pointer;
  font-size: 13px;
  text-overflow: ellipsis;
  display: inline-block;
  max-width: calc(100% - 90px);
  overflow: hidden;
  vertical-align: middle;
  white-space: nowrap;
  color: #1D2326;
}
.material-icons div i {
  display: inline-block;
  width: 32px;
  height: 24px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 24px;
}

.gx-remix-icons {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.gx-remix-icons .header-tools {
  display: flex;
  flex-direction: row-reverse;
}
.gx-remix-icons .header-tools input {
  margin-bottom: 15px;
  padding: 8px 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 13px;
  color: #1D2326;
}
.gx-remix-icons .header-tools input:focus {
  outline: none;
  box-shadow: none;
}
.gx-remix-icons .remix-unicode-icon {
  margin-bottom: 24px;
}
.gx-remix-icons .remix-unicode-icon.hide {
  display: none;
}
.gx-remix-icons .gx-icon-block {
  width: 100%;
  height: 100%;
  padding: 15px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(72, 85, 104, 0.07);
  border-radius: 5px;
}
.gx-remix-icons .gx-icon-block .remix-icons {
  margin-bottom: 15px;
  color: #485568;
  font-family: "remixicon", sans-serif !important;
  font-size: 26px;
}
.gx-remix-icons .gx-icon-block h4 {
  font-family: "Roboto", "sans-serif";
  color: #777;
  font-size: 13px;
  text-align: center;
}

.remix-unicode {
  font-size: 13px;
  color: #1D2326;
  font-family: "remixicon", serif !important;
}

.gx-search-popup .search.dropdown-menu.show {
  padding: 5px;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
}
.gx-search-popup .search.dropdown-menu.show a {
  padding: 0 0 0 5px;
  color: #1D2326;
}
.gx-search-popup .search.dropdown-menu.show input {
  padding: 5px 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  font-size: 13px;
  color: #1D2326;
}
.gx-search-popup .search.dropdown-menu.show input:focus {
  box-shadow: none;
  outline: none;
}

.drop-settings {
  position: absolute;
  top: 0;
  right: 0;
}
.drop-settings button {
  padding: 0;
  background-color: transparent;
  border: 0;
  box-shadow: none;
}
.drop-settings button:focus, .drop-settings button:focus-visible {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
.drop-settings button:hover, .drop-settings button:active {
  background-color: transparent;
  box-shadow: none;
}
.drop-settings button i {
  color: #485568;
}
.drop-settings button:after {
  display: none;
}
.drop-settings ul {
  min-width: 9rem;
  border: 0;
  box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
}
.drop-settings ul li a {
  font-size: 13px;
  color: #1D2326;
  text-transform: capitalize;
}
.drop-settings ul li a:active {
  background-color: transparent;
  color: #1D2326;
}

.dropdown-menu {
  padding: 10px;
  box-shadow: 0 2px 7px rgba(58, 65, 74, 0.25);
  border: 0;
}
.dropdown-menu .dropdown-item {
  padding: 5px 10px;
  font-size: 13px;
  color: #1D2326;
  border-radius: 5px;
  text-transform: capitalize;
}
.dropdown-menu .dropdown-item:active {
  background-color: #e9ecef;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: initial;
  width: initial;
  height: initial;
}

.max-height {
  max-height: 450px;
}

.appear {
  animation: appear 500ms ease-out forwards;
}

/**  Tags and skills input  **/
.bootstrap-tagsinput {
  width: 100%;
  background-color: transparent;
  border: 1px solid #eee;
  display: inline-block;
  padding: 8px 10px;
  color: #1D2326;
  vertical-align: middle;
  border-radius: 5px;
  line-height: 22px;
  cursor: text;
}
.bootstrap-tagsinput input {
  border: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  background-color: transparent;
  padding: 0 5px;
  margin: 0;
  width: auto;
  max-width: inherit;
}
.bootstrap-tagsinput input:focus {
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.bootstrap-tagsinput input::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.bootstrap-tagsinput input::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.bootstrap-tagsinput input:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.bootstrap-tagsinput input::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.bootstrap-tagsinput input::placeholder {
  color: #999;
  opacity: 1;
}
.bootstrap-tagsinput .tag {
  margin-right: 2px;
  color: #1D2326;
}
.bootstrap-tagsinput .tag [data-role=remove] {
  margin-left: 8px;
  cursor: pointer;
  color: #CA0813;
}
.bootstrap-tagsinput .tag [data-role=remove]:after {
  content: "×";
  padding: 0 2px;
}
.bootstrap-tagsinput .tag [data-role=remove]:hover {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role=remove]:hover:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.bootstrap-tagsinput.form-control input::-moz-placeholder {
  color: #777;
  opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
  color: #1D2326;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
  color: #1D2326;
}

@keyframes appear {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.05);
  }
  75% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
.white-mode-logo {
  display: block;
  filter: drop-shadow(0 2px 3px rgba(38, 29, 29, 0.65));
}

.dark-mode-logo {
  display: none;
}

.gx-toggle-sidebar {
  display: flex;
  align-items: center;
  position: relative;
}
.gx-toggle-sidebar .outer-ring {
  width: 30px;
  height: 18px;
  display: block;
  border: 1px solid #9799a7;
  border-radius: 30px;
  position: relative;
}
.gx-toggle-sidebar .outer-ring .inner-ring {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 3px;
  right: 4px;
  border-radius: 30px;
  display: block;
  background-color: #9799a7;
}

.gx-toggle-sidebar.active .outer-ring .inner-ring {
  transition: all 0.3s ease-in-out;
  left: 4px;
}

/* Responsive css sidebar */
@media only screen and (max-width: 991px) {
  .mb-991 {
    margin-bottom: 30px;
  }
  .material-icons {
    column-count: 2;
  }
}
/* adam adjusting this default from 767px to 867px */
@media only screen and (max-width: 867px) {
  .material-icons {
    column-count: 1;
  }
  .gx-page-title {
    flex-direction: column;
  }
  .gx-page-title .gx-tools {
    margin-top: 15px;
  }
  .gx-page-title .gx-tools > div {
    padding: 0 5px 0 0;
  }
  .gx-page-title .gx-tools .refresh {
    display: none;
  }
  .gx-page-title-2 .gx-breadcrumb {
    flex-direction: column;
    align-items: baseline;
  }
  .gx-page-title-2 .gx-breadcrumb ul {
    margin-top: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .gx-main-content {
    width: 100%;
    margin-left: 0;
  }
  .sb-collapse .gx-main-content {
    width: 100%;
    margin-left: 0;
  }
  .gx-btn-primary {
    display: none !important;
  }
}
/** Sidebar css **/
.gx-sb-list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.gx-sb-list li {
  padding: 5px 0;
}
.gx-sb-list li:last-child {
  padding-bottom: 0;
}
.gx-sb-list li li {
  padding: 0;
}
.gx-sb-list li li i {
  font-size: 12px !important;
}
.gx-sb-list .sb-subdrop-item {
  padding-left: 25px;
}
.gx-sb-list .sb-subdrop-item > a {
  transition: all 0.3s ease-in-out;
  width: 100%;
  color: #aeb8c7 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  display: flex;
  align-items: center;
  line-height: 18px !important;
}
.gx-sb-list .gx-sb-title {
  margin-top: 30px;
  padding: 3px 0 3px 10px;
  text-transform: uppercase;
  color: #F6F8F8;
  font-size: 11px;
  font-family: "Roboto Slab", "sans-serif";
  font-weight: 700;
  border-bottom: 2px solid #DDDCC5;
  background-color: #A69276;
}
.gx-sb-list .gx-sb-item-separator {
  width: 100%;
  height: 1px;
  margin: 12px 0;
  padding: 0;
  display: block;
  background-color: #27303e;
}
.gx-sb-list .gx-sb-item.home {
  padding: 12px;
  background-color: #27303e;
  border-radius: 5px;
}
.gx-sb-list .load-active > a .drop-arrow {
  transform: rotate(90deg);
}
.gx-sb-list .load-sub-active > a .drop-arrow {
  transform: rotate(90deg);
}
.gx-sb-list .gx-sb-item {
  position: relative;
}
.gx-sb-list .gx-sb-item a {
  transition: all 0.2s ease-in-out;
  width: 100%;
  color: #555;
  font-size: 13px; /* original setting: 14px; */
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 16px;
}
.gx-sb-list .gx-sb-item a > i {
  margin-right: 10px;
  font-size: 18px;
}
.gx-sb-list .gx-sb-item a .drop-arrow {
  transition: all 0.3s ease-in-out;
  position: absolute;
  right: 10px;
  font-size: 18px;
}
.gx-sb-list .gx-sb-drop {
  padding: 0;
  display: none;
}
.gx-sb-list .gx-sb-drop a {
  transition: all 0.2s ease-in-out;
  font-weight: 400;
  background-color: #fff;
  color: #555;
  font-size: 13px;
}
.gx-sb-list .gx-sb-drop a i.ri-git-commit-line {
  transition: all 0.2s ease-in-out;
  transform: rotate(0deg);
}
.gx-sb-list .active-drop ul {
  display: block;
}

/* -- Added by Adam 02-29-2024 -- */
.adam-search-box {
  padding-top: 0 !important;
}

.adam-toc-header {
  text-shadow: 1px 1px #151515;
  padding-top: 0;
}

#sidebar_search_form {
  padding: 12px 0 24px 0;
  border-bottom: 2px solid #DDDCC5;
  background-color: #EEEEE2;
}
#sidebar_search_form label {
  color: #8c0000;
  font-family: "Roboto Slab", "sans-serif";
  font-size: 14px;
  font-weight: 700;
}
#sidebar_search_form input {
  background-color: #fff;
  border: 1px solid #d0d0c8;
  box-shadow: inset 0 1px 3px #ccc;
  border-radius: 5px;
  font-size: 12px;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}

/* ======================================
Tools sidebar
========================================= */
.gx-tools-sidebar-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 41;
}

.gx-tools-sidebar {
  width: 300px;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 41;
  transform: translateX(300px);
}
.gx-tools-sidebar .gx-tools-sidebar-toggle {
  position: absolute;
  top: 45%;
  right: 302px;
  width: 40px;
  height: 40px;
  background-color: rgba(29, 37, 49, 0.6);
  transition: all ease-in 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  z-index: -1;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.gx-tools-sidebar .gx-tools-sidebar-toggle i {
  color: #fff;
  animation: rotation 3s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.gx-tools-sidebar .gx-bar-title {
  margin-bottom: 15px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.gx-tools-sidebar .gx-bar-title h6 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: rgb(29, 35, 38);
}
.gx-tools-sidebar .gx-bar-title .close-tools {
  color: #ff4f7f;
  font-size: 17px;
  cursor: pointer;
}
.gx-tools-sidebar .gx-tools-detail {
  height: calc(100vh - 72px);
  padding: 0 15px 15px 15px;
  overflow: auto;
}
.gx-tools-sidebar .gx-tools-detail::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
  height: 7px;
  position: absolute;
}
.gx-tools-sidebar .gx-tools-detail::-webkit-scrollbar-thumb {
  background-color: rgba(80, 93, 113, 0.5);
  border-radius: 5px;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block h3 {
  margin: 15px 0;
  font-size: 14px;
  font-weight: 500;
  color: rgb(29, 35, 38);
  font-family: "Roboto", "sans-serif";
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block p {
  margin: 0;
  text-transform: capitalize;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-color {
  margin: 0;
  padding: 0;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-color li {
  display: inline-block;
  height: 35px;
  width: 35px;
  border-radius: 5px;
  cursor: pointer;
  vertical-align: middle;
  margin: 6px;
  position: relative;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item {
  width: 125px;
  margin-bottom: 10px;
  text-align: center;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item img {
  width: 100%;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item img:hover {
  border: 1px solid #8c0000;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item.active {
  position: relative;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item.active:after {
  font-family: "remixicon", sans-serif !important;
  content: "\eb79";
  width: 30px;
  height: 30px;
  font-size: 16px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 10px;
  background-color: rgba(95, 106, 245, 0.7);
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gx-tools-sidebar .gx-tools-detail .gx-tools-block .gx-tools-info .gx-tools-item.active img {
  border-color: #8c0000;
}

.active-variant {
  position: relative;
}
.active-variant:after {
  font-family: "remixicon", sans-serif !important;
  content: "\eb79";
  height: 35px;
  width: 35px;
  font-size: 18px;
  position: absolute;
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.color-primary {
  background: #8c0000;
}

.color-1 {
  background: #55ca9a;
}

.color-2 {
  background: #f5885f;
}

.color-3 {
  background: #32dbe2;
}

.color-4 {
  background: #3f51b5;
}

.color-5 {
  background: #f44336;
}

.color-6 {
  background: #e91e63;
}

.color-7 {
  background: #607d8b;
}

.color-8 {
  background: #1e2531;
}

.color-9 {
  background: #03492f;
}

.open-tools {
  transform: translateX(0);
}

/** Header css **/
.gx-header, [data-header-mode-tool=light] {
  transition: all 0.1s ease-in-out;
  height: 70px;
  width: 100%;
  padding: 0 12px;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(140, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
  z-index: 15;
  border-bottom: 2px solid rgba(108, 115, 106, 0.8);
}
.gx-header .gx-header-items, [data-header-mode-tool=light] .gx-header-items {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.gx-header .gx-header-items .left-header, [data-header-mode-tool=light] .gx-header-items .left-header {
  height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.gx-header .gx-header-items .left-header a, [data-header-mode-tool=light] .gx-header-items .left-header a {
  display: flex;
  align-items: center;
}
.gx-header .gx-header-items .left-header a img, [data-header-mode-tool=light] .gx-header-items .left-header a img {
  width: 200px; /* original template: 100px;  Cayuga logo file is 218px wide */
}
.gx-header .gx-header-items .header-search-box, [data-header-mode-tool=light] .gx-header-items .header-search-box {
  margin-left: 20px;
  position: relative;
}
.gx-header .gx-header-items .header-search-box .open-search, [data-header-mode-tool=light] .gx-header-items .header-search-box .open-search {
  display: none;
}
.gx-header .gx-header-items .header-search-box form, [data-header-mode-tool=light] .gx-header-items .header-search-box form {
  background-color: transparent;
  z-index: 20;
}
.gx-header .gx-header-items .header-search-box input, [data-header-mode-tool=light] .gx-header-items .header-search-box input {
  min-width: 300px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  background-color: #fff;
}
.gx-header .gx-header-items .header-search-box input:focus, [data-header-mode-tool=light] .gx-header-items .header-search-box input:focus {
  outline: navajowhite;
  border: 1px solid #eee;
}
.gx-header .gx-header-items .header-search-box .search-btn, [data-header-mode-tool=light] .gx-header-items .header-search-box .search-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
}
.gx-header .gx-header-items .header-search-box .search-btn i, [data-header-mode-tool=light] .gx-header-items .header-search-box .search-btn i {
  color: #fff;
}
.gx-header .gx-header-items .gx-toggle-sidebar.active .outer-ring .inner-ring, [data-header-mode-tool=light] .gx-header-items .gx-toggle-sidebar.active .outer-ring .inner-ring {
  transition: all 0.3s ease-in-out;
  left: 4px;
}
.gx-header .gx-header-items .outer-ring, [data-header-mode-tool=light] .gx-header-items .outer-ring {
  width: 30px;
  height: 18px;
  display: block;
  border: 1px solid #fff;
  border-radius: 30px;
  position: relative;
}
.gx-header .gx-header-items .outer-ring .inner-ring, [data-header-mode-tool=light] .gx-header-items .outer-ring .inner-ring {
  transition: all 0.3s ease-in-out;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 3px;
  right: 4px;
  border-radius: 30px;
  display: block;
  background-color: #fff;
}
.gx-header .right-header, [data-header-mode-tool=light] .right-header {
  display: flex;
  flex-direction: row;
}
.gx-header .btn-topic, [data-header-mode-tool=light] .btn-topic {
  width: 35px;
  height: 35px;
  border: 0 solid none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
}
.gx-header .btn-topic i, [data-header-mode-tool=light] .btn-topic i {
  color: #fff;
  font-size: 24px;
}
.gx-header .btn-topic:hover, [data-header-mode-tool=light] .btn-topic:hover {
  background-color: #1D2326;
}

[data-header-mode-tool=dark] {
  background-color: rgba(26, 32, 43, 0.95);
}
[data-header-mode-tool=dark] .gx-header-items .header-search-box input {
  background: #1e2531;
  border-color: #313a4b;
  color: #aab2bf;
}
[data-header-mode-tool=dark] .gx-header-items .header-search-box input:focus {
  border-color: #313a4b;
}
[data-header-mode-tool=dark] .gx-header-items .gx-hover-drop:hover {
  background-color: #181d27;
}
[data-header-mode-tool=dark] .gx-header-items .gx-hover-drop i {
  color: #9ba5b5;
}
[data-header-mode-tool=dark] .gx-header-items .gx-right-tool > a:hover {
  background-color: #181d27;
}
[data-header-mode-tool=dark] .gx-header-items .gx-right-tool i {
  color: #9ba5b5;
}

[data-header-mode-tool=light] {
  background-color: rgba(255, 255, 255, 0.93);
}
[data-header-mode-tool=light] .gx-header-items .right-header .gx-right-tool > a:hover {
  background-color: #e9ecef;
}
[data-header-mode-tool=light] .gx-header-items .right-header .gx-right-tool > a i {
  color: #485568;
}
[data-header-mode-tool=light] .gx-header-items .right-header .gx-right-tool i {
  color: #485568;
}
[data-header-mode-tool=light] .gx-header-items .right-header .gx-hover-drop:hover {
  background-color: #e9ecef;
}

/* Responsive css sidebar */
@media only screen and (max-width: 1199px) {
  .gx-header .btn-topic {
    width: 35px;
    height: 35px;
    border: 0 solid none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gx-header .btn-topic i {
    color: #fff;
    font-size: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .gx-header {
    z-index: 20;
  }
  .gx-header .gx-header-items .header-search-drop:hover .gx-search {
    margin-top: 0;
    opacity: 1;
    visibility: visible;
  }
  .gx-header .gx-header-items .header-search-box {
    position: relative;
  }
  .gx-header .gx-header-items .header-search-box .open-search {
    width: 30px;
    height: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
  }
  .gx-header .gx-header-items .header-search-box .search-btn {
    right: 18px;
  }
  .gx-header .gx-header-items .header-search-box .gx-search {
    transition: all 0.3s ease-in-out;
    width: 300px;
    margin-top: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
    position: absolute;
    opacity: 0;
    visibility: hidden;
    top: 50px;
    left: auto !important;
    display: block;
    background-color: #fff;
  }
  .gx-header .gx-header-items .header-search-box .gx-search input {
    width: 100%;
    min-width: 100%;
  }
  .gx-header .gx-header-items .outer-ring .inner-ring {
    transition: all 0.3s ease-in-out;
    left: 4px;
    right: auto;
  }
  .gx-header .gx-header-items .gx-toggle-sidebar.active .outer-ring .inner-ring {
    transition: all 0.3s ease-in-out;
    right: 4px;
    left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .gx-header .gx-header-items .header-search-box {
    margin-left: 15px;
  }
  .gx-header .gx-header-items .header-search-box .open-search {
    font-size: 18px;
  }
  .gx-header .gx-header-items .header-search-box .gx-search {
    top: 45px;
  }
  .gx-header .gx-header-items .left-header {
    height: 60px;
  }
  .gx-header .gx-header-items .right-header .gx-hover-tool img.user {
    width: 30px;
    height: 30px;
  }
  .gx-header .gx-header-items .right-header .gx-hover-tool img.flag {
    width: 18px;
    height: 18px;
  }
  .gx-header .gx-header-items .right-header .gx-right-tool i {
    font-size: 18px;
  }
  .gx-header .gx-header-items .right-header .gx-right-tool > a {
    width: 30px;
    height: 30px;
  }
  .gx-header .gx-header-items .right-header .gx-hover-drop {
    width: 30px;
    height: 30px;
  }
  .gx-header .gx-header-items .right-header .gx-hover-drop .gx-hover-drop-panel {
    top: 45px;
  }
  .gx-header .gx-header-items .right-header .gx-right-tool {
    margin-left: 5px;
  }
  .gx-header .gx-header-items .right-header .gx-user-drop {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 575px) {
  .sb-collapse .gx-header {
    width: 100%;
    margin-left: 0;
  }
  .gx-right-tool.display-screen, .gx-right-tool.display-dark {
    display: none;
  }
}
@media only screen and (max-width: 420px) {
  .gx-header .gx-header-items .header-search-box {
    position: unset;
  }
  .gx-header .gx-header-items .header-search-box .gx-search {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    top: 60px;
  }
  .gx-right-tool.apps .gx-hover-drop {
    position: unset;
  }
  .gx-right-tool.apps .gx-hover-drop-panel {
    width: calc(100% - 30px);
    left: 15px;
    right: 15px;
    top: 60px;
  }
  .gx-right-tool.apps .gx-hover-drop-panel ul {
    justify-content: center;
  }
}
/** All Cards **/
.gx-full-card-close {
  display: none;
}

.gx-card-overlay {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 42;
}

.gx-full-screen {
  width: 100%;
  max-width: 1400px;
  padding: 12px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 43;
}
.gx-full-screen .gx-card {
  margin: 0;
  max-height: calc(100vh - 24px);
  overflow: auto;
}
.gx-full-screen .gx-card::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
  height: 7px;
  position: absolute;
}
.gx-full-screen .gx-card::-webkit-scrollbar-thumb {
  background-color: rgba(80, 93, 113, 0.5);
  border-radius: 5px;
}

.feature-card {
  margin-bottom: 24px;
  padding: 30px 15px;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 5px;
}
.feature-card img {
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
}
.feature-card h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: rgb(29, 35, 38);
}

.gx-main-structure.active a i.ri-arrow-up-s-line {
  transform: rotate(0deg);
}
.gx-main-structure.active > li {
  display: block;
}

.topic-sidebar {
  height: calc(100vh - 120px);
  position: sticky;
  top: 94px;
  overflow: auto;
}
.topic-sidebar::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
  height: 7px;
  position: absolute;
}
.topic-sidebar::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 5px;
}
.topic-sidebar:hover::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
  height: 7px;
  position: absolute;
}
.topic-sidebar:hover::-webkit-scrollbar-thumb {
  background-color: rgba(80, 93, 113, 0.5);
  border-radius: 5px;
}

.file-customization ul li {
  padding: 10px 0;
  line-height: 28px;
}

pre.language-markup,
pre.language-html,
pre.language-css,
pre.language-js {
  max-height: 450px;
  border-radius: 5px;
}
pre.language-markup::-webkit-scrollbar,
pre.language-html::-webkit-scrollbar,
pre.language-css::-webkit-scrollbar,
pre.language-js::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
  height: 7px;
  position: absolute;
}
pre.language-markup::-webkit-scrollbar-thumb,
pre.language-html::-webkit-scrollbar-thumb,
pre.language-css::-webkit-scrollbar-thumb,
pre.language-js::-webkit-scrollbar-thumb {
  background-color: rgba(80, 93, 113, 0.5);
  border-radius: 5px;
}

.source li {
  padding: 8px 0;
}

.gx-topic-list ul li .gx-drop-toggle {
  padding: 6px 10px 10px 0; /* original settings: 12px 0 20px 0; */
  color: #555;
  display: flex;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}
.gx-topic-list ul li a {
  padding: 12px;
  color: #555;
  display: flex;
  font-weight: 500;
}
.gx-topic-list ul li a:hover {
  color: #8c0000;
}
.gx-topic-list ul li a.sub-topic {
  background-color: #fff;
  padding: 10px 15px;
}
.gx-topic-list ul li .active {
  border: 1px solid #8c0000;
  color: #8c0000;
}

.tab-content {
  padding-top: 30px;
}

button.nav-link {
  color: #1D2326;
}
button.nav-link:hover {
  color: #1D2326;
}
button.nav-link i {
  margin-right: 5px !important;
}

.gx-main-structure {
  overflow: auto;
}
.gx-main-structure::-webkit-scrollbar {
  background-color: transparent;
  width: 7px;
  height: 7px;
  position: absolute;
}
.gx-main-structure::-webkit-scrollbar-thumb {
  background-color: rgba(80, 93, 113, 0.5);
  border-radius: 5px;
}
.gx-main-structure > li:not(:last-child) {
  margin-bottom: 15px;
}
.gx-main-structure a {
  color: #1D2326;
}
.gx-main-structure ul.active > li {
  display: block;
}
.gx-main-structure i {
  margin-right: 10px;
  font-size: 20px;
  color: #8c0000;
}
.gx-main-structure i.ri-arrow-up-s-line {
  transition: all 0.3s ease-in-out;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  font-size: 16px;
  color: #1D2326;
  transform: rotate(-180deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.gx-main-structure ul {
  margin-left: 35px;
  padding-left: 15px;
  border-left: 1px dashed #ddd;
}
.gx-main-structure ul li {
  padding: 10px 0;
  color: #1D2326;
}
.gx-main-structure ul li a {
  color: #1D2326;
}
.gx-main-structure ul li a i {
  margin-right: 10px;
  font-size: 20px;
  color: #8c0000;
}
.gx-main-structure ul li i {
  margin-right: 10px;
  font-size: 20px;
  color: #8c0000;
}

.info-title {
  margin-top: 15px;
  margin-bottom: 30px;
}

.gx-card.server img {
  width: 100%;
  max-width: 700px;
}

.gx-banner-auth {
  margin: 50px 0 !important;
  padding: 30px;
  background-color: #8c0000 !important;
  background-image: url("/media/site-assets/images/bg-1.png");
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.gx-banner-auth .gx-detail {
  display: flex;
  flex-direction: row;
}
.gx-banner-auth .gx-image img {
  width: 300px;
  border-radius: 5px;
}
.gx-banner-auth .auth-detail {
  padding: 0 15px;
}
.gx-banner-auth .auth-detail li {
  padding: 5px 0;
  list-style-type: none;
  color: #f5f5f5 !important;
}
.gx-banner-auth ul li {
  padding: 10px 0;
  line-height: 28px;
}
.gx-banner-auth ul .rating i {
  color: #FFFF00;
}

.gx-card {
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}
.gx-card .gx-card-header.tips {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.gx-card .gx-card-header.tips h4 {
  margin: 0 10px 0 0;
}
.gx-card .gx-card-header.tips p.small {
  margin: 0;
  font-size: 12px;
  color: #999;
}
.gx-card .gx-card-header {
  padding: 12px;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(29, 35, 38, 0.15);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid rgba(29, 35, 38, 0.15);
}
.gx-card .gx-card-header .gx-card-title {
  margin: 0;
  font-size: 18px;
  color: rgb(29, 35, 38);
  font-weight: 700;
  text-transform: normal;
  display: flex;
  align-items: center;
  cursor: default;
}
.gx-card .gx-card-header small {
  color: #999;
  font-size: 12px;
}
.gx-card .gx-card-header .header-tools {
  height: 20px; /* original setting: 30px; changed by Adam to match left nav header height 02-22-2024 */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.gx-card .gx-card-header .header-tools > a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D2326;
  border: 1px solid rgba(29, 35, 38, 0.5);
  border-radius: 5px;
}
.gx-card .gx-card-header .header-tools > a i {
  color: #1D2326;
}
.gx-card .gx-card-header .header-tools > a:hover {
  background-color: #1D2326;
}
.gx-card .gx-card-header .header-tools > a:hover i {
  color: #fff;
}
.gx-card .gx-card-header .header-tools .button-add {
  width: auto;
  padding: 0 10px;
  background-color: #2bbb93;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.gx-card .gx-card-header .header-tools .button-add i {
  color: #fff;
}
.gx-card .gx-card-header .header-tools .button-add:hover {
  background-color: #25a984;
}
.gx-card .gx-card-header .header-tools .gx-full-card-close i {
  color: #1D2326;
  font-size: 20px;
}
.gx-card .gx-card-header .header-tools .dots {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c0000;
  border: 1px solid #8c0000;
  border-radius: 5px;
  cursor: pointer;
}
.gx-card .gx-card-header .header-tools .link {
  color: #8c0000;
  font-size: 13px;
}
.gx-card .gx-card-darker-header {
  background-color: rgba(29, 35, 38, 0.85);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.gx-card .gx-card-darker-header .gx-card-darker-title {
  color: #F6F8F8;
}
.gx-card .gx-card-content {
  padding: 12px;
}
.gx-card .gx-card-content .note {
  margin: 15px 0 0 0;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #e8eafa;
  color: #1D2326;
  font-weight: 400;
  line-height: 22px;
}
.gx-card .gx-card-content .note i {
  font-size: 18px;
}
.gx-card .gx-card-content .note p {
  margin: 0;
}
.gx-card .label-card .title {
  display: flex;
  justify-content: space-between;
}
.gx-card .label-card .title .icon {
  width: 50px;
  height: 50px;
  padding: 5px;
  background-color: rgba(72, 85, 104, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.gx-card .label-card .title .icon i {
  font-size: 25px;
  color: #485568;
}
.gx-card .label-card .title h4 {
  margin-bottom: 12px;
  color: #1D2326;
  font-size: 15px;
  font-family: "Roboto", "sans-serif";
  font-weight: 500;
}
.gx-card .label-card .title .growth-numbers h5 {
  margin: 0;
  color: #485568;
  font-size: 22px;
  line-height: 20px;
  font-weight: 700;
}
.gx-card .label-card .card-growth {
  margin-top: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.gx-card .label-card .card-growth i {
  margin-right: 5px;
  font-size: 15px;
}
.gx-card .label-card .card-growth span {
  margin-left: 5px;
  color: #999;
}
.gx-card .label-card .up {
  color: #2bbb93;
}
.gx-card .label-card .down {
  color: #f90c4c;
}
.gx-card .gx-card-footer {
  padding: 15px;
}

.gx-page-block ul li {
  padding: 10px 0;
}

.nav-tabs .nav-item {
  padding: 0;
}

.gx-thanks {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gx-thanks img {
  width: 100%;
  max-width: 500px;
  margin-top: 30px;
}
.gx-thanks p {
  text-align: center;
}

.gx-side-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 42;
  display: none;
}

/* Responsive css */
@media only screen and (max-width: 1366px) {
  .topic-list li {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1199px) {
  .gx-open-topic {
    left: 0 !important;
  }
  .gx-topic {
    width: 300px;
    height: 100vh;
    position: fixed;
    left: -300px;
    top: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 43;
  }
  .gx-topic .topic-sidebar {
    height: calc(100vh - 24px);
    overflow: auto;
    top: 12px;
  }
  .gx-topic .topic-sidebar::-webkit-scrollbar {
    background-color: transparent;
    width: 7px;
    height: 7px;
    position: absolute;
  }
  .gx-topic .topic-sidebar::-webkit-scrollbar-thumb {
    background-color: rgba(80, 93, 113, 0.5);
    border-radius: 5px;
  }
}
@media only screen and (max-width: 991px) {
  .gx-full-screen .gx-card {
    height: calc(100vh - 24px);
    overflow: auto;
  }
  .gx-banner-auth {
    padding: 24px;
  }
  .gx-banner-auth .auth-detail {
    padding: 0;
  }
  .gx-banner-auth .gx-detail {
    display: block;
    margin: 0;
    flex-direction: column;
  }
  .gx-banner-auth .gx-image {
    padding-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .gx-card .gx-card-header {
    padding: 15px;
  }
  .gx-card .gx-card-content {
    padding: 15px;
  }
  .gx-banner-auth {
    display: block;
    flex-direction: column;
    justify-content: space-between;
  }
  .gx-banner-auth .gx-detail {
    display: block;
    flex-direction: column;
  }
  .gx-banner-auth .gx-image img {
    width: 100%;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .header-575 {
    flex-direction: column !important;
  }
  .header-575 .header-tools {
    margin-top: 15px;
    justify-content: flex-start !important;
  }
  .gx-card .gx-card-header .header-tools .date {
    font-size: 11px;
  }
  .gx-card .gx-card-header {
    align-items: flex-start;
  }
  .header-tools {
    display: none !important;
  }
}
/* Custom Cayuga CSS Overrides */
.adam-top-buffer {
  height: 2rem;
}

.cayuga-red {
  color: #8C0000;
}

.font-bold-700 {
  font-weight: 700;
}

/* ------- START: SKIP NAV LINKS ------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

#skipnav a {
  color: #fff;
  background-color: rgba(29, 35, 38, 0.85); /* 85% of $color-charcoal: #1D2326; */
  font-size: 1em;
  line-height: 2em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  width: 100%;
  height: 70px; /* this matches current header height; original -->3em; */
  margin: 0;
  padding: 0.4em;
  outline: transparent none 0;
  outline-offset: 0;
}

#skipnav-link-1,
#skipnav-link-2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

#skipnav-link-1:focus,
#skipnav-link-2:focus {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

#skipnav-link-1 span.skipnav-border,
#skipnav-link-2 span.skipnav-border {
  outline: #73fdff dashed 1px;
  outline-offset: 4px;
}

/* ------- END: SKIP NAV LINKS --------------------- */
/* ------- START: OVERRIDE GRID -------------------- */
@media (min-width: 1200px) {
  /* KEEP FOR REFERENCE
  .col-xl-3 {
  	width: 25%;
  	background-color: #640d9d;
  }

  .col-xl-9 {
  	width: 75%;
  	background-color: #d3d333;
  }
  */
}
/* ------- END: OVERRIDE GRID ---------------------- */
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.adam-submenu {
  background-color: rgba(238, 238, 226, 0.4) !important;
}

.adam-submenu:hover {
  background-color: rgba(221, 220, 197, 0.6) !important;
}

.adam-submenu-selected {
  background-color: rgba(221, 220, 197, 0.8) !important;
}

/* sidebar hack temp */
.gx-sb-drop-adam-background {
  background-color: rgba(108, 115, 106, 0.5);
}

/* SVG Header Catalog Date */
.svg-header {
  pointer-events: none;
  width: 362px;
  height: 67px;
  display: block;
  position: absolute;
  top: 0;
  left: 145px; /* default was set to 5px */
  background-image: url('/media/site-assets/images/catalog_date_header.svg');
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.25;
}
    
.svg-header-2025 {
  background-image: url('/media/course-catalog/2025-2026/catalog_date_header_2025_2026.svg');
}
.svg-header-2026 {
  background-image: url('/media/course-catalog/2026-2027/catalog_date_header_2026-2027.svg');
}

@media only screen and (max-width: 530px) {
  .svg-header {
    height: 75%;
    top: 10px;
    left: 10px;
  }
}
/* ------- START: CONTENT TYPES -------------------- */
h1.section-title {
  font-size: 2em;
  color: rgb(29, 35, 38);
}

#gx_main_content p a,
#gx_main_content li a {
  color: #8c0000;
  text-decoration: underline;
}
#gx_main_content p a:hover, #gx_main_content p a:focus, #gx_main_content p a:active,
#gx_main_content li a:hover,
#gx_main_content li a:focus,
#gx_main_content li a:active {
  color: #CA0813;
  text-decoration: underline;
}
#gx_main_content p.lead {
  font-family: "Roboto Condensed", "sans-serif";
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
#gx_main_content a.btn.btn-primary {
  color: #fff;
  text-decoration: none;
}
#gx_main_content a.btn.btn-primary:hover, #gx_main_content a.btn.btn-primary:focus, #gx_main_content a.btn.btn-primary:active {
  color: #fff;
  text-decoration: none;
}
#gx_main_content ol {
  font-size: 14px;
  line-height: auto;
  display: block;
  list-style-type: decimal;
  margin: 20px 0;
  padding-left: 40px;
}
#gx_main_content ol li {
  color: #1D2326;
  font-size: 14px;
  line-height: auto;
  font-weight: 400;
  margin: 0 0 12px 0;
  padding: 0;
}
#gx_main_content ul {
  font-size: 14px;
  line-height: auto;
  display: block;
  margin: 20px 0;
  padding-left: 40px;
}
#gx_main_content ul li {
  list-style-type: square;
  color: #1D2326;
  font-size: 14px;
  line-height: auto;
  font-weight: 400;
  margin: 0 0 12px 0;
  padding: 0;
}
#gx_main_content ul li strong {
  font-weight: 600;
}
#gx_main_content table {
  font-size: 14px;
  line-height: 16px;
}
#gx_main_content table th {
  font-weight: 700;
  background-color: #1D2326;
  color: #F6F8F8;
  text-shadow: 1px 1px #151515;
}
#gx_main_content table td {
  background-color: #fff;
}
#gx_main_content table .td-darker {
  font-weight: 700;
  background-color: rgba(108, 115, 106, 0.2); /* 20% of $color-green: #6c736a; */
  border-bottom: 1px solid rgba(108, 115, 106, 0.4); /* 40% of $color-green: #6c736a; */
}
#gx_main_content table .td-medium {
  font-weight: 700;
  background-color: rgba(108, 115, 106, 0.05); /* 5% of $color-green: #6c736a; */
  border-bottom: 1px solid rgba(108, 115, 106, 0.4); /* 40% of $color-green: #6c736a; */
}
#gx_main_content table .td-medium-1 {
  font-weight: 700;
  background-color: #EEEEE2;
}
#gx_main_content table .td-medium-2 {
  font-weight: 700;
  background-color: #F6F8F8;
}
#gx_main_content .search-result-item {
  margin-bottom: 20px;
  background-color: #F6F8F8;
  border-radius: 5px;
  padding: 10px;
}
#gx_main_content .search-result-item p {
  font-size: 12px;
  margin-bottom: 12px;
  padding: 5px;
}
#gx_main_content .search-result-item p:last-child {
  margin-bottom: 0;
}
#gx_main_content .search-result-item .search-result-header {
  font-size: 16px;
  font-family: "Roboto Slab", "sans-serif";
  font-weight: 700;
}
#gx_main_content .accordion {
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}
#gx_main_content .accordion-button {
  font-weight: 700;
}
#gx_main_content .accordion-button:not(.collapsed) {
  color: #1D2326;
  background-color: rgba(108, 115, 106, 0.2);
  border-bottom: 1px solid #6c736a;
  font-weight: 700;
}
#gx_main_content section {
  margin-bottom: 36px;
}
#gx_main_content section .lead-paragraph {
  color: #A69276;
  font-family: "Roboto Condensed", "sans-serif";
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}
#gx_main_content section h1 {
  color: #8c0000;
}
#gx_main_content section h2 {
  color: #8c0000;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 1px solid #8C0000;
}
#gx_main_content section h2.division-chair-header {
  /* adjust size and bottom border specific for this */
  color: #8c0000;
  font-size: 1.5rem;
  padding-bottom: 6px;
  margin-bottom: 12px;
  border-bottom: 0 none;
}
#gx_main_content section h3 {
  color: #8c0000;
  margin-bottom: 12px;
  font-weight: 700;
}
#gx_main_content section h4 {
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 500;
}
#gx_main_content section h3.general-education-header {
  color: #8c0000;
  font-family: "Roboto", "sans-serif";
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 1em;
}
#gx_main_content section .footnote {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 8px;
}
#gx_main_content section .disclaimer {
  font-size: 12px;
  line-height: 24px;
  margin-top: 48px;
  margin-bottom: 0;
}
#gx_main_content article {
  margin-bottom: 36px;
  padding: 20px;
  border-radius: 5px;
}
#gx_main_content article h1 {
  color: #8c0000;
}
#gx_main_content article .degree-listing-link {
  font-size: 16px;
  line-height: 22px;
}
#gx_main_content article .degree-listing-link-concentration {
  margin-left: 24px;
  font-size: 14px;
  line-height: 28px;
}
#gx_main_content .content-box-basic {
  /* empty for how */
}
#gx_main_content .content-box-light {
  background-color: #ffffff;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}
#gx_main_content .content-box-dark {
  background-color: rgba(108, 115, 106, 0.2);
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.15);
}
#gx_main_content .gx-card-header a {
  text-decoration: none;
}
#gx_main_content .gx-card-header a:hover, #gx_main_content .gx-card-header a:focus, #gx_main_content .gx-card-header a:active {
  text-decoration: none;
}
#gx_main_content .form-check-input {
  padding: 8px;
  margin-right: 8px;
}
#gx_main_content .form-check-input:checked {
  background-color: #8c0000;
  border-color: #8c0000;
}
#gx_main_content .btn-outline-primary {
  --bs-btn-color: #8c0000;
  --bs-btn-border-color: #8c0000;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #8c0000;
  --bs-btn-hover-border-color: #8c0000;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #8c0000;
  --bs-btn-active-border-color: #8c0000;
  --bs-btn-disabled-color: #8c0000;
  --bs-btn-disabled-border-color: #8c0000;
}
#gx_main_content .btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #1D2326;
  --bs-btn-border-color: #1D2326;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #1D2326;
  --bs-btn-disabled-border-color: #1D2326;
}

/* ------- END: CONTENT TYPES ---------------------- */
/* ------- START: COURSE DESCRIPTIONS -------------- */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

dt {
  font-family: "Roboto Slab", "sans-serif";
  margin-bottom: 6px;
  font-weight: 700;
}

dd {
  font-size: 14px;
  font-weight: normal;
}

/* ------- END: COURSE DESCRIPTIONS ---------------- */
/* ------- START: MULTI-COLUMN GRID SETUP ---------- */
.multi-column-block {
  margin-bottom: 1rem;
}

.multi-column-title {
  font-family: "Roboto Condensed", "sans-serif";
  font-size: 1.2rem;
  margin-bottom: 6px !important;
}

/* ------- END: MULTI-COLUMN GRID SETUP ------------ */
/* ------- START: SCROLL SPY UPDATES --------------- */
.on-this-page-header {
  font-family: "Roboto Slab", "sans-serif";
  font-weight: 700;
  font-size: 14px;
  color: #6c736a;
  margin: 0 0 10px 0;
  padding: 0;
}

.adam-scrollspy-list {
  height: calc(100vh - 120px);
  position: sticky;
  top: 94px;
  overflow: auto;
}
.adam-scrollspy-list .list-group-item {
  font-size: 11px;
  padding: 6px 8px;
  border-color: #DDDCC5;
}
.adam-scrollspy-list .list-group-item:hover {
  background-color: #DDDCC5;
}
.adam-scrollspy-list .list-group-item.active {
  background-color: #A69276;
}

/* ------- END: SCROLL SPY UPDATES ----------------- */
/* ------- START: FOOTER AREA -------------------- */
footer .adam-footer {
  font-size: 11px;
}

/* ------- END: FOOTER AREA ---------------------- */
/* ------- START: BLOCS STYLES -------------------- */
.blocs-grid-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 1.5rem;
  row-gap: 1.5rem;
} /* CSS Grid */
/* = Blocs
-------------------------------------------------------------- */
.bloc {
  width: 100%;
  clear: both;
  background: 50% 50% no-repeat;
  padding: 0 20px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
  display: flex;
}

.bloc .container {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

/* Sizes */
.bloc-lg {
  padding: 100px 20px;
}

.bloc-md {
  padding: 50px 20px;
}

/* = Full Width Blocs
-------------------------------------------------------------- */
.full-width-bloc {
  padding-left: 0;
  padding-right: 0;
}

.full-width-bloc .row {
  margin-left: 0;
  margin-right: 0;
}

.full-width-bloc .container {
  width: 100%;
  max-width: 100% !important;
}

.full-width-bloc .carousel img {
  width: 100%;
  height: auto;
}

/* = Buttons
-------------------------------------------------------------- */
.btn-d, .btn-d:hover, .btn-d:focus {
  color: #FFF;
  background: rgba(0, 0, 0, 0.3);
}

/* Prevent ugly blue glow on chrome and safari */
button {
  outline: none !important;
}

/*  Image Scale */
.img-fluid-up {
  min-width: 100%;
  height: auto;
  object-fit: cover;
}
  
@media only screen and (max-width: 575px) {
  .img-fluid-up-250 {
    width: 100%;
    height: 250px;
    object-fit: cover; /* This will crop the image */
  }
}


/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer {
  border-radius: 0;
}

.card-rd {
  border-radius: 30px;
}

.card-rd .card-header {
  border-radius: 29px 29px 0 0;
}

.card-rd .card-footer {
  border-radius: 0 0 29px 29px;
}

/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
/* ScrollToTop button */
.scrollToTop {
  width: 36px;
  height: 36px;
  padding: 5px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: 999;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.showScrollTop {
  opacity: 1;
  pointer-events: all;
}

.scroll-to-top-btn-icon {
  fill: none;
  stroke: #fff;
  stroke-width: 2px;
  fill-rule: evenodd;
  stroke-linecap: round;
}

/* = Colour
-------------------------------------------------------------- */
/* Swatch Variables */
:root {
  --swatch-var-7747:#FFFFFF;
  --swatch-var-5803:#101010;
  --swatch-var-4497:#202020;
  --swatch-var-779:#0066CC;
  --swatch-var-5545:#0088FF;
  --swatch-var-3131:#EEEEEE;
  --swatch-var-4173:#788176;
  --swatch-var-4534:#8C0000;
}

/* Background colour styles */
.bgc-5803 {
  background-color: var(--swatch-var-5803);
}

.bgc-3131 {
  background-color: var(--swatch-var-3131);
}

/* Text colour styles */
.tc-7747 {
  color: var(--swatch-var-7747) !important;
}

/* Button colour styles */
.btn-c-4534 {
  background: var(--swatch-var-4534);
  color: #FFFFFF !important;
}

.btn-c-4534:hover {
  background: #590000 !important;
  color: #FFFFFF !important;
}

/* Bloc image backgrounds */
.bg-guy-at-home-online {
  background-image: url("/media/site-assets/images/guy-at-home-online.jpg");
}
.bg-hero-2025 {
  background-image: url("/media/course-catalog/2025-2026/students-big-hero-image.jpg");
}

/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */
@media (min-width: 576px) {
  .bloc-xxl-sm {
    padding: 200px 20px;
  }
  .bloc-xl-sm {
    padding: 150px 20px;
  }
  .bloc-lg-sm {
    padding: 100px 20px;
  }
  .bloc-md-sm {
    padding: 50px 20px;
  }
  .bloc-sm-sm {
    padding: 20px;
  }
  .bloc-no-padding-sm {
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .bloc-xxl-md {
    padding: 200px 20px;
  }
  .bloc-xl-md {
    padding: 150px 20px;
  }
  .bloc-lg-md {
    padding: 100px 20px;
  }
  .bloc-md-md {
    padding: 50px 20px;
  }
  .bloc-sm-md {
    padding: 20px 20px;
  }
  .bloc-no-padding-md {
    padding: 0 20px;
  }
}
@media (min-width: 992px) {
  .bloc-xxl-lg {
    padding: 200px 20px;
  }
  .bloc-xl-lg {
    padding: 150px 20px;
  }
  .bloc-lg-lg {
    padding: 100px 20px;
  }
  .bloc-md-lg {
    padding: 50px 20px;
  }
  .bloc-sm-lg {
    padding: 20px;
  }
  .bloc-no-padding-lg {
    padding: 0 20px;
  }
}
/* = Mobile adjustments
-------------------------------------------------------------- */
@media (max-width: 1024px) {
  .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
  }
  .bloc {
    padding-left: constant(safe-area-inset-left);
    padding-right: constant(safe-area-inset-right);
  } /* iPhone X Notch Support*/
  .bloc-group, .bloc-group .bloc {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container {
    padding-left: 0;
    padding-right: 0;
  }
  .btn-dwn {
    display: none;
  }
  .voffset {
    margin-top: 5px;
  }
  .voffset-md {
    margin-top: 20px;
  }
  .voffset-lg {
    margin-top: 30px;
  }
  form {
    padding: 5px;
  }
  .close-lightbox {
    display: inline-block;
  }
  .blocsapp-device-iphone5 {
    background-size: 216px 425px;
    padding-top: 60px;
    width: 216px;
    height: 425px;
  }
  .blocsapp-device-iphone5 img {
    width: 180px;
    height: 320px;
  }
}
@media (max-width: 991px) {
  .mini-large-p {
    font-size: 1.2em;
  }
}
@media (max-width: 575px) {
  .mini-large-p {
    font-size: 1.1em;
  }
  .mini-cta-mail-field {
    margin-bottom: 14px;
  }
  .img-style {
    width: 135px;
    height: 135px;
  }
}
/* ------- END: BLOCS STYLES ---------------------- */
  
/* ------- START: GOOGLE SEARCH STYLES ------------ */

.gs-result {
    background-color: #F6F8F8 !important;
    border-radius: 5px !important;
    padding: 10px !important;
}
  
.gsc-control-cse .gs-spelling,
.gsc-control-cse .gs-result .gs-title,
.gsc-control-cse .gs-result .gs-title * {
    font-size: 18px !important;
}
/* ------- END: GOOGLE SEARCH STYLES -------------- */
  
/* ------- START: PRINTER-FRIENDLY STYLES --------- */
@media print {
  /* Set Page Size and Margins */
  @page {
    size: 8.5in 11in;
    margin: 0.5in 0.5in 0.5in 0.5in; /* top right bottom left */
  }
  /* General Styles */
  body {
    font-size: 12pt;
    color: #000;
    background: none;
    line-height: 1.4;
    margin: 0;
    padding: 0;
  }
  /* Hide Unnecessary Elements */
  .no-print,
  .sidebar,
  .footer,
  .header,
  .scrollToTop,
  nav,
  .adam-submenu,
  .gx-tools-sidebar,
  .gx-header,
  .gx-breadcrumb ul,
  #gx-overlay,
  .gx-overlay,
  .gx-ellipsis,
  .adam-top-buffer,
  .topic-sidebar,
  .no-scrollbar,
  .col-xl-3.col-md-12.gx-topic {
    display: none !important;
  }
  /* Adjust the main content to span full width */
  .col-xl-9.col-md-12 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  /* Remove padding and margins from container */
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  /* Remove top padding from gx-main-content */
  .gx-main-content {
    padding-top: 0 !important;
  }
  /* Ensure Links are Underlined */
  a {
    text-decoration: underline;
    color: #000;
  }
  /* Handle Tables */
  table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
  }
  th, td {
    border: 1px solid #000;
    padding: 8px;
  }
  /* Adjust Heading Styles */
  h1, h2, h3, h4, h5, h6 {
    color: #000;
    page-break-after: avoid;
  }
  h1 {
    font-size: 24pt;
  }
  h2 {
    font-size: 20pt;
  }
  h3 {
    font-size: 18pt;
  }
  h4 {
    font-size: 16pt;
  }
  /* Avoid Page Breaks in Important Sections */
  .no-break {
    page-break-inside: avoid;
  }
  /* Ensure Images Fit the Page */
  img {
    max-width: 100%;
    height: auto;
  }
}
/* ------- END: PRINTER-FRIENDLY STYLES ----------- */

/*# sourceMappingURL=style.css.map */



