body {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a{
    text-decoration: none !important;
}

html {
    scroll-behavior: smooth;
}

::selection {
    color: #fff;
    background: #00aeef;
}


/* width */

::-webkit-scrollbar {
    width: 5px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #00abed;
}

.cursor-pointer {
    cursor: pointer;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #0076bf;
}

.text-blue {
    color: #0072bc;
}

.bg-gray {
    background-color: #ebebeb;
}

.bg-green {
    background-color: #00a651;
}

.text-green {
    color: #00a651;
}

.component-wrapper {
    transition: 0.3s;
    margin: 25px 25px 25px 60px;
}

.component-title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.5rem;
}

.btn-green:disabled,
.btn-gray:disabled,
.btn-blue:disabled,
.btn-red:disabled,
.btn-orange:disabled,
.btn-teal:disabled {
    background-color: #8b8b8b !important;
}

.btn-green {
    text-transform: uppercase;
    background-color: #00a651;
    transition: 0.3s;
    border: 0;
    height: 30px;
    /*    border-radius: 4px;*/
    padding: 0 20px;
    margin: 0 5px;
    color: #fff;
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-green:hover {
    background-color: #03c663;
}

.btn-green-2 {
    text-transform: uppercase;
    background-color: #00a651;
    transition: 0.3s;
    border: 0;
    height: 30px;
    /*    border-radius: 4px;*/
    padding: 0 0px;
    margin: 0 5px;
    color: #fff;
    width: 120px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-green-2:hover {
    background-color: #03c663;
}

.btn-gray {
    text-transform: uppercase;
    background-color: #707070;
    transition: 0.3s;
    border: 0;
    height: 30px;
    padding: 0 20px;
    /*    border-radius: 4px;*/
    margin: 0 5px;
    color: #fff !important;
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.btn-gray:hover {
    background-color: #878787;
}

.btn-blue {
    text-transform: uppercase;
    background-color: #00aeef;
    transition: 0.3s;
    border: 0;
    height: 30px;
    /*    border-radius: 4px;*/
    padding: 0 20px;
    margin: 0 5px;
    color: #fff;
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-blue:hover {
    background-color: #088ebe;
}

.btn-red {
    text-transform: uppercase;
    background-color: #fe3e45;
    transition: 0.3s;
    border: 0;
    height: 30px;
    padding: 0 20px;
    /*    border-radius: 4px;*/
    margin: 0 5px;
    color: #fff;
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-red:hover {
    background-color: #df1d24;
}

.btn-red-2 {
    text-transform: uppercase;
    background-color: #fe3e45;
    transition: 0.3s;
    border: 0;
    height: 30px;
    padding: 0;
    /*    border-radius: 4px;*/
    margin: 0 5px;
    color: #fff;
    width: 120px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-red-2:hover {
    background-color: #df1d24;
}

.btn-orange {
    text-transform: uppercase;
    background-color: #f7941d;
    transition: 0.3s;
    border: 0;
    height: 30px;
    padding: 0 20px;
    /*    border-radius: 4px;*/
    margin: 0 5px;
    color: #fff;
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-orange:hover {
    background-color: #e3881b;
}

.btn-teal {
    text-transform: uppercase;
    background-color: #1cbbb4;
    transition: 0.3s;
    border: 0;
    height: 30px;
    padding: 0 20px;
    /*    border-radius: 4px;*/
    margin: 0 5px;
    color: #fff;
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-disabled {
    text-transform: uppercase;
    background-color: #8b8b8b;
    transition: 0.3s;
    border: 0;
    height: 30px;
    padding: 0 20px;
    /*    border-radius: 4px;*/
    margin: 0 5px;
    color: rgb(104, 104, 104);
    width: 100px;
    font-size: 0.85rem;
    border-radius: 3px;
}

.btn-teal:hover {
    background-color: #16948e;
}

.upload-photo {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center center;
}

.upload-photo-btn {
    background-color: #00a651;
    transition: 0.3s;
    border: 0;
    height: 30px;
    /*    border-radius: 4px;*/
    padding: 0 20px;
    color: #fff;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 3px;
}

.upload-photo-btn:hover {
    background-color: #03c663;
}

.upload-photo-input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.section-title {
    background-color: #0072bc;
    text-transform: uppercase;
    color: #fff;
    font-weight: 300;
    display: inline-block;
    font-size: 18px;
    padding: 10px 15px;
}

.search-box {
    font-size: 100%;
    font-weight: 500;
    border: 0;
    border-bottom: 1px solid #999;
    word-spacing: 4px !important;
    letter-spacing: 1px !important;
    text-transform: capitalize;
    outline: none;
    width: 300px;
    transition: 0.3s;
}

.search-box:focus {
    border-bottom: 3px solid #000;
}

.add-input {
    width: 100%;
    padding: 3px 5px;
    border: 1px solid #b1b1b1;
}

.add-select {
    width: 100%;
    padding: 5px;
}

.select2-selection {
    border-radius: 0px !important;
}

.add-form p {
    position: relative;
    top: 8px;
}

table th {
    border: 0 !important;
}

table {
    font-size: 0.9rem;
}

.col-border-right {
    border-right: 1px solid #707070;
}

.date-input {
    position: relative;
}

.date-input img {
    position: absolute;
    right: 0;
    top: 4px;
    right: 4px;
    z-index: 1;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: relative;
    opacity: 1;
    z-index: 1;
}

select,
input {
    background-color: #fff;
}

select:disabled,
input:disabled {
    background-color: #ebebeb;
}

button:focus {
    outline: none;
}

button:disabled {
    cursor: pointer;
}

#wrapper.sidebarDisplayed .component-wrapper {
    margin: 25px 25px 25px 330px;
}

.is-invalid-input {
    border: 1px solid #eb7575;
}

.error-text {
    font-size: 0.9rem;
    color: #eb7575;
}

.add-error-text {
    color: #eb7575;
    position: absolute !important;
    bottom: 0;
    font-size: 0.7rem;
    transform: translateY(135%);
}

td {
    text-transform: capitalize;
}

.table td, .table th {
    vertical-align: middle !important;
}

.rounded {
    border-radius: 1em!important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.275)!important;
}

#select_clients_wrapper .dataTables_filter {
    float: left !important;
}

#select_clients_wrapper .row:first-child .col-sm-12:first-child {
    display: none !important;
}

#select_clients_wrapper thead {
    display: none;
}

#select_clients_edit_wrapper .dataTables_filter {
    float: left !important;
}

#select_clients_edit_wrapper .row:first-child .col-sm-12:first-child {
    display: none !important;
}

#select_clients_edit_wrapper thead {
    display: none;
}

.printing{
    width: 90%;
}

@media (max-width: 991.98px) {
    .section-title {
        width: 100% !important;
    }
    .col-border-right {
        border-right: 0;
    }
}

#image-table thead tr th:first-child{
    width: 10% !important;
  }

  .uploadPictureContainer{
    width: 100% !important;
  }


.modal-image {
    margin: auto;
    height: 100%;
    width: 90%;
    max-width: 100%;
}

.required-mark {
    color : red;
    vertical-align:sub;
}

@media (max-width: 767.98px) {
    #wrapper.sidebarDisplayed .component-wrapper {
        margin: 25px 25px 25px 60px;
    }
    .search-box {
        width: 100%;
    }
}
