/****** Global style ******/
/*Row with equal height columns
 */

/* breadcrumb */
html body a {
    color: #FF9A80;
}
html body a:hover {
    color: #FF6138;
}.breadcrumbs-top .breadcrumb {
    margin-bottom: 10px;
}
.mr-b-24 {
    margin-bottom: 24px;
}

/* styling placeholder */
::placeholder {
    color: #999 !important;
    opacity: .5 !important; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color: #999 !important;
   opacity: .5;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color: #999 !important;
   opacity: .5;
}
/****** end Global style ******/


/**** Login Page ****/
.btn-login {
    background-color: #FF6138;
    color: #fff;
}
.btn-login:hover {
    box-shadow: 2px 5px 10px #999999;
}
.no-padding {
    padding: 0;
}
.form-wrapper {
    padding: 10%;
    width: auto;
    display: block;
}
.login-brand {
    text-align: center;
    margin-bottom: 24px;
}
.login-brand > img {
    width: 40%;
}
.title-login {
    margin-bottom: 24px;
    text-align: center;
}
.col-left {
    border-radius: 4px 0 0 4px;
}
.col-right {
    border-radius: 0 4px 4px 0;
}
/**** end Login Page ****/

/**** Index Page ****/
.slim-text {
    font-weight: 300;
}
body.vertical-layout.vertical-menu.menu-expanded .navbar .navbar-brand .brand-text {
    font-weight: 600;
}

/* Navigation styling */
.main-menu.menu-light .navigation > li ul .active > a {
    color: #fff;
}
.main-menu.menu-light .navigation > li .active > a {
    color: #ffffff;
    font-weight: 700;
    background: #FF6138;
    border-right: 4px solid #c52c0a;
}
.main-menu.menu-light .navigation > li.open > a {
    background: #FFD3C8;
}
.main-menu.menu-light .navigation > li:hover > a,
.main-menu.menu-light .navigation > li.active > a {
    color: #3d3f41;
    background-color: #FFD3C8;
}
.main-menu.menu-light .navigation > li ul li > a:hover {
    color: #3d3f41;
    background-color: #FFD3C8!important;
}
.group-nav {
    background-color: #FF6138;
}
.card-header {
    border-left: 4px solid #c52c0a;
    border-bottom: 1px solid #f4f4f4;
}

/* collapse nav */
body.vertical-layout.vertical-menu.menu-collapsed .main-menu .main-menu-content > span.menu-title, body.vertical-layout.vertical-menu.menu-collapsed .main-menu .main-menu-content a.menu-title {
    background-color: #FF6138;
}

/* card hover shadow */
.card-body {
    transition: .3s;
}
.card-body:hover {
    box-shadow: 2px 2px 15px #C9C9C9;
    transition: .3s;
}

/* card */
.card-p-custom {
    padding: 30px;
}
/**** end Index Page ****/

/**** basic-message ****/
.form-control:focus {
    border-color: #FF6138;
}

.label-form {
    color: #4a4d51;
    opacity: 0.5;
    margin-bottom: .5rem;
}

.label-tips {
    margin-top: 6px;
    margin-bottom: 0;
}

.wrapper-switcher {
    margin-bottom: 16px;
}

/* chat-message */
.chat-date {
    opacity: .5;
    font-size: 12px;
    text-align: center;
    margin-bottom: 8px;
}
.chat-time {
    text-align: right;
    font-size: 12px;
    color: #373a3c;
    opacity: .5;
}

.card-body.chat-relative {
    position: relative;
    overflow-x:auto;
    max-height: 380px;
}
/* for custom scrollbar for webkit browser (chat-message)*/
 #sticky ::-webkit-scrollbar {
    width: 6px;
}
#sticky ::-webkit-scrollbar-track {
    /*box-shadow: inset 0 0 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
    background-color: transparent;
}
#sticky:hover ::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(5,188,155,0.5);
} 

.chat-message {
    position: relative;
    color: #373a3c;
    background-color: #37bc9b;
    padding: 8px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.chat-message:before {
    transform: rotate(180deg);
    position: absolute;
    top: 10px;
    left:-10px;
    width: 0;
    height: 0;
    content: '';
    border: 5px solid transparent;
    border-left-color: #37bc9b;
}

/* group contact */
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #FF6138;
    border-color: #FF6138;
}
.btn-secondary {
    color: #ff7238;
    background-color: transparent;
    border-color: #FF6138;
}
.btn-secondary:hover {
    color: #fff;
    background-color: #ff7238;
    border-color: #FF6138;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #f6bb42 !important;
    border-color: #f6bb42 !important;
}
.select2-container--default .select2-results__options .select2-results__option[aria-selected=true] {
    background-color: #f6bb42 !important;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #FFD3C8 !important;
}

button.btn-primary.btn-style-1 {
    border-color: #37bc9b !important;
    background-color: #37bc9b !important;
    color: #fff;
}
button.btn-primary.btn-style-1:hover {
    border-color: #37bc9b !important;
    background-color: #fff !important;
    color: #37bc9b !important;
}
.btn-primary.btn-style-2:focus {
    color: #FFFFFF !important;
}
button.btn-warning.btn-style-2 {
    border-color: #f6bb42 !important;
    background-color: #f6bb42 !important;
    color: #fff;
}
button.btn-warning.btn-style-2:hover {
    border-color: #f6bb42 !important;
    background-color: #fff !important;
    color: #f6bb42 !important;
}
.btn-warning.btn-style-2:focus {
    color: #FFFFFF !important;
}

.p-2.no-padding {
    padding: 0 !important;
}
button.btn.btn-info.btn-sm {
    padding: 2px;
}

p.title-sum {
    margin-bottom: 2px;
}
p.total-sum {
    font-size: 22px;
    font-weight: 600;
    color: #FF6138;
    margin: 0;
}
/**** end basic-message ****/

/**** repeat-scheduler ****/
.nav.nav-tabs .nav-item .nav-link.active {
    background-color: transparent;
    color: #FF6138;
    font-weight: 600;
}

ul#myTab.nav.nav-tabs {
    margin-top: 20px;
    border-radius: 0;
    margin-bottom: 8px;
}

/* Message list */
.pagination .page-link {
    color: #FF6138;
    border: 1px solid #ADB5BD;
}
.pagination .page-item.active .page-link {
    background-color: #FF6138;
    border-color: #FF6138;
}
.inline-block {
    display: inline-block;
}
.mr-left-8 {
    margin-left: 8px;
}
/**** end repeat-scheduler ****/

/**** all report ****/
.row-modal {
    display: inherit;
}

#buttons {
    text-align: center;
}
/**** end all report ****/

/**** FAQ ****/
.ui-accordion .ui-accordion-header.ui-accordion-header-active {
    border-bottom: 2px solid #FF6138;
    color: #FF6138;
}
/**** end FAQ ****/

/*** Notification Bar ***/
section {
  flex: 1;
  padding: 40px 0;
}

.notifactions {
    padding: 8px 0;
    top: 0;
    z-index: 1032;
    background: #5486a0;
    overflow: hidden;
    position: fixed;
    transition: all .35s ease-in;
}

.notifactions p { 
    color: #fff;
    text-align: center;
    margin: 0;
}

p {
  margin: 0px;
  font-size: 16px;
  color: #474747;
  line-height: 1.75;
  text-align: left;
}

header {
  height: auto;
  background: #394048;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

footer {
  padding: 10px 0;
  background: #ecf0f1;
  border-top: 1px solid #ddd;
  text-align: center;
}

.container {
  width: 85%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

.logo {
  position: relative;
  display: inline-block;
  float: left;
}

.logo p {
  font-size: 20px;
  color: #fff;
  margin: 0;
  padding: 0;
  word-spacing: 0;
}

header p {
  word-spacing: 10px;
  color: #fff;
  opacity: 0.5;
  float: right;
  margin-top: 3px;
}

.toggle {
  display: block;
  position: fixed;
  color: #fff;
  cursor: pointer;
  width: 25px;
  height: 25px;
  float: right;
  top: 10px;
  right: 15px;
  z-index: 1033;
}
#toggle { display: none; }

#toggle:checked ~ .notifactions {
  margin-top: -45px;
  transition: all .35s ease-in;
}

#toggle:checked ~ .toggle {
  margin-top: -45px;
}
/*button*/
/*CTA button*/
a.btn-notification {
    font-size: 16px;
    color: #fff !important;
    padding: 8px 14px;
    display: inline-block;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: #37bc9b !important;
    text-decoration: none;
}
a.btn-notification:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}

/*for adding margin top*/
.m-notif-1 {
    margin-top: 45px;
}
.m-notif-2 {
    top: 108px !important;
}
/*** End Notification Bar ***/

/* Sweet alert replace style*/
.swal2-popup .swal2-styled.swal2-confirm {
    background-color: #37bc9b;
}

.swal2-popup .swal2-styled:focus {
    outline: none;
    box-shadow: unset;
}
/* End Sweet alert replace style*/