@media (min-width: 992px) {
    .typo-line {
        padding-left: 140px;
        margin-bottom: 40px;
        position: relative;
    }

    .typo-line .category {
        transform: translateY(-50%);
        top: 50%;
        left: 0px;
        position: absolute;
    }
}

#map {
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
    margin-top: 70px;
}

.places-buttons .btn {
    margin-bottom: 30px
}

.space-70 {
    height: 70px;
    display: block;
}

.sidebar .nav > li.active-pro {
    position: absolute;
    width: 100%;
    bottom: 10px;
}

.tim-row {
    margin-bottom: 20px;
}

.tim-typo {
    padding-left: 25%;
    margin-bottom: 40px;
    position: relative;
}

.tim-typo .tim-note {
    bottom: 10px;
    color: #c0c1c2;
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 13px;
    left: 0;
    margin-left: 20px;
    position: absolute;
    width: 260px;
}

.tim-row {
    padding-top: 50px;
}

.tim-row h3 {
    margin-top: 0;
}

/* Sidebar */

.sidebar-toggle {
    position: fixed;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    cursor: pointer;
    -webkit-transition: .5s;
    transition: .5s;
}

.sidebar-toggle.is-closed {
    -webkit-transform: translateX(0.3em) rotate(0deg);
    transform: translateX(0.3em) rotate(0deg);
}

.sidebar {
    -webkit-transition: .7s;
    transition: .7s;
}

.sidebar .nav i {
    -webkit-transition: .7s;
    transition: .7s;
}

@media (min-width: 992px) {
    .sidebar.is-closed {
        -webkit-transform: translateX(-14em);
        transform: translateX(-14em);
    }

    .sidebar.is-closed:hover {
        -webkit-transform: translateX(0em);
        transform: translateX(0em);
        z-index: 99;
    }

    .panel-full {
        width: calc(100% - 80px);
    }

    .sidebar.is-closed .nav i {
        float: right;
        text-align: right;
        margin: 0px;
    }

    .sidebar .simple-text-closed {
        display: none;
    }

    .simple-text-closed {
        font-size: 24px;
        line-height: 36px;
        font-weight: 600;
        color: #fff;
    }

    .simple-text-closed:hover {
        color: #fff;
    }

    .sidebar.is-closed .simple-text-closed {
        display: initial;
        position: relative;
        left: 88%;
    }

    .sidebar.is-closed .logo {
        background-color: #f44336;
    }

    .sidebar.is-closed .simple-text {
        display: none;
    }
}

.main-panel {
    transition-property: width;
    transition-duration: .4s;
    transition-timing-function: linear;
}

.sidebar .logo {
    height: 70px;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: linear;
}

.card-header .form-group {
    display: -webkit-inline-box;
    margin: 0px;
}

.card-header .form-group.is-focused .form-control {
    outline: none;
    background-image: linear-gradient(#fff, #fff), linear-gradient(#D2D2D2, #D2D2D2) !important;
    background-size: 100% 2px, 100% 1px !important;;
    box-shadow: none;
    transition-duration: 0.3s;
}

.card-header .form-control::-moz-placeholder {
    color: #fff;
    font-weight: 400;
}

.card-header .form-control:-ms-input-placeholder {
    color: #fff;
    font-weight: 400;
}

.card-header .form-control::-webkit-input-placeholder {
    color: #fff;
    font-weight: 400;
}

.card-header .form-control {
    color: #fff;
}

.table i {
    font-size: 16px;
    display: inline-block;
    margin-left: 3px;
    color: #fff;
    background: #a9afbb;
    padding: 3px;
    border-radius: 3px;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: linear;
}

.table i:hover {
    background: #f44336;
}

thead th {
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.submenu {
    list-style: none;
    padding-left: 75px;
    background: #f4f4f4;
}

.submenu li > a {
    margin: 0px !important;
}

.collapse .fa {
    font-size: 18px !important;
    text-align: right !important;
    margin-right: 0px !important;
}

.m-t-3 {
    margin-top: 30px;
}

.container > .switch {
    display: block;
    margin: 12px auto;
}

.switch {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 56px;
    height: 20px;
    padding: 3px;
    background-color: white;
    border-radius: 18px;
    cursor: pointer;
}

.switch-input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.switch-label {
    position: relative;
    display: block;
    height: inherit;
    font-size: 10px;
    text-transform: uppercase;
    background: #eceeef;
    border-radius: inherit;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: opacity background;
    -moz-transition-property: opacity background;
    -o-transition-property: opacity background;
    transition-property: opacity background;
}

.switch-label:before, .switch-label:after {
    position: absolute;
    top: 50%;
    margin-top: -.5em;
    line-height: 1;
    -webkit-transition: inherit;
    -moz-transition: inherit;
    -o-transition: inherit;
    transition: inherit;
}

.switch-label:before {
    content: attr(data-off);
    right: 11px;
    color: #aaa;
    text-shadow: 0 1px rgba(255, 255, 255, 0.5);
}

.switch-label:after {
    content: attr(data-on);
    left: 11px;
    color: white;
    text-shadow: 0 1px rgba(0, 0, 0, 0.2);
    opacity: 0;
}

.switch-input:checked ~ .switch-label {
    background: #f44336;
}

.switch-input:checked ~ .switch-label:before {
    opacity: 0;
}

.switch-input:checked ~ .switch-label:after {
    opacity: 1;
}

.switch-handle {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 10px;
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
}

.switch-handle:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -6px 0 0 -6px;
    width: 12px;
    height: 12px;
    border-radius: 6px;
}

.switch-input:checked ~ .switch-handle {
    left: 40px;
    box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.switch-container {
    margin: 10px 0px;
}

/* Radio buttons - Checkboxes */
input[type=radio], input[type=checkbox] {
    display: none;
}

input[type=radio] + label:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-right: 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

input[type=checkbox] + label:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-right: 8px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type=radio]:checked + label:before {
    content: "\2022"; /* Bullet */
    color: #f44336;
    background-color: #fff;
    font-size: 1.8em;
    text-align: center;
    line-height: 14px;
    text-shadow: 0px 0px 3px #eee;
}

input[type=checkbox]:checked + label:before {
    content: "\2713"; /* Tick */
    color: #f44336;
    background-color: #fff;
    font-size: 1.4em;
    text-align: center;
    line-height: 15px;
    text-shadow: 0px 0px 3px #eee;
}

.checkbox label, .radio label, label {
    margin-right: 18px;
}

.sidebar {
    background-image: url("../../resources/assets/img/sidebar.jpg");
    background-size: cover;
}

.colorpicker-element.input-group .input-group-addon {
    border: 0;
    background: transparent;
    padding: 0px;
    position: relative;
    bottom: -20px;
    left: 5px;
}

.colorpicker-element.input-group-addon i, .colorpicker-element.add-on i {
    height: 26px;
    width: 26px;
    border: 1px solid #aaa;
}

.card h4 {
    border-left: 5px solid red;
    padding: 0px 12px;
    font-weight: 700;
}

.form-color {
    display: inherit !important;
}

.pagination > li > a, .pagination > li > span {
    border: none;
}

.pagination > .active > span {
    background-color: #f44336;
}

.pagination > li > a, .pagination > li > span {
    color: #f44336;
}

.card-stats .title {
    font-weight: 500;
}

.stats strong {
    font-size: 18px;
    color: #f44336;
    margin-left: 4px;
}

.stats {
    font-size: 20px;
}

.modal-backdrop {
    display: none;
}

/* Gantt */
.gantt {
    width: 100%;
    margin: 20px auto;
    border: 14px solid #ddd;
    position: relative;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.gantt:after {
    content: ".";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both;
}

.fn-gantt {
    width: 100%;
}

.fn-gantt *,
.fn-gantt *:after,
.fn-gantt *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fn-gantt .fn-content {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.fn-gantt .row {
    float: left;
    height: 24px;
    line-height: 24px;
    margin: 0;
}

/* === LEFT PANEL === */

.fn-gantt .leftPanel {
    float: left;
    width: 225px;
    overflow: hidden;
    border-right: 1px solid #DDD;
    position: relative;
    z-index: 20;
}

.fn-gantt .leftPanel .fn-label {
    display: inline-block;
    margin: 0 0 0 5px;
    color: #484A4D;
    width: 110px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.fn-gantt .leftPanel .row {
    border-bottom: 1px solid #DDD;
}

.fn-gantt .leftPanel .name, .fn-gantt .leftPanel .desc {
    float: left;
    height: 24px;
    width: 50%;
    background-color: #f6f6f6;
}

.fn-gantt .leftPanel .name {
    font-weight: bold;
}

.fn-gantt .leftPanel .fn-wide, .fn-gantt .leftPanel .fn-wide .fn-label {
    width: 100%;
}

.fn-gantt .leftPanel .spacer {
    background-color: #f6f6f6;
    width: 100%;
}

/* === RIGHT PANEL === */

.fn-gantt .rightPanel {
    overflow: hidden;
}

.fn-gantt .dataPanel {
    margin-left: 0;
    outline: 1px solid #DDD;
    /* TODO: Replace image with gradient?
    background-size: 24px 24px;
    background-image: linear-gradient(to left, rgba(221, 221, 221, 0.7) 1px, transparent 1px), linear-gradient(to top, rgba(221, 221, 221, 0.7) 1px, transparent 1px);
    */
    background-image: url(../img/grid.png);
    background-repeat: repeat;
    position: relative;
}

.fn-gantt .row.header {
    margin-right: -1px;
    width: 100%;
}

.fn-gantt .day, .fn-gantt .date {
    overflow: visible;
    width: 24px;
    line-height: 24px;
    text-align: center;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    font-size: 11px;
    color: #484a4d;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
    text-align: center;
}

.fn-gantt .sa, .fn-gantt .sn, .fn-gantt .wd {
    height: 24px;
    text-align: center;
}

.fn-gantt .sa, .fn-gantt .sn {
    color: #939496;
    background-color: #f5f5f5;
    text-align: center;
}

.fn-gantt .wd {
    background-color: #f6f6f6;
    text-align: center;
}

.fn-gantt .holiday {
    background-color: #ffd263;
    height: 24px;
}

.fn-gantt .today {
    background-color: #fff8da;
    height: 24px;
    font-weight: bold;
    text-align: center;
}

.fn-gantt .rightPanel .month, .fn-gantt .rightPanel .year {
    float: left;
    overflow: hidden;
    border-right: 1px solid #DDD;
    border-bottom: 1px solid #DDD;
    height: 24px;
    background-color: #f6f6f6;
    font-weight: bold;
    font-size: 11px;
    color: #484a4d;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
    text-align: center;
}

.fn-gantt-hint {
    border: 5px solid #edc332;
    background-color: #fff5d4;
    padding: 10px;
    position: absolute;
    display: none;
    z-index: 11;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fn-gantt .bar {
    background-color: #D0E4FD;
    height: 18px;
    margin: 0 3px 3px 0;
    position: absolute;
    z-index: 10;
    text-align: center;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.25) inset;
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.25) inset;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.25) inset;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.fn-gantt .bar .fn-label {
    line-height: 18px;
    font-weight: bold;
    white-space: nowrap;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #414B57 !important;
    text-align: center;
    font-size: 11px;
}

.fn-gantt .ganttRed {
    background-color: #F9C4E1;
}

.fn-gantt .ganttRed .fn-label {
    color: #78436D !important;
}

.fn-gantt .ganttGreen {
    background-color: #D8EDA3;
}

.fn-gantt .ganttGreen .fn-label {
    color: #778461 !important;
}

.fn-gantt .ganttOrange {
    background-color: #FCD29A;
}

.fn-gantt .ganttOrange .fn-label {
    color: #714715 !important;
}

/* === BOTTOM NAVIGATION === */

.fn-gantt .bottom {
    clear: both;
    background-color: #f6f6f6;
    width: 100%;
}

.fn-gantt .navigate {
    border-top: 1px solid #DDD;
    padding: 10px 0 10px 225px;
}

.fn-gantt .navigate .nav-slider {
    height: 20px;
    display: inline-block;
}

.fn-gantt .navigate .nav-slider-left, .fn-gantt .navigate .nav-slider-right {
    text-align: center;
    height: 20px;
    display: inline-block;
}

.fn-gantt .navigate .nav-slider-left {
    float: left;
}

.fn-gantt .navigate .nav-slider-right {
    float: right;
}

.fn-gantt .navigate .nav-slider-content {
    text-align: left;
    width: 160px;
    height: 20px;
    display: inline-block;
    margin: 0 10px;
}

.fn-gantt .navigate .nav-slider-bar, .fn-gantt .navigate .nav-slider-button {
    position: absolute;
    display: block;
}

.fn-gantt .navigate .nav-slider-bar {
    width: 155px;
    height: 6px;
    background-color: #838688;
    margin: 8px 0 0 0;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.fn-gantt .navigate .nav-slider-button {
    width: 17px;
    height: 60px;
    background: url(../js/gantt_js/img/slider_handle.png) center center no-repeat;
    left: 0;
    top: 0;
    margin: -26px 0 0 0;
    cursor: pointer;
}

.fn-gantt .navigate .page-number {
    display: inline-block;
    font-size: 10px;
    height: 20px;
}

.fn-gantt .navigate .page-number span {
    color: #666666;
    margin: 0 6px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
}

.fn-gantt .navigate a:link, .fn-gantt .navigate a:visited, .fn-gantt .navigate a:active {
    text-decoration: none;
}

.fn-gantt .nav-link {
    margin: 0 3px 0 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    font-size: 0;
    background: #595959 url(../js/gantt_js/img/icon_sprite.png) !important;
    border: 1px solid #454546;
    cursor: pointer;
    vertical-align: top;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 1px rgba(0, 0, 0, 0.2);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fn-gantt .nav-link:active {
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset, 0 1px 0 #FFF;
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset, 0 1px 0 #FFF;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25) inset, 0 1px 0 #FFF;
}

.fn-gantt .navigate .nav-page-back {
    background-position: 1px 0 !important;
    margin: 0;
}

.fn-gantt .navigate .nav-page-next {
    background-position: 1px -16px !important;
    margin-right: 15px;
}

.fn-gantt .navigate .nav-slider .nav-page-next {
    margin-right: 5px;
}

.fn-gantt .navigate .nav-begin {
    background-position: 1px -112px !important;
}

.fn-gantt .navigate .nav-prev-week {
    background-position: 1px -128px !important;
}

.fn-gantt .navigate .nav-prev-day {
    background-position: 1px -48px !important;
}

.fn-gantt .navigate .nav-next-day {
    background-position: 1px -64px !important;
}

.fn-gantt .navigate .nav-next-week {
    background-position: 1px -160px !important;
}

.fn-gantt .navigate .nav-end {
    background-position: 1px -144px !important;
}

.fn-gantt .navigate .nav-zoomOut {
    background-position: 1px -96px !important;
}

.fn-gantt .navigate .nav-zoomIn {
    background-position: 1px -80px !important;
    margin-left: 15px;
}

.fn-gantt .navigate .nav-now {
    background-position: 1px -32px !important;
}

.fn-gantt .navigate .nav-slider .nav-now {
    margin-right: 5px;
}

.fn-gantt-loader {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#bf000000', endColorstr='#bf000000', GradientType=0);
    background: rgba(0, 0, 0, 0.75);
    cursor: wait;
    z-index: 30;
}

.fn-gantt-loader-spinner span {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    height: 1em;
    line-height: 1em;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
}

.row:after {
    clear: both;
}

/* Tabs */
.tabs-left, .tabs-right {
    border-bottom: none;
    padding-top: 2px;
}

.tabs-left {
    border-right: 1px solid #ddd;
    background: transparent;
}

.tabs-right {
    border-left: 1px solid #ddd;
}

.tabs-left > li, .tabs-right > li {
    float: none;
    margin-bottom: 2px;
}

.tabs-left > li {
    margin-right: -1px;
}

.tabs-right > li {
    margin-left: -1px;
}

.tabs-left > li.active > a,
.tabs-left > li.active > a:hover,
.tabs-left > li.active > a:focus {
    border-bottom-color: #ddd;
    border-right-color: transparent;
}

.tabs-right > li.active > a,
.tabs-right > li.active > a:hover,
.tabs-right > li.active > a:focus {
    border-bottom: 1px solid #ddd;
    border-left-color: transparent;
}

.tabs-left > li > a {
    border-radius: 4px 0 0 4px;
    margin-right: 0;
    display: block;
    color: #888 !important;
    font-size: 14px;
    font-weight: 500;
}

.tabs-left > li > a:hover {
    background-color: #f44336 !important;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    background-color: #f44336 !important;
    color: #fff !important;
}

.tabs-right > li > a {
    border-radius: 0 4px 4px 0;
    margin-right: 0;
}

.nav-tabs .number {
    font-size: 18px;
    /* border: 1px solid #fff; */
    padding: 2px 8px;
    color: #f44336;
    background: #fff;
    margin-right: 5px;
    border-radius: 3px;
}

/* Public Styles */

.padding-10 {
    padding: 0 10px;
}

#public .container {
    width: 660px;
    margin: 1em auto;
    padding: 0px;
}

.cookies-banner-down {
    min-height: 60px;
    position: fixed;
    bottom: 0px;
    width: 100%;
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: 0px;
    color: inherit;
}

.file-upload {
    margin-top: 15px
}

.material-icons.white-icon {
    color: #ffffff;
}

select.filter-select option {
    color: black;
}

li.activate a {
    background-color: #ca372c;
}

.input-group-addon.calendar:hover {
    cursor: pointer;
}

.order-icon {
    color: #ccc !important;
    background: transparent !important;;
}

.order-icon:hover {
    color: #000 !important;
    background: transparent !important;
}
.chart{
    padding: 100px;
}

.logo img {
    height: 50px;
    margin: 0 auto;
}

.top-30 {
    top: 30px;
}

.m-t-0 .form-group{
    margin-top: 0px !important;
}

.m-r-3{
    margin-right: 3px !important;
}

.nav-tabs > li > a:hover{
    background-color: #ca372c;
}

.form-group a {
    position: relative;
    left: 98%;
    bottom: 35px;
}

.navbar-brand .small,.navbar-brand  small {
    font-size: 75%;
    opacity: .7;
}

.card-plain h4 {
    border: none;
    padding: 0px;
    font-weight: 400;
}

.card-plain {
    background: #fff;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.14);
}

.active-collapse {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 400;
}
.pointer-cursor{
    cursor: pointer;
}
.datepicker-days > table > tbody > tr > td{
    cursor: pointer;
}
.datepicker-days > table > thead > tr > th{
    cursor: pointer;
}
.welcome{
    color: inherit;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 3px;
    display: block;
    padding: 10px 15px;

}

.table > thead > tr > th {
    font-size: .8em !important;
}

.border{
    border-style: dashed;
    border-width: 0.1px;
    border-color: gray;
}

.bold{
    font-weight: 600;
}

.alerts{
    background: white !important;
    color: red !important;
    margin: 0px !important;
    padding: 0px !important;
}
.tooltip-inner {
    white-space:pre-wrap;
    text-align: left;
    max-width:none;
}
.red {
    color: red;
}
.red-tr{
    background-color: rgba(234, 70, 67, 0.06);
}
.participant-checkbox-div{
    margin-top: 5px;
}
.div-inline{
    display: inline;
}
.select2 {
    width: 100% !important;
}
.no-padding {
    padding: 0;
}
.thin-date > .form-group {
    margin-top: 0;
}
.thin-date > .form-group > .form-control{
    padding-top: 0;
}

/* PDF TABLE */
.row-spacing {
    border-spacing: 0;
}
.row-spacing tr {
    border-spacing: 0px 10px;
}

.p-r-2rem {
    padding-right: 2rem;
}

.over-hidden {
    overflow: hidden;
}

.p-l-15{
    padding-left: 15px;
}

.custom-css {
    background-color: #fbfbfb!important;
    border: 1px solid #d4d4d4;
}