/************************************************* Header ***********************************************/
#header-style {
	background-color: #000000;
}

#menu-style {
	background-color: #000000;
}

#navbar li a[role=menuitem] {
	color: white !important;
}

#navbar li a[role=menuitem]:hover {
	/*background-color:#0078D2;*/
	border-bottom:2px solid #C1233F;
	background-color:#000000 !important;
}

#search {
	background-color: #0078D2;
}

#search:hover {
	background-color: #0078D2;
}

#search {
	color: white !important;
}

/************************************************* Footer ***********************************************/
.footer-font-color {
	color: white;
}

.footer-link {
	padding-bottom:10px;
}

.footer-color {
	background-color: #0078D2 !important;
}

.footer-container-height {
	height: 327px;
    padding-top: 78px;
}

.footer-btn {
	color: white;
    background-color: #144A72;
    transition: .3s;
    padding: 15px 45px;
}

.footer-btn:hover {
	color: white;
    background-color: black;
}



.view-grid .dropdown.action>.btn {
    display: none;
}

.view-grid .dropdown.action .dropdown-menu {
    display: block;
    position: static !important;
    position: initial !important;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    max-width: 95px;
    min-width: 95px;
    width: 95px;
    left: auto !important;
    top: auto !important;
}

.view-grid .dropdown.action .dropdown-menu li {
    display: inline-block;
    text-align: center;
}

.view-grid .dropdown.action .dropdown-menu li a {
    font-size: 0;
    padding: 2px;
    margin: 0;
}

.view-grid .dropdown.action .dropdown-menu li a>span {
    font-size: 18px;
}

.view-grid .dropdown.action .dropdown-menu li a:hover {
    color: #008C95;
    background: transparent;
}

.pt-20 {
    padding-top:20px;
}

.padding-table-columns td {
 
    padding:0 5px 0 0; /* Only right padding*/
}

.collapsible-container {
    margin-bottom: 21px;
}

.panel-collapse {
    background: #f5f5f5;
}

button[aria-expanded=true] .fa-chevron-up {
   display: none;
}
button[aria-expanded=false] .fa-chevron-down {
   display: none;
}
row-button {
    background: #144A72;
}
.loader{
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
}

/* LOADER 1 */

#loader-1:before, #loader-1:after{
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: #3498db;
}

#loader-1:before{
  z-index: 100;
  animation: spin 1s infinite;
}

#loader-1:after{
  border: 10px solid #ccc;
}

@keyframes spin{
  0%{
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100%{
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.wrapper-error {
    position: absolute;
    width: 1920px;
    height: 678px;
    left: 0px;
    top: 75px;

    background: #F8F8F8;
}

.error-code {
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 180px;
    line-height: 240px;
    /* identical to box height, or 133% */
    text-align: center;
    letter-spacing: 0.25px;

    color: rgba(0, 120, 210, 0.4);
}

.error-message {
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
    font-size: 24px;
    line-height: 32px;
    text-align: center;

    color: #0078D2;
}

.back-btn {    
    width: 170px;
    height: 60px; 
    color: white;
    background: #003282;
    margin-top: 40px;
}

.signinpage {
width:100%; 
padding-right: 15px
}

.link-btn {
    background: none!important;
    border: none;
    color: #0067B8 !important;
    cursor: pointer;
}

.signin-btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 6px 20px;

    width: 160px;
    height: 32px;

    background: #0078D2 !important;
    border-radius: 2px;

    margin-bottom: 20px;
}

.notification-alert{
  background: #d5f0fb;
  padding: 10px 40px;
  min-width: 420px;  
  border-radius: 4px;
  border-left: 8px solid #9ad6f5;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  margin: auto;
  margin-top: 20px;
  margin-bottom: -50px;
  width: 1160px;
}
.notification-alert.showAlert{
  opacity: 1;
  pointer-events: auto;
}
.notification-alert.show{
  animation: show_slide 1s ease forwards;
}
@keyframes show_slide {
  0%{
    transform: translateX(100%);
  }
  40%{
    transform: translateX(-10%);
  }
  80%{
    transform: translateX(0%);
  }
  100%{
    transform: translateX(-10px);
  }
}
.notification-alert.hide{
  animation: hide_slide 1s ease forwards;
}
@keyframes hide_slide {
  0%{
    transform: translateX(-10px);
  }
  40%{
    transform: translateX(0%);
  }
  80%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(100%);
  }
}
.notification-alert .fa-check-circle{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #46b3fd;
  font-size: 30px;
}
.notification-alert .msg{
  padding: 0 20px;
  font-size: 18px;
  color: #46b3fd;
}
.notification-alert .close-btn{
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #9dd8fe;
  padding: 20px 18px;
  cursor: pointer;
}
.notification-alert .close-btn:hover{
  background: #0078D2;
}
.notification-alert .close-btn .fa{
  color: #46b3fd;
  font-size: 22px;
  line-height: 40px;
}

.confirm-notification{
    display: none;
    background: #d5f0fb;
    height: 110px;
    border-radius: 4px;
    border-left: 8px solid #9ad6f5;
}

.profile-btn {
    background: #144A72;
    padding: 10px 36px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.confirm-notification .fa-times {
    color: #46b3fd;
    font-size: 30px;
}

.confirm-notification .msg {
    font-size: 15px;
    color: #46b3fd;
}

.subscribe-btn {
	border: 2px solid #c9252c;
    border-radius: 3rem;
    font-weight: 600;
    transition: all .3s ease;
    background: linear-gradient(to left,#c12451,#c12331);
}
