.title-breadcrum {
    color: #1B676B;
    font-family: Poppins-Regular;
    font-size: 24px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
}

.custom-form {
    width: 100%;
}

.subtitle {
    margin-top: -5px;
    display: block;
    color: #909E9F;
    font-weight: 550;
    font-size: 14px;
}

.availability input[type=radio] {
    position: absolute;
    visibility: hidden;
    display: none;
}

.remove_arr {
    float: right;
    cursor: pointer;
}

.availability label {
    color: #1b676b;
    box-sizing: border-box;
    border-top: 3px solid #1b676b;
    border-bottom: 3px solid #1b676b;
    border-left: 3px solid #1b676b;
    display: inline-block;
    cursor: pointer;
    height: 100%;
    font-size: 16px;
    font-weight: 550;
    padding: 10px 20px;
}

.availability label:last-child {
    border-right: 3px solid #1b676b;
}

.availability input[type=radio]:checked+label {
    color: #fff;
    background: #1b676b;
}

.availability .radio-group {
    display: flex;
    margin: 5px 10px;
    width: 95%;
}

.availability p {
    color: #1b676b;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 5px;
    padding-left: 10px;
}

.availability {
    display: block;
    width: 100%;
    overflow-x: auto;
}

.availability-form {
    padding-left: 10px;
}

.availability-form input, .timeData {
    border: 3px solid #1b676b;
    color: #1b676b;
}

table.avalability-table {
    width: 99%;
    row-gap: 20px;
}

table.avalability-table>thead>th {
    height: 40px;
}

table.avalability-table>tbody>tr {
    height: 60px;
    border: 2px solid #1b676b;
}

table.avalability-table td {
    min-width: 100px;
}

.button-group {
    width: 100%;
    margin: 0 auto;
    line-height: 50px;
}

button.action-button {
    margin-right: auto;
    margin-left: 10px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
}

.okay {
    background: green;
}

.not-okay {
    background: red;
}

.add-avalability {
    padding: 10px 20px;
    margin-left: 10px;
    background: #fff;
    border: 3px solid #1b676b;
    border-radius: 25px;
    color: #1B676B;
    font-size:15px;
}
.add-avalability i{
    font-size:16px;
    font-weight:550;
}


.availability-form select {
    width: 100%;
    /* height: 55px; */
    border: 3px solid #1b676b;
    color: #1B676B;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../svg/arrow.svg") #fff no-repeat 99.6% !important;
    /* !important used for overriding all other customisations */
    background: url("../svg/arrow.svg") #fff no-repeat calc(100% - 2px) !important;
    /* Better placement regardless of input width */
}

.example-h2 {
    margin: 10px;
}

.example-section {
    display: flex;
    align-content: center;
    align-items: center;
    height: 50px;
    border-bottom: 1px dotted #ccc;
}

.example-margin {
    margin: 0 10px;
}

table.new-role {
    color: #78898B;
    width: 100%;
}

table.new-role>thead>tr {
    padding: 10px;
    border-bottom: 1px dotted #ccc;
}

table.new-role>tbody>tr {
    background-color: #fff;
}

table.new-role>tbody>tr>td, table.new-role>table>tbody>tr>th, table.new-role>table>tfoot>tr>td, table.new-role>table>tfoot>tr>th, table.new-role>thead>tr>td, table.new-role>thead>tr>th {
    padding: 10px 30px;
    vertical-align: middle;
    cursor: pointer;
}

.error-alert {
    background-color: #dc3545!important;
    color: #fff;
    font-weight: 600;
    z-index:1053;
}

.success-alert {
    background-color: #195659!important;
    color: #fff;
    font-weight: 600;
     z-index:1053;
}

.error-alert button, .success-alert button {
    background: #fff;
    color: #1B6967;
    font-weight: 550;
    border-radius: 20px;
    height: 50px;
}

address {
    margin-bottom: 0px;
    font-style: normal;
    line-height: inherit;
}

table.detail-table {
    border-collapse: separate;
    border-spacing: 1em 1em;
}

img.rounded-image {
    margin: 0 auto;
    width: 150px;
    height: 150px;
    margin-top: 20px;
    border-radius: 50%;
}

input:-internal-autofill-selected {
    color: #BEF202;
}

.mySpinner {
    margin-top: 20%;
    position: absolute;
    color: White;
    top: 50%;
    left: 48%;
}

.radius-20 {
    border-radius: 35px;
}

img.rounded-circle {
    width: 100px;
    height: 100px;
    margin-top: 0px;
}

/* The switch - the box around the slider */

.switch {
    position: relative;
    display: inline-block;
    width: 90px;
    height: 34px;
}

/* Hide default HTML checkbox */

.switch input {
    display: none;
}

/* The slider */

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1B676B;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input.default:checked+.slider {
    background-color: #444;
}

input.success:checked+.slider {
    background-color: #BEF202;
}

input:checked+.slider:before {
    transform: translateX(55px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.uploadfilecontainer {
    height: 100px;
    width: 100%;
    margin: 20px auto;
    background: #f5f8f8;
    /* border: 2px dashed #1B676B; */
    border-radius: 10px;
    text-align: center;
    color: #78898B;
}

.uploadfilecontainer i {
    font-size: 18px;
    line-height: 100px;
    text-align: center;
}

.uploadfilecontainer i span {
    font-family: Poppins-Regular;
    font-size: 14px;
}

.uploadfilecontainer:hover {
    cursor: pointer;
    background-color: #f5f8f8 !important;
    opacity: 0.8;
}

.detailBtn span.circle {
    display: inline-block;
    height: 30px;
    width: 30px;
    background: #BEF202;
    line-height: 30px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    color: #1B676B;
    text-align: center;
    margin-left: 30px;
    padding-left: 0px;
}

.detail-fluid {
    width: 100%;
    padding-right: 5px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.calendar {
    padding: 5px;
    width: 1500px;
}

.col-box-header {
    width: 13.2%;
    margin: 5px;
}

.day {
    width: 100%;
    height: 16px;
    color: #9CB1B3;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
}

.col-box .active {
    height: 100%;
    border-radius: 5px;
    padding: 10px;
    background: #fff;
    cursor: pointer;
}

.col-box .today {
    height: 100%;
    border-radius: 5px;
    padding: 10px;
    border: 2px solid #BEF202;
    background: #fff;
    cursor: pointer;
}

.col-box {
    width: 200px;
    min-height: 90px;
    border-radius: 5px;
    margin: 5px;
    border: 2px solid #EEF3F3;
    background: #F4F7F7;
    cursor: pointer;
}

.date {
    width: 100%;
    padding: 10px 10px 0px 10px;
    color: #9CB1B3;
    overflow: hidden;
    font-size: 17px;
    font-weight: 550;
    line-height: 17px;
}

.data {
    padding: 10px 10px 5px 10px;
    color: #9CB1B3;
    font-size: 14px;
}

.data p {
    line-height: 5px;
}

.week-box-header {
    width: 12%;
    margin: 2px;
    padding: 10px;
}

.week-box {
    width: 100%;
    height: 70px;
    border-radius: 5px;
    margin: 15px 5px;
    background: #F4F7F7;
    border: 2px solid #EEF3F3;
}

.time-box {
    width: 100%;
    text-align: center;
    height: 70px;
    margin: 15px 5px;
    line-height: 70px;
    background: transparent;
}

.box {
    width: 100%;
}

/* td.action-btn{
    width:100px;
} */

td.action-btn select {
    border: none;
    padding: 5px 15px;
    border-radius: 25px;
    height: 35px;
    margin: 0 auto;
    display: block;
    /* width:100px */
    background-color: #1B676B;
    color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* background: url("../svg/white-arrow.svg") #1B676B no-repeat 98.5% !important; !important used for overriding all other customisations */
    background: url("../svg/white-arrow.svg") #1B676B no-repeat calc(100% - 5px) !important;
    /* Better placement regardless of input width */
}

.swal-confirm {
    border: 0;
    border-radius: .25em;
    background-color: #3085d6;
    color: #fff;
    font-size: 1.0625em;
}

/* Making responsive css */

#content-desktop {
    display: block;
}

#content-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    #content-desktop {
        display: none;
    }
    #content-mobile {
        display: block;
    }
}