body {
  color: #282c30 !important;
  font-family: Ubuntu !important;
  font-size: 13px !important;
}

@media screen and (max-width: 933px) {
  .auto_scroll {
    overflow-x: auto !important;
  }
}

@media screen and (min-width: 991px) {
  .auto_display {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .auto_hiden {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .left_padding {
    padding-left: 0;
  }
}

@media screen and (max-width: 991px) {
  .right_padding {
    padding-right: 0;
  }

  .column_12 {
    width: 100% !important;
  }
}

.profile_img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 2px;
  width: 60px;
  height: 60px;
}

.profile_img_rounded {
  border: 1px solid #ddd;
  border-radius: 50%;
  padding: 0px;
  width: 150px;
  height: 150px;
}

.submit_button {
  background-color: #0372ba;
  border: 1px solid #0372ba;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  display: inline-block;
  color: white;
}

.submit_button:hover {
  cursor: pointer;
  background-color: #23527c;
  color: white;
}

.success_button {
  background-color: #02ba52;
  border: 1px solid #02ba52;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  color: white;
}

.success_button:hover {
  cursor: pointer;
  background-color: #00a045;
  color: white;
}

.primary_button {
  background-color: #3097d1;
  border: 1px solid #3097d1;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  color: white;
}

.primary_button:hover {
  cursor: pointer;
  background-color: #2577a7;
  color: white;
}

.infor_drop_down:hover {
  background-color: #0163a3;
}

.close_button {
  background-color: #282c30;
  border: 1px solid #282c30;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  color: white;
}

.close_button:hover {
  background-color: #636b6f;
  cursor: pointer;
  color: white;
}

.warning_button {
  background-color: #ff9d26;
  border: 1px solid #ff9d26;
  padding: 5px 8px;
  text-align: center;
  color: white;
}

.warning_button:hover {
  cursor: pointer;
  background-color: #ef901c;
  color: white;
}

.color_delete {
  color: red !important;
}

.color_delete:hover {
  background-color: red !important;
  color: white !important;
}

.curser_make_hand:hover {
  cursor: pointer;
}

div.inline {
  float: left;
}

.ubuntu_font_family {
  font-family: Ubuntu !important;
}

.clear_button {
  background-color: #ffbb33;
  border: 1px solid #ffbb33;
  border-radius: 5px;
  padding: 5px 8px;
  text-align: center;
  color: white;
}

.clear_button:hover {
  background-color: #f9b325;
  cursor: pointer;
  color: white;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-right: 16px solid green;
  border-bottom: 16px solid red;
  border-left: 16px solid pink;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* round corner */
.rcorners1 {
  margin-bottom: 3px;
  border-radius: 5px;
  border: 2px solid #0372ba;
  padding: 20px;
}

.rcorners-green {
  border-radius: 5px;
  border: 2px solid #02ba1e;
  padding: 20px;
}

/* end round corner */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
  border-left-color: #fff;
}

.dropdown-submenu.pull-left {
  float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}

/* grid view */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 200px;
  margin-top: 15px;
  text-align: center;
}

.title {
  color: grey;
  font-size: 14px;
}

.in_card_button {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 8px;
  color: white;
  background-color: #0372ba;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
}

.in_card_button:hover {
  opacity: 0.9;
  color: white;
  text-decoration: none;
}

.in_card_button:visited {
  opacity: 1;
  color: white;
  text-decoration: none !important;
}

a.in_card {
  text-decoration: none;
  font-size: 14px;
  color: black;
}

button.in_card:hover,
a:hover {
  opacity: 0.9;
}

/* card_2 grid view */
.card2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  margin-top: 15px;
  width: 100%;
}

.card2:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container2 {
  padding: 2px 16px;
}

/* card_3 grid view - without top_margin*/
.card3 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  width: 100%;
}

.card3:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container3 {
  padding: 2px 16px;
}

/* search button */
form.example input[type="text"] {
  padding: 5px;
  font-size: 13px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: white;
}

form.example button {
  float: left;
  width: 20%;
  padding: 5px;
  background: #0372ba;
  color: white;
  font-size: 13px;
  border: 1px solid grey;
  border-left: none;
  cursor: pointer;
}

form.example button:hover {
  opacity: 0.9;
}

form.example::after {
  content: "";
  clear: both;
  display: table;
}

/* Hover drop down */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* new colums */
.new_col_5 {
  -webkit-column-count: 5; /* Chrome, Safari, Opera */
  -moz-column-count: 5; /* Firefox */
  column-count: 5;
}

/* aqua_footer */
.aqua_footer {
  position: fixed;
  padding-top: 5px;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #2b2c30;
  color: white;
  /* text-align: center; */
}

/* breadcrumb2 */
.breadcrumb-arrow {
  height: 36px;
  padding: 0;
  line-height: 36px;
  list-style: none;
  background-color: #e6e9ed;
}
.breadcrumb-arrow li:first-child a {
  border-radius: 4px 0 0 4px;
  -webkit-border-radius: 4px 0 0 4px;
  -moz-border-radius: 4px 0 0 4px;
}
.breadcrumb-arrow li,
.breadcrumb-arrow li a,
.breadcrumb-arrow li span {
  display: inline-block;
  vertical-align: top;
}
.breadcrumb-arrow li:not(:first-child) {
  margin-left: -5px;
}
.breadcrumb-arrow li + li:before {
  padding: 0;
  content: "";
}
.breadcrumb-arrow li span {
  padding: 0 10px;
}
.breadcrumb-arrow li a,
.breadcrumb-arrow li:not(:first-child) span {
  height: 36px;
  padding: 0 10px 0 25px;
  line-height: 36px;
}
.breadcrumb-arrow li:first-child a {
  padding: 0 10px;
}
.breadcrumb-arrow li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  background-color: #3bafda;
  border: 1px solid #3bafda;
}
.breadcrumb-arrow li:first-child a {
  padding-left: 10px;
}
.breadcrumb-arrow li a:after,
.breadcrumb-arrow li a:before {
  position: absolute;
  top: -1px;
  width: 0;
  height: 0;
  content: "";
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}
.breadcrumb-arrow li a:before {
  right: -10px;
  z-index: 3;
  border-left-color: #3bafda;
  border-left-style: solid;
  border-left-width: 11px;
}
.breadcrumb-arrow li a:after {
  right: -11px;
  z-index: 2;
  border-left: 11px solid #2494be;
}
.breadcrumb-arrow li a:focus,
.breadcrumb-arrow li a:hover {
  background-color: #4fc1e9;
  border: 1px solid #4fc1e9;
}
.breadcrumb-arrow li a:focus:before,
.breadcrumb-arrow li a:hover:before {
  border-left-color: #4fc1e9;
}
.breadcrumb-arrow li a:active {
  background-color: #2494be;
  border: 1px solid #2494be;
}
.breadcrumb-arrow li a:active:after,
.breadcrumb-arrow li a:active:before {
  border-left-color: #2494be;
}
.breadcrumb-arrow li span {
  color: #434a54;
}

/* timeline */
.expred_alert {
  background-color: #cc0000;
  color: white;
  padding: 5px;
  border: 1px solid #cc0000;
  border-radius: 50px;
}

.red_dot {
  height: 15px;
  width: 15px;
  background-color: #cc0000;
  border-radius: 50%;
  display: inline-block;
}

.green_dot {
  height: 15px;
  width: 15px;
  background-color: #007e33;
  border-radius: 50%;
  display: inline-block;
}

.yellow_dot {
  height: 15px;
  width: 15px;
  background-color: #ff8800;
  border-radius: 50%;
  display: inline-block;
}

.dropdown_with_width {
  width: 300px !important;
  padding: 10px;
}

/* news_update */
.news_update_indicate {
  background-color: #cc0000;
  color: white;
  padding: 2px;
  border-radius: 4px;
  font-size: 12px;
}

/* Colored badge */

.badge {
  color: white;
  padding: 3px;
  border-radius: 5px;
  font-size: 12px;
}

/* css scrolling text */
.scroll-left {
  height: 10px;
  overflow: hidden;
  position: relative;
  /* border: 1px solid white; */
}
.scroll-left p {
  white-space: nowrap;
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  line-height: 10px;
  text-align: center;
  /* Starting position */
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* Apply animation to this element */
  -moz-animation: scroll-left 25s linear infinite;
  -webkit-animation: scroll-left 25s linear infinite;
  animation: scroll-left 25s linear infinite;
}
/* Move it (define the animation) */
@-moz-keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
  }
}
@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
  }
}
@keyframes scroll-left {
  0% {
    -moz-transform: translateX(70%); /* Browser bug fix */
    -webkit-transform: translateX(70%); /* Browser bug fix */
    transform: translateX(70%);
  }
  100% {
    -moz-transform: translateX(-70%); /* Browser bug fix */
    -webkit-transform: translateX(-70%); /* Browser bug fix */
    transform: translateX(-70%);
  }
}

/******************************************************************************************************************************** 
                                               ** Custom CSS by Sujeevan 
**********************************************************************************************************************************/

/* navbar brand */
.navbar-brand {
  margin: 4px 3px 0 3px;
  font-size: 25px;
}

/* menu buttons */
.menu-link {
  margin: 10px 3px 0 3px;
  float: left;
  color: #fff;
  text-decoration: none !important;
  font-size: 17px;
}

.menu-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #3bafda;
  transition: width 0.3s;
  margin-top: 5px;
}

.menu-link:hover::after {
  width: 100%;
}

.menu-link:hover,
.menu-link.active {
  color: #3bafda !important;
}

/* Dropdown menu */
.dpd-scnav {
  background-color: #d3e0e9;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: #3bafda !important;
}

/* Load More Button */
.button-info {
  border: 2px solid #2196f3;
  background-color: white;
  color: #2196f3;
  padding: 5px 5px;
  border-radius: 6px;
  margin: -10px 0 10px 0;
  cursor: pointer;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.button-info:hover {
  background: #2196f3;
  color: white;
}

.button-info:active {
  background: #e7e7e7;
  transform: translateY(3px);
  color: #666;
}

.sl {
  color: #000 !important;
}

.top-stripe-bar {
  width: 100%;
  height: 5%;
  color: #fff;
  background: #1382ad;
}

div.fix {
  position: fixed;
  top: 120px;
  padding: 20px;
  height: auto;
  border: 1px solid #7d7f86;
  border-radius: 10px;
  background-color: aliceblue;
  margin-right: 20px;
  box-shadow: 3px 3px 5px 6px #ccc;
}
