.widget {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    border: none;
    box-shadow: none;
    background: #1c2537;
    min-height: 100%;
}

.row-flex {
    display: flex;
}

.col-flex {
    flex: 1; /* additionally, equal width */
}

form .field {
    margin-bottom: 10px;
}

.btn-toolbar {
    display: block;
}

.btn-toolbar input {
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.auth-container {
    min-width: 500px;
}

#dashboardmap {
    height: 500px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
  }

  #map {
    height: 500px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
  }

  .card-items {
    margin-bottom: 30px;
    border-radius: 6px;
    width: 100% !important;
    color: #0e1726;
    transition: all 0.35s ease;
    width: 33%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    position: relative;
    /* padding-right: 15px; */
    /* padding-left: 15px; */
    /* height: 100%; */
}

.card-items .item-content {
    background-color: #0e1726;
    padding: 13px 18px;
    -webkit-box-shadow: 0px 2px 4px rgb(126 142 177 / 12%);
    box-shadow: 0px 2px 4px rgb(126 142 177 / 12%);
    border-radius: 6px;
    height: 100%;
}

.card-items .image {
    text-align: center;
    margin-top: 20px;
}

.card-items .image .img {
    max-width: 100px;
}

.card-items .line-text {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
}

.card-items .line-text .info-title {
    font-size: 14px;
    font-weight: 600;
    color: #888ea8;
    margin-bottom: 11px;
}

.card-items .action-btn {
    font-weight: 600;
    color: #acb0c3;
    text-align: center;
    margin: 20px 0;
}

.searchable-items .card-items {
    padding-right: 15px;
    padding-left: 15px;
}

.searchable-items .card-items .card-meta-info{
    margin-top: 15px;
}

#form-wizard_EntityName_Holder{
    display:none
}

.sidebar-closed #sidebar .theme-brand {background-color: #fff !important;}

#sidebar .theme-brand li.theme-text a {color: #0e1726 !important;}

#sidebar .theme-brand li.theme-logo img {
    height: 100% !important;
}

.error{
    color: rgb(177, 0, 0);
}

.trip-info{
    position: absolute;
    bottom: 5px;
    width: 80%;
    padding: 30px;
    border-radius: 10px;
    left: 0;
    right: 0; 
    margin: auto;
}


/* Style the button that is used to open and close the collapsible content */
.trip-info-btn {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: center;
    box-shadow: 1px 1px 10px #aaa;
    outline: none;
    font-size: 19px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .trip-info .active, .trip-info-btn:hover {
    background-color: #ccc;
    box-shadow: none;
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .trip-info .content {
    padding: 0 18px 0;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .trip-info-btn:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
  }
  
  .trip-info .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }
  .text-white{
    color: white;
  }