/* Custom CSS */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
body {
    font-family: 'Poppins', sans-serif;
}

.staging-msg {
    background: red;
    color: #fff;
    padding: 0 15px;
    position: fixed;
    top: 0;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 2000;
    height: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 1px solid #fff;
  }

.site-header {
    padding: 0px 0;
}

.site-header .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.4;
    font-weight: 400;
    border-bottom: 2px solid transparent !important;
    color: #666666;
    transition: .3s;
    padding-top: 25px;
    padding-bottom: 25px;
}

.site-header .navbar-nav .nav-item.active .nav-link, .site-header .navbar-nav .nav-item:hover .nav-link {
    color: #039ddb;
    border-color: #039ddb !important;
}

.site-header .side-dropdown {
    margin-left: 10px;
    flex: 1 1 auto;
    max-width: 300px;
}

.site-header .side-dropdown .media .img-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    padding: 5px;
}

.site-header .side-dropdown .media .media-body {
    padding: 0px 35px 0 5px;
}

.site-header .side-dropdown .media .media-body h3 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.4;
    margin: 0;
    color: #333333;
}

.site-header .side-dropdown .media p {
    margin: 0;
    font-size: 13px;
    line-height: 24px;
    color: #858585;
    font-weight: 400;
}

.site-header .side-dropdown button {
    text-align: left;
    outline: none;
    box-shadow: none;
    position: relative;
}

.site-header .side-dropdown .dropdown-toggle::after {
    border: none;
    background-image: url(../images/dropdown.png);
    width: 16px;
    height: 15px;
    display: none;
    background-size: 15px;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    position: absolute;
    right: 0;
    top: 10px;
}

.site-header .navbar-nav .nav-item .dropdown-toggle::after, .site-header .navbar-nav .drop::after {
    border: none;
    background-image: url(../images/dropdown-sprite.png);
    width: 12px;
    height: 12px;
    display: inline-block;
    background-size: 23px;
    background-repeat: no-repeat;
    margin: 0;
    position: absolute;
    right: 5px;
    top: 50%;
    background-position: 100% center;
    transform: translateY(-50%);
    content: "";
}

.site-header .navbar-nav .nav-item .dropdown-toggle {
    padding-right: 18px;
    position: relative;
    border: none;
    outline: none;
    background: transparent;
}

.site-header .navbar-nav .nav-item .dropdown-item {
    border: none;
    outline: none;
    background: transparent;
}

.site-header .navbar-nav .nav-item:hover .dropdown-toggle::after, .site-header .navbar-nav .nav-item.active .dropdown-toggle::after {
    background-position: 0px center;
}

.site-header .side-dropdown .media .img-wrap span.status {
    position: absolute;
    bottom: 5px;
    width: 13px;
    height: 13px;
    border-radius: 80%;
    background-color: #00a551;
    border: 3px solid #ffffff;
    left: 10px;
}

.site-header .side-dropdown .media .img-wrap img {
    max-width: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.site-header .side-dropdown .media .img-wrap span.status.online {
    background: #8fc059;
}

.menu-logo-mobile {
    padding: 15px;
}

.site-header .navbar-nav .dropdown-item {
    padding-left: 3px;
    color: #666;
}

.site-header .navbar-nav .nav-item .dropdown-menu {
    border: none;
    box-shadow: 0 1px 25px rgba(0, 0, 0, .23);
    padding: 10px;
    margin: 0;
}

.site-header .navbar-nav .nav-item li.drop {
    position: relative;
}

.site-header .navbar-nav .nav-item {
    margin: 0 5px;
}
.site-header .navbar-brand img {
    max-width: 120px;
}

@media (min-width: 1199.98px) {
    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .dropdown-menu>li:hover>.submenu {
        display: block;
    }
    .site-header .navbar-nav .nav-item .nav-link span.mob-icon {
        display: none;
    }
    .dropdown-menu .dropdown-toggle:after {
        border-top: .3em solid transparent;
        border-right: 0;
        border-bottom: .3em solid transparent;
        border-left: .3em solid;
    }
    .dropdown-menu .dropdown-menu {
        margin-left: 0;
        margin-right: 0;
    }
    .dropdown-menu li {
        position: relative;
    }
    .nav-item .submenu {
        display: none;
        position: absolute;
        right: 100%;
        left: auto;
        top: -7px;
    }
    .nav-item .submenu-left {
        right: 100%;
        left: auto;
    }
    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }
    .site-header .navbar-nav .nav-item .dropdown-menu ul {
        list-style: none;
        padding: 0;
    }
    .site-header .navbar-nav li.nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
    .site-header .navbar-nav li.nav-item.dropdown:hover > .dropdown-menu li.drop:hover > .submenu.dropdown-menu {
        display: block;
    }
}

@media (max-width: 1199.98px) {
    .site-header .navbar-collapse:not(.show) {
        left: -100vw;
    }
    .site-header .navbar-collapse {
        display: block;
        position: fixed;
        background: #fff;
        left: 0;
        top: 0;
        max-width: 100vw;
        width: 400px;
        min-height: 100vh;
        transition: .2s;
        z-index: 2;
        overflow: auto;
        max-height: 100vh;
    }
    .site-header .side-dropdown .media .media-body, .site-header .side-dropdown .dropdown-toggle::after {
        display: none;
    }
    .site-header .navbar-brand {
        margin: 0;
    }
    .site-header .side-dropdown .media .img-wrap {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        position: relative;
        padding: 5px;
    }
    .site-header .navbar-toggler {
        padding: 0;
        border: none;
        color: #091f29;
    }
    .site-header .navbar-nav .nav-item .nav-link {
        font-size: 14px;
        border-bottom: 0px solid transparent;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }
    .site-header .navbar-nav .nav-item .dropdown-toggle::after {
        top: 12px;
        transform: translateY(0px);
        background-image: url(../images/arrow-right.png);
        background-size: 6px;
        background-position: center !important;
    }
    .site-header .navbar-nav .drop::after {
        top: 8px;
        transform: translateY(0px);
        background-image: url(../images/arrow-right.png);
        background-size: 6px;
        background-position: center !important;
    }
    .site-header {
        padding: 10px 0;
    }
    .site-header .navbar-nav .nav-item .dropdown-item {
        font-size: 14px;
        white-space: wrap;
    }
    .site-header .navbar-nav {
        overflow-y: auto;
        max-height: calc(100vh - 90px);
    }
    .site-header .side-dropdown {
        flex: inherit;
    }
}

.site-header .navbar-nav .nav-item .nav-link span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1699.98px) and (min-width: 1199.98px) {
    .site-header .navbar-nav .nav-item .nav-link span {
        max-width: 13vw;
    }
}

body.drop-open::before {
    content: "";
    background: rgb(0 0 0 / 50%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.site-header .navbar-nav .nav-item .nav-link .mob-icon {
    width: 27px;
    height: 27px;
    border-radius: 4px;
    background-color: #d8a035;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 9px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
}

.site-header .navbar-nav .nav-item .nav-link .home {
    background-color: #9abe67;
    background-image: url(../images/home.png);
}

.site-header .navbar-nav .nav-item .nav-link .myinbox {
    background-color: #d44d4d;
    background-image: url(../images/myinbox.png);
}

.site-header .navbar-nav .nav-item .nav-link .teaminfo {
    background-color: #d8a035;
    background-image: url(../images/teaminfo.png);
}

.site-header .navbar-nav .nav-item .nav-link .todo {
    background-image: url(../images/todo.png);
    background-color: #459cd5;
    background-size: 11px;
}

.site-header .navbar-nav .nav-item .nav-link .employers {
    background-color: #9a9a9a;
    background-image: url(../images/emp.png);
}

.site-header .navbar-nav .nav-item .nav-link .mywork {
    background-color: #10252e;
    background-image: url(../images/myiwork.png);
}

.quick-links-menu {
    padding: 15px;
    margin: 20px 0 0 0;
}

.quick-links-menu h3 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #459cd6;
    font-weight: 500;
    border-bottom: 1px solid #CCCCCC;
    padding: 0 0 10px 0;
}

.quick-links-menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.quick-links-menu ul a {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #666666;
    transition: .3s;
    display: block;
    padding: .5rem 1rem .5rem 0rem;
    background-image: url(../images/arrow-right.png);
    background-position: 100% 50%;
    background-size: 6px;
    background-repeat: no-repeat;
}

.quick-links-menu ul li a .quick-icon {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 9px 0 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    background-color: #ceeecc;
}

.quick-links-menu ul li:nth-child(4n+4) a .quick-icon {
    background-image: url(../images/quick-focus.png);
    background-color: #e4e5e4;
}

.quick-links-menu ul li:nth-child(4n+3) a .quick-icon {
    background-color: #e8f5fa;
    background-image: url(../images/quick-sports.png);
}

.quick-links-menu ul li:nth-child(4n+2) a .quick-icon {
    background-image: url(../images/quick-refer.png);
    background-color: #f3e7dc;
    background-size: 10px;
}

.quick-links-menu ul li:nth-child(4n+1) a .quick-icon {
    background-image: url(../images/quick-hr.png);
    background-color: #ceeecc;
}

.site-header .container, .section-main .container, .footer-wrap .container {
    max-width: 100%;
    padding: 0 3vw;
}

.section-main .row {
    padding: 0;
}

.section-banner .banner-wrap {
    padding: 50px;
    background-color: #1298d7;
    background-image: url(../images/new-banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
}

.section-banner .banner-wrap .text-wrap {
    padding-left: 22vw;
}

.section-banner .banner-wrap .text-wrap h5 {
    font-size: 14px;
    line-height: 1.4;
    color: #add4e4;
    font-weight: 400;
    font-family: "Poppins";
}

.section-banner .banner-wrap .text-wrap h2 {
    font-size: 23px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
}

.section-banner .banner-wrap .text-wrap h2 span {
    color: #062331;
    font-weight: 500;
    text-decoration: underline;
}

.section-banner .banner-wrap .text-wrap p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
}

.green-button {
    border-radius: 3px;
    background-color: #8fc059;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    padding: 10px 24px;
    text-align: center;
    border: 2px solid #8fc059;
    transition: .2s;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
    text-transform: capitalize;
}

.green-button:hover, .green-button:focus, .green-button:active {
    text-decoration: none;
    background: #333333;
    color: #fff;
    border-color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.section-main {
    padding: 110px 0 40px 0;
    min-height: calc(100vh - 53px);
}

.section-banner .banner-wrap {
    margin: 0 0 30px 0;
}

.section-banner .text-section-banner h3.wid-heading {
    font-size: 21px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #0a2029;
    font-weight: 500;
    font-family: "Poppins";
}

.section-banner .text-section-banner .text-section {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 25px;
}

.section-banner .text-section-banner .text-section form {
    margin: 0;
}

.section-banner .text-section-banner .your-chances .field-wrap:not(:first-of-type) {
    margin-top: 21px;
}

.section-banner .text-section-banner .your-chances .field-wrap label {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
}

.section-banner .text-section-banner .your-chances .field-wrap select.form-control {
    height: 48px;
    border-radius: 4px;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.section-banner .text-section-banner .your-chances .field-wrap .media-body {
    padding: 0 15px 0 0;
}

.btn-wrap .grey-btn {
    border-radius: 4px;
    background-color: #333333;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    padding: 14px 50px;
    outline: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
    border: none;
    transition: .2s;
}

.btn-wrap .grey-btn:hover, .btn-wrap .grey-btn:focus, .btn-wrap .grey-btn:active {
    background: #8fc059;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.section-banner .text-section-banner .text-section.new-features {
    padding-bottom: 20px;
}

.section-banner .text-section-banner .text-section.new-features .chances-text {
    margin: 0 0 15px 0;
    border-bottom: 1px solid #e7e7e7;
    padding: 0 0 15px 0;
}

.section-banner .text-section-banner .text-section.new-features .chances-text .img-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #ffdec5;
}

.section-banner .text-section-banner .text-section.new-features .chances-text .media-body {
    padding: 0 0 0 20px;
}

.section-banner .text-section-banner .text-section.new-features .chances-text .media-body h4 {
    font-size: 17px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0 0 0 0;
}

.section-banner .text-section-banner .text-section.new-features .chances-text .media-body p {
    font-size: 13px;
    line-height: 1.5;
    color: #778d96;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 10px 0;
}

.section-banner .text-section-banner .text-section.new-features .chances-text .media-body .click-circle {
    border-radius: 17px;
    background-color: #ffffff;
    border: 1px solid #cdcdcd;
    font-size: 13px;
    line-height: 1.4;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
    padding: 8px 30px;
    display: inline-block;
}

.section-banner .text-section-banner .text-section.new-features .mail-text {
    text-align: center;
}

.section-banner .text-section-banner .text-section.new-features .mail-text p {
    font-size: 14px;
    line-height: 22px;
    color: #555555;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.notes-title {
    font-size: 21px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #0a2029;
    font-weight: 500;
    font-family: "Poppins";
}

.notes-wrap {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 25px;
}

.notes-wrap .heading {
    border-bottom: 2px solid #dddde4;
    padding: 0 0 15px 0;
}

.notes-wrap .heading .date-wrap h4 {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
    text-transform: uppercase;
    padding: 0 0 0 25px;
}

.notes-wrap .heading .date-wrap h4 {
    background-image: url(../images/black-cal.png);
    background-position: left center;
    background-repeat: no-repeat;
}

.notes-wrap .heading p {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
    text-transform: uppercase;
    padding: 0 0 0 25px;
    background-image: url(../images/notes.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.notes-wrap .notes .media-body h5 {
    font-size: 14px;
    line-height: 1.4;
    color: #48626c;
    font-weight: 500;
    font-family: "Poppins";
}

.notes-wrap .notes .media-body p {
    font-size: 13px;
    line-height: 1.4;
    color: #48626c;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.notes-wrap .notes {
    padding-top: 12px;
}

.notes-wrap .notes:not(:last-of-type) {
    border-bottom: 1px solid #dedede;
    padding-bottom: 12px;
}

.notes-wrap .notes .date-wrap {
    border-radius: 3px;
    background-color: rgba(3, 157, 219, 0.10);
    padding: 10px 14px;
    text-align: center;
}

.notes-wrap .media-body {
    padding-left: 110px;
}

.notes-wrap .notes .date-wrap .date p {
    margin: 3px 0 0 0;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #041a23;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
    border-top: 1px solid #8fc996;
    padding: 3px 0 0 0;
}

.notes-wrap .notes .date-wrap .date strong {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #10506d;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
}

.quick-links-widget {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 20px;
}

.quick-links-widget .quick-links-menu {
    margin: 0;
    padding: 0;
}

.quick-links-widget h3 {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #0a2029;
    font-weight: 500;
    font-family: "Poppins";
    border-bottom: 1px solid #ebebeb;
    margin: 0 0 8px 0;
    padding: 0 0 9px 0;
}

.quick-links-widget .quick-links-menu ul a {
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
}

.quick-links-widget .quick-links-menu ul li:last-child a {
    border: none;
}

.quick-links-widget {
    margin: 0 0 20px 0;
}

.all-files h3.sidebar-widget-title {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #0a2029;
    font-weight: 500;
    font-family: "Poppins";
}

.all-files .filesslider .media {
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    margin: 8px 0 8px 0;
}

.all-files .filesslider .media .img-wrap {
    border-radius: 4px;
    background-color: #ead2d2;
    border: 1px solid #d25556;
    padding: 8px 10px;
}

.all-files .filesslider .media .media-body {
    padding: 0 0 0 10px;
}

.all-files .filesslider .media .media-body a {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #0a2029;
    font-weight: 400;
    font-family: "Poppins";
    text-decoration: none;
}

.all-files .filesslider .media .media-body p {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #515151;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.all-files .filesslider .media.doc .img-wrap {
    background-color: #bbdcf0;
    border: 1px solid #15a7eb;
}

.all-files .filesslider .media .img-wrap img {
    max-width: 25px;
}

.announcement .youtube-icon {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #434343;
    font-weight: 500;
    font-family: "Poppins";
    padding: 0 0 0 20px;
    display: inline-block;
    background-image: url(../images/youtube.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: 0px 4px;
}

.announcement .announcement-slider {
    margin: 5px -10px 0 -10px;
}

.announcement .announcement-slider .item {
    padding: 0 10px;
    height: auto;
}

.all-files .filesslider .item {
    height: auto;
}

.announcement .announcement-slider .announcement-wrap {
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.announcement .announcement-slider .announcement-wrap .img-wrap img {
    max-width: 100%;
    width: 100%;
}

.announcement .announcement-slider .announcement-wrap .text-wrap {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 10px 10px 10px;
    background-image: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.announcement .announcement-slider .announcement-wrap .text-wrap a {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
}

.announcement .announcement-slider .announcement-wrap .text-wrap p {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #bbbbbb;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.notes-wrap .heading-mob .btn {
    background: transparent;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #102028;
    font-weight: 500;
    font-family: "Poppins";
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 0px 10px 30px;
    border-bottom: 2px solid #dddde4;
    border-radius: 0;
    background-image: url(../images/notes.png);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 16px;
    margin: 0 0 6px 0;
    position: relative;
    outline: none;
    box-shadow: none !important;
}

.calenndar-wrap .heading-mob .btn {
    background: transparent;
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #102028;
    font-weight: 500;
    font-family: "Poppins";
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 0px 10px 30px;
    border-bottom: 2px solid #dddde4;
    border-radius: 0;
    background-image: url(../images/black-cal.png);
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 13px;
    margin: 0 0 6px 0;
    position: relative;
    outline: none;
    box-shadow: none !important;
}

.notes-wrap .heading-mob .btn::after, .calenndar-wrap .heading-mob .btn::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: 0;
    top: 15px;
    background-image: url(../images/dropdown.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
}

.notes-wrap .heading-mob .btn.collapsed::after, .calenndar-wrap .heading-mob .btn.collapsed::after {
    transform: rotate(-180deg);
}

.site-header .side-dropdown .dropdown-menu {
    border: none;
    box-shadow: 0 1px 25px rgba(0, 0, 0, .23);
    padding: 10px;
}

.site-header .side-dropdown .dropdown-menu .dropdown-item {
    padding-left: 4px;
    padding-right: 4px;
    font-size: 14px;
    background: transparent;
}

.site-header .side-dropdown .dropdown-menu a {
    text-decoration: none;
    outline: none;
}

.announcement .announcement-slider .slick-arrow, .filesslider .slick-arrow {
    display: none !important;
}

.field-wrap select.form-control {
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 12px;
}

.site-header {
    box-shadow: 0 0 3.5px rgba(0, 0, 0, 0.11);
    position: fixed;
    z-index: 10;
    width: 100%;
    background: #fff;
}

.calenndar-wrap {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 20px;
    margin: 0 0 20px 0;
}

.calenndar-wrap table {
    width: 100%;
}

.calenndar-wrap .date-heading {
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
    display: inline-block;
}

.calenndar-wrap table .day {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins";
}

.calenndar-wrap table {
    text-align: center;
}

.footer-wrap p {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    border-top: 1px solid #ececec;
    padding: 14px 0;
    margin: 0;
}

.footer-wrap p a {
    color: #039ddb;
}

/**Login**/

.login-wrap .banner-wrap .login-inner-banner {
    height: 100%;
    background-image: url(../images/login/login-banner.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 30px 30px;
    min-height: 100vh;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap {
    max-width: 570px;
}

.login-wrap .banner-wrap .login-inner-banner .footer-login {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap h4 {
    font-size: 15px;
    line-height: 1.4;
    color: #add4e4;
    font-weight: 400;
    font-family: "Poppins";
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap h3 {
    font-size: 31px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 20px 0;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap p {
    font-size: 17px;
    line-height: 27px;
    color: #cee2eb;
    font-weight: 300;
    font-style: italic;
    font-family: "Poppins";
    margin: 0 0 35px 0;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap .quote {
    padding: 20px 0 0 0;
    position: relative;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap .quote::before {
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background-image: url(../images/login/login-quote.png);
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 19px;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap .sign-in {
    font-size: 15px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 15px 0;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap .sign-in strong {
    display: inline-block;
    width: 100%;
    font-weight: inherit;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap .mail {
    border-radius: 3px;
    background-color: #8fc059;
    display: inline-block;
    text-align: center;
    padding: 13px 30px;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    text-decoration: none;
    transition: .2s;
}

.login-wrap .banner-wrap .login-inner-banner .text-wrap .mail:hover {
    background: #333333;
}

.login-wrap .banner-wrap .login-inner-banner .footer-login a {
    color: #fff;
    text-decoration: underline;
}

.login-wrap .form-wrap .form-inner {
    height: 100%;
    padding: 30px 30px 50px 30px;
    position: relative;
    background: #f9f9f9;
}

.login-wrap .form-wrap .form-footer-mobile {
    width: 100%;
    font-family: poppins;
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid #dedede;
    background: #f9f9f9;
}

.login-wrap .form-wrap .form-footer-mobile a {
    color: #039ddb;
}

.login-wrap .form-wrap .form-inner .form-footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #999999;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
}

.login-wrap .form-wrap .form-inner .form-footer a {
    font-size: inherit;
    color: inherit;
    text-decoration: none;
}

.login-wrap .form-wrap .form-inner .form-code {
    width: 100%;
    max-width: 400px;
}

.login-wrap .form-wrap .form-inner .form-code .logo {
    margin: 0 0 20px 0;
    text-align: center;
}

.login-wrap .form-wrap .form-inner .form-code p.current {
    font-size: 20px;
    line-height: 1.4;
    color: #333333;
    font-weight: 300;
    font-family: "Poppins";
    text-align: center;
}

.login-wrap .form-wrap .form-inner .form-code .form-group label {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.3;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
}

.login-wrap .form-wrap .form-inner .form-code .form-group .form-control {
    border-radius: 4px;
    background-color: #ffffff !important;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f !important;
    font-weight: 400;
    font-family: "Poppins";
    height: auto;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 13px 50%;
    background-size: 18px;
    appearance: none !important;
    box-shadow: none !important;
}

.login-wrap .form-wrap .form-inner .form-code .form-group.mail .form-control {
    background-image: url(../images/login/used.png);
}

.login-wrap .form-wrap .form-inner .form-code .form-group.pass .form-control {
    background-image: url(../images/login/password.png) !important;
}

.login-wrap .form-wrap .form-inner .form-code .form-buttons {
    text-align: center;
}

.login-wrap .form-wrap .form-inner .form-code input.buttons {
    border-radius: 3px;
    background-color: #8fc059;
    display: inline-block;
    text-align: center;
    padding: 13px 30px;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    text-decoration: none;
    transition: .2s;
    margin: 0 0 10px 0;
    border: none;
    width: 100%;
}

.login-wrap .form-wrap .form-inner .form-code .form-buttons a, .login-wrap .form-wrap .form-inner .form-code .forget-check a {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
}

.login-wrap .form-wrap .form-inner .form-code .form-group.form-check input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.login-wrap .form-wrap .form-inner .form-code .form-group.form-check .form-check-label {
    margin: 5px 0 0 10px;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #666666;
    font-weight: 400;
    font-family: "Poppins";
}

.login-wrap .form-wrap .form-inner .form-code .form-buttons a {
    margin: 0 0 10px 0;
    display: inline-block;
}

.login-wrap .form-wrap .form-inner .form-code div.legend {
    padding: 20px;
    text-align: left;
}

.login-wrap .form-wrap .form-inner .form-code div.legend h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 10px 0;
}

.login-wrap .form-wrap .form-inner .form-code div.legend p {
    font-size: 15px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 300;
    font-style: italic;
    font-family: "Poppins";
    margin: 0 0 15px 0;
}

.myschedule-page .month-table .table-wrap {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 5px 25px;
}

.myschedule-page .month-table .section-heading {
    margin-bottom: 20px;
}

.myschedule-page .month-table .table-wrap .table thead th {
    border-top: none;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    text-transform: uppercase;
}

.myschedule-page .month-table .table-wrap tbody td, .myschedule-page .month-table .table-wrap tbody td p {
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
}

.myschedule-page .month-table .table-wrap tbody td p {
    max-width: 550px;
}

.myschedule-page .month-table .table-wrap .table {
    margin: 0;
}

.myschedule-page .month-table .table-wrap tbody td .action, .myschedule-page .mobile-toggle-time .action {
    width: 37px !important;
    height: 37px !important;
    border-radius: 50% !important;
    background-color: #dfe5e8 !important;
    display: inline-block !important;
    margin: 0 5px 0 0 !important;
    background-image: url(../images/login/actions-sprite.png) !important;
    background-size: 110px !important;
    background-repeat: no-repeat !important;
    background-position-y: -58px !important;
    transition: background-image .2s !important;
}

.myschedule-page .month-table .table-wrap tbody td .post.action, .myschedule-page .mobile-toggle-time .post.action {
    background-position-x: 9px !important;
}

.myschedule-page .month-table .table-wrap tbody td .split.action, .myschedule-page .mobile-toggle-time .split.action {
    background-position-x: -38px !important;
}

.myschedule-page .month-table .table-wrap tbody td .merge.action, .myschedule-page .mobile-toggle-time .merge.action {
    background-position-x: -84px !important;
}

.myschedule-page .month-table .table-wrap tbody td .action:hover, .myschedule-page .mobile-toggle-time .action:hover {
    background-position-y: 12px !important;
    background-color: 039ddb !important;
}

.myschedule-page .month-table .table-wrap tbody td strong {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
}

.myschedule-page .month-table .table-wrap .table thead img {
    vertical-align: middle;
    margin: 0 9px 0 0;
}

.myschedule-page .info-wrap, .section-banner .home-info {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff !important;
    padding: 25px;
    border: none !important;
}

.myschedule-page .info-wrap .img-wrap, .section-banner .home-info .img-wrap {
    width: 68px !important;
    height: 68px !important;
    border-radius: 50% !important;
    background-color: #ffdec5 !important;
}

.myschedule-page .info-wrap .media-body p, .section-banner .home-info .media-body p, .section-banner .home-info .media-body li {
    margin: 0;
    line-height: 24px;
    color: #371818;
    font-weight: 400;
    font-family: "Poppins";
}

.section-banner .home-info .media-body li {
    list-style-type: none;
}

.myschedule-page .info-wrap .media-body, .section-banner .home-info .media-body {
    padding: 0 0 0 20px;
}

.myschedule-page .month-table .table-wrap tbody td p {
    margin: 0;
}

.tooltip-inner {
    text-transform: capitalize;
    background-color: #8fc059;
    border-radius: 30px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    min-width: 80px;
    font-size: 14px;
    letter-spacing: 0px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: #8fc059 !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: #8fc059 !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #8fc059 !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: #8fc059 !important;
}

.myschedule-page .month-table .table-wrap .table {
    min-width: 900px;
}

/*Create Schedule*/

.iwork-pages .section-heading h4, .myschedule-page .section-heading h4 {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.iwork-pages .section-heading p, .myschedule-page .section-heading p {
    font-size: 14px;
    line-height: 1.4;
    color: #6d7d83;
    font-weight: 400;
    margin: 0;
    font-family: "Poppins";
}

.custom-card {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 25px;
}

.create-schedule-page .autofil-section h4 {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 25px;
    color: #43651e;
    font-weight: 400;
    font-family: "Poppins";
    padding: 0 0 0 35px;
    background-image: url(../images/login/green-tick.png);
    background-repeat: no-repeat;
    background-position: left center;
}

.create-schedule-page .autofil-section h4 button.btn {
    padding: 0;
    font-size: inherit;
    color: inherit;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    outline: none;
    box-shadow: none;
}

.create-schedule-page .autofil-section p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #666666;
    font-weight: 400;
    font-family: "Poppins";
}

.create-schedule-page .autofil-section h4 button.btn::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: 0;
    top: 8px;
    background-image: url(../images/dropdown.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
}

.create-schedule-page .autofil-section h4 button.btn.collapsed::after {
    transform: rotate(180deg);
}

.create-schedule-page .innher-heading h5 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #000000;
    font-weight: 500;
    font-family: "Poppins";
    padding: 0 0 0 25px;
    background-position: left center;
    background-repeat: no-repeat;
    margin: 0;
}

.create-schedule-page .innher-heading.month-autofil h5 {
    background-image: url(../images/login/autofil.png);
}

.create-schedule-page .innher-heading {
    padding: 0px 0 10px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #b8d2e1;
}

.create-schedule-page .autofil-wrap, .my-availibility .autofil-wrap {
    border-radius: 4px;
    background-color: #f4f8ef;
    border: 1px solid #d2dbc6;
    padding: 20px 20px 20px 20px;
}

.my-availibility .autofil-wrap .button-wrap, .create-schedule-page .autofil-wrap .button-wrap, .create-schedule-page .apply-date-wrap .button-wrap {
    margin-bottom: 1rem;
    padding: 0 0 0 25px;
}

.create-schedule-page .button-wrap .buttons.grey-button, .my-availibility .button-wrap .buttons.grey-button {
    border-radius: 4px;
    background-color: #333333;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    padding: 14px 40px;
    outline: none;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
    border: none;
    transition: .2s;
    margin: 0;
    width: 100%;
}

.iwork-pages select.form-control,
input.form-control.has-datalist {
    height: 48px;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    outline: none;
    box-shadow: none;
    padding-right: 30px;
}

input.contract-datalist {
    width: 100%;
    border: 1px solid;
    border-color: rgb(133, 133, 133);
    border-radius: 2px;
}

input.has-datalist {
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 12px;
}

[list]::-webkit-calendar-picker-indicator {
    display: none !important;
}

.iwork-pages select.form-control::-ms-expand {
    display: none;
}

.iwork-pages .form-control {
    border-radius: 4px;
    border: 1px solid #e6e6e6;
    outline: none;
    box-shadow: none;
    padding: 10px 10px;
    height: 48px;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    font-weight: 400;
    font-family: "Poppins";
}

.my-availibility-side .form-control {
    background-color: #f5f5f5 !important;
}

.iwork-pages:not(.inbox) .select2-container--default .select2-selection--multiple {
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #e6e6e6 !important;
    outline: none;
    box-shadow: none;
    padding: 10px 10px;
    height: 48px;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    font-weight: 400;
    font-family: "Poppins";
    overflow: auto;
}

.iwork-pages textarea.form-control {
    height: auto;
    resize: none;
}

.create-schedule-page .button-wrap .buttons.grey-button:hover, .create-schedule-page .button-wrap .buttons.grey-button:focus, .create-schedule-page .button-wrap .buttons.grey-button:active {
    background: #8fc059;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.create-schedule-page .innher-heading.apply-date h5 {
    background-image: url(../images/login/template.png);
}

.create-schedule-page .innher-heading.manual-shift h5 {
    background-image: url(../images/login/manual.png);
    background-size: 15px;
}

.create-schedule-page .innher-heading.select-date h5 {
    background-image: url(../images/login/black-cal.png);
}

.create-schedule-page .autofil-wrap .button-wrap, .create-schedule-page .autofil-wrap .form-group, .my-availibility .autofil-wrap .button-wrap, .my-availibility .autofil-wrap .form-group {
    margin: 0;
}

.light-button {
    background-color: #c1c1c1;
    border-radius: 3px;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    padding: 10px 24px;
    text-align: center;
    border: 2px solid #c1c1c1;
    transition: .2s;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
    outline: none;
    text-transform: capitalize;
}

.light-button:hover, .light-button:focus, .light-button:active {
    text-decoration: none;
    background: #333333;
    color: #fff;
    border-color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.create-schedule-page .form-wrap .button-wrap {
    padding: 10px 0 0 0;
}

.create-schedule-page .form-wrap .button-wrap .buttons {
    min-width: 250px;
}

.iwork-pages .section-heading .schedule.form-control {
    max-width: 240px;
    background-color: #f0f0f0;
}

.create-schedule-page .side-schedule .schedule-list {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 15px 25px;
    margin: 0 0 20px 0;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .media .img-wrap {
    border-radius: 4px;
    background-color: #039ddb;
    padding: 9px;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .media .media-body {
    padding: 0 0 0 15px;
    text-align: left;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .schedule-mob-head {
    background: #eff0f4;
    width: 100%;
    border: 1px solid #dddde4;
    padding: 13px;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    position: relative;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .content h4 {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .media.desktop-heading {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #dddde4;
}

.create-schedule-page .side-schedule .schedule-list .description .text-wrap {
    padding: 0 0 0 30px;
    background-repeat: no-repeat;
    background-position: 0px 4px;
    margin: 0 0 15px 0;
}

.create-schedule-page .side-schedule .schedule-list .description .text-wrap.desc {
    background-image: url(../images/login/description.png);
}

.create-schedule-page .side-schedule .schedule-list .description .text-wrap h4 {
    font-size: 13px;
    line-height: 1.5;
    color: #2b3b42;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 5px 0;
}

.create-schedule-page .side-schedule .schedule-list .description .text-wrap p {
    font-size: 13px;
    line-height: 1.3;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.create-schedule-page .side-schedule .schedule-list .description .text-wrap.posi {
    background-image: url(../images/login/position.png);
    margin-bottom: 0;
}

.create-schedule-page .side-schedule .schedule-list .action {
    width: 34px;
    height: 34px;
    border-radius: 17px;
    background-color: #dfe5e8;
    display: inline-block;
    background-image: url(../images/login/schedule-action.png);
    background-size: 135px;
}

.create-schedule-page .side-schedule .schedule-list .description .actions {
    border-top: 1px solid #dedede;
    padding: 10px 0 0 0;
    margin: 10px 0 0 0;
}

.create-schedule-page .side-schedule .schedule-list .action.share {
    background-position: -6px -7px;
}

.create-schedule-page .side-schedule .schedule-list .action.share:hover {
    background-position: -50px -7px;
    background-color: #039ddb;
}

.create-schedule-page .side-schedule .schedule-list .action.add {
    background-position: -5px -50px;
}

.create-schedule-page .side-schedule .schedule-list .action.add:hover {
    background-position: 84px -50px;
    background-color: #039ddb;
}

.create-schedule-page .side-schedule .schedule-list .action.delete {
    background-position: -95px -5px;
}

.create-schedule-page .side-schedule .schedule-list .action.delete:hover {
    background-color: #039ddb;
    background-position: -95px 40px;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .schedule-mob-head::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: 20px;
    top: 25px;
    background-image: url(../images/down.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
}

.create-schedule-page .side-schedule .schedule-list .schedule-heading .schedule-mob-head.collapsed::after {
    transform: rotate(180deg);
}

.my-availibility .avail-list .table-wrap .table {
    margin: 0;
    min-width: 900px;
}

.my-availibility .avail-list .table-wrap .table thead th {
    border-top: none;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
}

.my-availibility .avail-list .table-wrap .table thead th img {
    vertical-align: middle;
    margin: 0 9px 0 0;
}

.my-availibility .avail-list .table-wrap .table thead th a.remove-all {
    float: right;
    font-size: 14px;
}

.my-availibility .avail-list .table-wrap .table thead th a.remove-all span {
    display: inline-block;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin: 0 0 0 6px;
    background-color: #e3f4fa;
    border-radius: 50%;
    background-image: url(../images/login/delete-blue.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
}

.my-availibility .avail-list .table-wrap .table .date {
    border-radius: 3px;
    background-color: rgba(3, 157, 219, 0.10);
    padding: 10px 14px;
    text-align: center;
    margin: 0;
    max-width: 76px;
}

.my-availibility .avail-list .table-wrap .table .date span.day {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #10506d;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
    display: block;
}

.my-availibility .avail-list .table-wrap .table .date span.month {
    margin: 3px 0 0 0;
    font-size: 13px;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #041a23;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
    border-top: 1px solid #8fc996;
    padding: 3px 0 0 0;
    display: inline-block;
    width: 100%;
}

.my-availibility .avail-list .availlist .schedule {
    padding: 9px 20px 9px 20px;
    margin: 0 5px 10px 0;
    border-radius: 3px;
    /* background-color: #eeeef1; */
    position: relative;
    font-size: 13px;
    line-height: 1.4;
    color: #48626c;
    font-weight: 400;
    font-family: "Poppins";
    min-width: 130px;
}

.my-availibility .avail-list .table-wrap .table .availlist {
    max-width: 840px;
}

.my-availibility .avail-list .availlist .schedule input {
    visibility: hidden;
}

.my-availibility .avail-list .availlist .schedule span.checkmark {
    position: absolute;
    right: 10px;
    /*
    ! Removed style for checkmark states. Added fontawesome psudo classes.
    ! Typically I would swap the icon class in the html this implementation was interesting.
    width: 14px;
    height: 14px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/login/cancel-time.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 13px;
    visibility: hidden;
    */
}
.my-availibility .avail-list .availlist .schedule span.checkmark::before {
    /* FontAwesome pseudo element code */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    /* https://fontawesome.com/v5/cheatsheet */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    /* FA5 psuedo class for circle */
    content: "\f111";
    color: #eeeef1;

}




.my-availibility .avail-list .availlist .schedule input:checked~.checkmark {
    visibility: visible;
}

.my-availibility .my-availibility-side .custom-card {
    padding: 15px;
}

.my-availibility .my-availibility-side .custom-card table.calendar, .iwork-pages .check-calendar {
    width: 100%;
    text-align: center;
}

.my-availibility .my-availibility-side .custom-card table.calendar .dayofweek, .iwork-pages .check-calendar .dayofweek {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins";
    border-bottom: 1px solid #eeeeee;
    padding: 10px 10px 10px 10px;
}

.my-availibility .my-availibility-side .custom-card table.calendar td label, .iwork-pages .check-calendar td label {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.my-availibility .my-availibility-side .custom-card table.calendar td label small, .iwork-pages .check-calendar td label small {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    position: relative;
    z-index: 2;
}

.my-availibility .my-availibility-side .custom-card table.calendar td label input, .iwork-pages .check-calendar td label input {
    position: absolute;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    left: 0;
    top: 0;
}

.my-availibility .my-availibility-side .custom-card table.calendar td label input::-ms-check, .iwork-pages .check-calendar td label input::-ms-check {
    opacity: 0;
}

.my-availibility .my-availibility-side .custom-card table.calendar td label input:checked, .iwork-pages .check-calendar td label input:checked {
    background: #e5f5fb;
}

.my-availibility .my-availibility-side .custom-card table.calendar td label input:checked~.check, .iwork-pages .check-calendar td label input:checked~.check {
    filter: grayscale(0);
}

.my-availibility .my-availibility-side .custom-card table.calendar td label .check, .iwork-pages .check-calendar td label .check {
    position: absolute;
    bottom: 2px;
    width: 12px;
    height: 9px;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../images/login/blue-calendar-tick.png);
    z-index: 1;
    background-size: 100%;
    background-position: center;
    filter: grayscale(1);
}

.calenndar-wrap table small.calen-title {
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
}

.calenndar-wrap table small.calen-title b.white_text {
    color: inherit;
    font: inherit;
}

.calenndar-wrap table .day-title {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins";
    border-bottom: 1px solid #eeeeee;
    padding: 10px 10px 10px 10px;
}

.calenndar-wrap table .day-title small, .calenndar-wrap table .day-title b {
    font: inherit;
    color: inherit;
}

.calenndar-wrap table td center {
    width: 46px;
    height: 46px;
    border-radius: 23px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.calenndar-wrap table td center a, .calenndar-wrap table td center small {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    position: relative;
    z-index: 2;
    text-decoration: none;
}

.calenndar-wrap table td:not(.the-day)>center {
    background: #2e9ddb;
}

.calenndar-wrap table td:not(.the-day)>center a {
    color: #fff;
}

.form-date-select .form-control {
    padding: 0.6rem .75rem;
    height: 48px !important;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    outline: none;
    box-shadow: none;
}

.form-date-select {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dedede;
    margin-bottom: 0;
}

.my-availibility-side .section-heading h4 {
    font-size: 18px;
    color: #0a2029;
    border-bottom: 1px solid #ebebeb;
    margin: 0 0 8px 0;
    padding: 0 0 9px 0;
}

.iwork-pages .autofil-wrap .form-group label, .my-availibility-side .form-group label {
    color: #19343f;
}

/**my-details page**/

.iwork-pages .toggle-header {
    margin: 0 0 20px 0;
    padding: 0 0 14px 0;
    border-bottom: 1px solid #b8d2e1;
}

.iwork-pages .toggle-header h4 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #000000;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.iwork-pages .toggle-header img {
    margin: 0 10px 0 0;
}

.iwork-pages .toggle-header .btn {
    width: 100%;
    text-align: left;
    padding: 0;
    border: none;
    outline: none;
    box-shadow: none;
}

.iwork-pages .toggle-header .btn {
    position: relative;
}

.iwork-pages .toggle-header .btn::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: 0;
    top: 7px;
    background-image: url(../images/icons/down.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
}

.collapse-button {
    position: relative;
}

.collapse-button::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: 0;
    top: 7px;
    background-image: url(../images/icons/down.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
    transform: rotate(180deg);
}

.collapse-button.collapsed::after {
    transform: rotate(0deg);
}

.iwork-pages .toggle-header .btn.collapsed::after {
    transform: rotate(180deg);
}

.iwork-pages .profile-fields {
    margin: 0 0 20px 0;
}

.iwork-pages .text-notifications .text-noti-section .custom-alert {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #3e4833;
    font-weight: 400;
    font-family: "Poppins";
    border-radius: 3px;
    background-color: #f1f9e8;
    padding: 10px 16px;
    margin: 0 0 18px 0;
    text-align: center;
}

.iwork-pages .text-notifications .text-noti-section .custom-alert p {
    margin: 0;
}

.iwork-pages .text-notifications .text-noti-section .small-info {
    font-size: 12px;
    line-height: 1.5;
    color: #666666;
    font-weight: 400;
    font-style: italic;
    font-family: "Poppins";
    margin: 0 0 10px 0;
    display: inline-block;
    width: 100%;
}

.iwork-pages .text-notifications .text-noti-section .form-inline label {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #333333;
    font-weight: 600;
    font-family: "Poppins";
}

.iwork-pages .side-details .profile-fields {
    margin: 0;
}

.iwork-pages .side-details p.small-info {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #666666;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .side-details .form-check .form-check-label, .iwork-pages .text-notifications .text-noti-section .form-check .form-check-label {
    font-size: 15px;
    line-height: 1.5;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .side-details .form-check .form-check-label strong, .iwork-pages .text-notifications .text-noti-section .form-check .form-check-label strong {
    font-weight: 500;
}

.iwork-pages .edit-details-wrap .profile-pic {
    margin: 0 0 20px 0;
}

.iwork-pages .edit-details-wrap .profile-pic .img-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: #e4933b;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.iwork-pages form {
    margin: 0;
}

.iwork-pages .edit-details-wrap .profile-pic .img-wrap h5 {
    margin: 0;
}

.iwork-pages .edit-details-wrap .profile-pic .img-wrap img {
    width: 100%;
}

.iwork-pages .edit-details-wrap .profile-pic .media-body {
    padding: 0 0 0 20px;
}

.iwork-pages .edit-details-wrap .profile-pic .media-body h5 {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .edit-details-wrap .profile-pic .media-body p {
    font-size: 13px;
    line-height: 1.3;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 0;
}

.iwork-pages .edit-details-wrap .profile-pic .media-body p strong {
    font-weight: 500;
}

.pickup-page .pickup-shift-wrap .whats-pickup .indiacation {
    font-size: 13px;
    line-height: 21px;
    color: #a93b3b;
    font-weight: 500;
    font-family: "Poppins";
}

.iwork-pages .iwork-table {
    margin: 0;
    min-width: 900px;
}

.iwork-pages .iwork-table thead th {
    border-top: none;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    text-transform: uppercase;
}

.iwork-pages .iwork-table thead th img {
    vertical-align: middle;
    margin: 0 9px 0 0;
}

.iwork-pages .iwork-table tbody td {
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .iwork-table tbody td p {
    margin: 0;
    max-width: 550px;
}

.iwork-pages .iwork-table tbody td a {
    color: inherit;
}

.pickup-page .plus-minus {
    background-color: #f4f8ef;
    padding: 20px;
}

.pickup-page .plus-minus strong {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
}

.media.blue-media {
    border-radius: 4px;
    background-color: #edf6fa;
    border: 1px solid #aed0dd;
    padding: 20px;
}

.media.blue-media .img-wrap {
    border-radius: 50%;
    background-color: #039ddb;
    padding: 9px 0px;
    text-align: center;
    width: 57px;
    height: 57px;
}

.media.blue-media .img-wrap img {
    max-width: 100%;
}

.media.blue-media .media-body h4 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0 0 5px 0;
}

.media.blue-media .media-body p {
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.iwork-pages .iwork-table select {
    padding: 0.2rem 1.75rem 0.2rem .75rem;
    height: 32px !important;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 9px;
    outline: none;
    box-shadow: none;
    width: 100%;
    max-width: 140px;
    color: #495057;
}

.mobile-toggle-time .single-schedule {
    border: 1px solid #dddde4;
    border-radius: 5px;
    overflow: hidden;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head {
    background: #eff0f4;
    width: 100%;
    border: none;
    padding: 13px;
    border-radius: 0;
    outline: none;
    box-shadow: none !important;
    position: relative;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap {
    border-radius: 4px;
    background-color: #039ddb;
    padding: 9px;
}
.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap.note {
    border-radius: 4px;
    background-color: #ffe40099;
    padding: 9px;
}
.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap.event {
    border-radius: 4px;
    background-color: #039ddb;
    padding: 9px;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .content h4 {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .media-body {
    padding: 0 0 0 15px;
    text-align: left;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: 20px;
    top: 25px;
    background-image: url(../images/down.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
    transform: rotate(180deg);
}
.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head.note::after {
    background-image: unset;
}
.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head.event::after {
    background-image: unset;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head.collapsed::after {
    transform: rotate(0deg);
}

.mobile-toggle-time .single-schedule .description {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 20px;
}

.mobile-toggle-time .single-schedule .description label {
    margin: 0;
    border-top: none;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
}

.mobile-toggle-time .single-schedule .description label img {
    vertical-align: middle;
    margin: 0 9px 0 0;
}

.mobile-toggle-time .single-schedule .description select {
    padding: 0.2rem 1.75rem 0.2rem .75rem;
    height: 32px !important;
    border-radius: 4px;
    background-color: #FFF;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 9px;
    outline: none;
    box-shadow: none;
    width: 100%;
    color: #495057;
}

.mobile-toggle-time .single-schedule .description p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    text-align: right;
}

.total-values {
    background-color: #f4f8ef;
    border-bottom: 2px solid #dddde4;
    text-align: right;
    padding: 1.4vw 9vw;
}

.total-values p {
    margin: 0;
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
}

.total-values p span {
    margin: 0 30px;
}

.total-values p strong {
    font-weight: 600;
    margin: 0 0 0 5px;
}

.total-values.mobile {
    padding: 19px;
    border: 1px solid #dedede;
    border-radius: 3px;
}

.total-values.mobile p {
    color: #406600;
    font-size: 15px;
}

.timecard-page .button-wrap p {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 30px;
}

.timecard-page .button-wrap input {
    margin: 0 16px 0 0;
    min-width: 240px;
}

.light-grey-button {
    border-radius: 3px;
    background-color: #c1c1c1;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    padding: 10px 24px;
    text-align: center;
    border: 2px solid #c1c1c1;
    transition: .2s;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
    text-transform: capitalize;
}

.light-grey-button:hover, .light-grey-button:focus, .light-grey-button:active {
    text-decoration: none;
    background: #333333;
    color: #fff;
    border-color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

/**Phone List CSS**/

.contact-list .custom-col {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
}

.contact-list .contact-wrap {
    border-radius: 6px;
    box-shadow: 0 0 16px #e6e6f4;
    background-color: #ffffff;
    border: 1px solid #f6f6f6;
    padding: 15px;
    margin: 0 0 30px 0;
}

.contact-list .contact-wrap .contact-head {
    text-align: center;
    border-bottom: 1px solid #dddde4;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.contact-list .contact-wrap .contact-head h4 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    /* text-align: center; */
    margin: 0;
}

.contact-list .contact-wrap .contact-info span {
    font-size: 13px;
    line-height: 1.5;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
    padding: 3px 0px 3px 20px;
    background-repeat: no-repeat;
    background-position-y: center;
}

.contact-list .contact-wrap .contact-info p {
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
    padding: 3px 0;
}

.contact-list .contact-wrap .tag {
    text-align: center;
    border-top: 1px solid #dddde4;
    padding-top: 10px;
    margin-top: 10px;
}

.contact-list .contact-wrap .tag span {
    width: auto;
    padding: 7px 25px;
    border-radius: 15px;
    background-color: #f0f0f0;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #656565;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    display: inline-block;
}

.contact-list .importantNumber .contact-wrap .tag span {
    background-color: #039ddb;
    color: #fff;
}

.contact-list .contact-wrap .contact-info span.mail {
    background-image: url(../images/icons/phonelist-mail.png);
    background-position-x: 0;
}

.contact-list .contact-wrap .contact-info span.phone {
    background-image: url(../images/icons/phonelist-phone.png);
    background-position-x: 1px;
}

.contact-list .contact-wrap .contact-info span.cell {
    background-image: url(../images/icons/phonelist-cell.png);
    background-position-x: 4px;
}

.phone-list-page .section-heading .button-wrap .filter-button {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
    position: relative;
    font-size: 14px;
    line-height: 1;
    color: #a5a5a5;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 30px 0 30px;
}

.phone-list-page .section-heading .button-wrap .filter-button.active {
    color: #19343f;
}

.phone-list-page .section-heading .button-wrap .filter-button:last-of-type {
    margin-right: auto;
}

.phone-list-page .section-heading .button-wrap .filter-button:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 2px;
    background: #a5a5a5;
    top: 0;
    right: -30px;
}

.pagination-iwork .pagination .page-item .page-link {
    border-radius: 6px;
    background-color: #ffffff;
    border: 1px solid #e2e2e2;
    margin: 0 5px;
    font-size: 15px;
    line-height: 24px;
    color: #8a8a8a;
    font-weight: 500;
    font-family: "Poppins";
    width: 40px;
    height: 40px;
    outline: none;
    padding: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-iwork .pagination .page-item.active .page-link {
    background-color: #4e4e4e;
    border: 1px solid #e2e2e2;
    color: #fff;
}

.pagination-iwork .pagination .page-item.prev .page-link, .pagination-iwork .pagination .page-item.next .page-link {
    letter-spacing: -2px;
    font-size: 17px;
}

.iwork-pages .what-is {
    border-radius: 4px;
    background-color: #edf6fa;
    border: 1px solid #aed0dd;
    padding: 15px;
}

.iwork-pages .what-is .img-wrap {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #039ddb;
}

.iwork-pages .what-is .media-body {
    padding: 5px 0 0 15px;
}

.iwork-pages .what-is .media-body .collapse-button {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    padding: 0;
    width: 100%;
    text-align: left;
    margin: 0;
    outline: none;
    box-shadow: none;
    border: none;
}

.iwork-pages .what-is .media-body .collapse-button h4 {
    margin: 0;
    font: inherit;
}

.iwork-pages .what-is .media-body .collapse-button::after {
    top: 3px;
}

.iwork-pages .what-is .media-body .pickup-text {
    padding: 10px 0 0 0;
    border-top: 1px solid #d5d5d5;
    margin: 10px 0 0 0;
}

.iwork-pages .what-is .media-body .pickup-text p {
    font-size: 13px;
    line-height: 1.3;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 10px 0;
}

.position-tag span {
    width: auto;
    padding: 7px 25px;
    border-radius: 15px;
    background-color: #f0f0f0;
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #656565;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    display: inline-block;
}

.position-tag {
    padding: 5px 0 0 0;
}

.position-tag.staff-type-1 span {
    background: #faebd8;
    color: #6b4714;
}

.position-tag.staff-type-2 span {
    background: #f8eaea;
    color: #611a1a;
}

.position-tag.staff-type-3 span {
    background: #ddebef;
    color: #113a49;
}

.position-tag.staff-type-4 span {
    background: #f1e6f7;
    color: #3d1a50;
}

.toggle-availibility .single-availibility {
    border: 1px solid #e4f0f9;
    border-radius: 3px;
}

.toggle-availibility .single-availibility .schedule-heading .schedule-mob-head {
    background-color: #e4f0f9;
    text-align: left;
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #25506a;
    font-weight: 500;
    font-family: "Poppins";
}

.toggle-availibility .single-availibility .schedule-heading .schedule-mob-head::after {
    top: 15px;
}

.toggle-availibility .single-availibility .description {
    padding: 10px;
    background-color: #f6fafd;
}

/***Birthday Page***/

.birthday-list .birthday-row .birthday-wrap {
    border-radius: 6px;
    box-shadow: 0 0 16px #e6e6f4;
    background-color: #ffffff;
    border: 1px solid #f6f6f6;
    margin: 0 0 30px 0;
    padding: 15px;
    position: relative;
    -ms-flex-align: center!important;
    align-items: center!important;
}

.contact-list .contact-wrap .img-wrap {
    margin: 0 auto 10px;
}

.contact-list .img-wrap {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background-color: #464646;
    overflow: hidden;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.contact-list .img-wrap img {
    width: 100%;
}

.birthday-list .birthday-row .birthday-wrap .media-body h4 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0 0 0 0;
}

.birthday-list .birthday-row .birthday-wrap .media-body p {
    font-size: 13px;
    line-height: 1.3;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 8px 0;
}

.birthday-list .birthday-row .birthday-wrap .media-body .birth-days {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
}

.birthday-list .birthday-row .today-birth .birthday-wrap .media-body .birth-days {
    color: #d26d00;
}

.birthday-list .birthday-row .today-birth .birthday-wrap {
    border-color: #d36d00;
}

.birthday-list .birthday-row .today-birth .birthday-wrap .birthday-flag {
    position: absolute;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #d26d00;
    bottom: 0;
    right: 10px;
    font-size: 11px;
    letter-spacing: 0px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    padding: 2px 5px;
}

.contact-list .col:nth-child(5n+1) .img-wrap {
    background: #96c463;
}

.contact-list .img-wrap h5 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    text-align: center;
}

.contact-list .col:nth-child(5n+2) .img-wrap {
    background: #e4933b;
}

.contact-list .col:nth-child(5n+3) .img-wrap {
    background: #737ec3;
}

.contact-list .col:nth-child(5n+4) .img-wrap {
    background: #a06aae;
}

.contact-list .col:nth-child(5n+5) .img-wrap {
    background: #d34a4a;
}

.iwork-pages .what-is.master-whats {
    background-color: #f4f8ef;
    border: 1px solid #d2dbc6;
}

.iwork-pages .what-is.master-whats .pickup-text p {
    margin: 0;
    font-size: 14px;
    line-height: 19px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    max-width: 1280px;
}

.iwork-pages .what-is.master-whats .pickup-text p strong {
    font-weight: 500;
}

.iwork-pages .what-is.master-whats .img-wrap {
    background: #8fc059;
}

.caledar-wrap th.calendar-month {
    text-align: center;
    padding: 0 0 10px 0;
}

.caledar-wrap th.calendar-month b {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 1.5;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .what-is .media-body .pickup-text p strong {
    font-weight: 500;
}

.iwork-pages .what-is .media-body .pickup-text .indiacation {
    font-size: 13px;
    line-height: 21px;
    color: #a93b3b;
    font-weight: 500;
    font-family: "Poppins";
}

.myschedule-page .what-is .media-body .pickup-text .indiacation span {
    display: block;
}

.caledar-wrap td.day-of-week small b {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins";
}

.caledar-wrap td.cal-day-box {
    border: 1px solid #ececec;
}

.caledar-wrap td.cal-day-box .pos-schedule {
    position: relative;
}

.caledar-wrap td.cal-day-box small.day-cal {
    width: 42px;
    height: 42px;
    border-radius: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
}

.caledar-wrap td.cal-day-box .pos-schedule {
    position: relative;
    padding: 30px 0;
}

.caledar-wrap .cal-day-box-left {
    /* border: 1px solid #ececec; */
}

.caledar-wrap td.cal-day-box .pos-schedule .bottom-after-date {
    position: absolute;
    bottom: 0;
    text-align: center;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.caledar-wrap td.cal-day-box .pos-schedule .bottom-after-date p.shift-name {
    margin: 0;
    font-size: 12px;
    line-height: 14px;
    color: #0b0b0b;
    font-weight: 400;
    font-family: "Poppins";
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.caledar-wrap td.cal-day-box .pos-schedule .bottom-after-date .tool-custom {
    font-size: 12px;
    line-height: 19px;
    color: #0b0b0b;
    font-weight: 400;
    font-family: "Poppins";
}

.caledar-wrap td.cal-day-box .pos-schedule .bottom-after-date .outer-position {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #564115;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
}

div[id*=tOoL] td[bgcolor="#FFFFCC"] {
    background-color: transparent;
    padding: 0 !important;
}

div[id*=tOoL] td[bgcolor="#FFFFCC"] font {
    display: inline-block;
    width: 100%;
    border-radius: 4px;
    background-color: #e2ecd8;
    overflow: hidden;
    padding: 10px;
    border-left: 4px solid #8fc059;
}

div[id*=tOoL] table {
    background: transparent !important;
}

div[id*=tOoL] td[bgcolor="#FFFFCC"] font .cust-tool h6 {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.3;
    color: #0b0b0b;
    font-weight: 500;
    font-family: "Poppins" !important;
    margin: 0 0 3px 0;
}

div[id*=tOoL] td[bgcolor="#FFFFCC"] font .cust-tool span.time {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 1.2;
    color: #606956;
    font-weight: 400;
    font-family: "Poppins";
    display: block;
    text-align: left;
    margin: 0 0 5px 0;
    padding: 0 0 5px 0;
    border-bottom: 1px solid #d1d1d1;
}

div[id*=tOoL] td[bgcolor="#FFFFCC"] font .cust-tool span, div[id*=tOoL] td[bgcolor="#FFFFCC"] font .cust-tool p {
    font-size: 12px;
    line-height: 1.2;
    color: #5b674e;
    font-weight: 400;
    font-family: "Poppins";
    display: block;
    margin: 0 0 4px 0;
}

.caledar-wrap td.cal-day-box .pos-schedule img {
    position: absolute;
    top: 10px;
    left: 10px;
}

.mobile-toggle-time .single-schedule .schedule-description {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 20px;
}

.mobile-toggle-time .single-schedule .schedule-description .icon-wrap img {
    max-width: 17px;
}

.mobile-toggle-time .single-schedule .schedule-description p {
    font-size: 12px;
    line-height: 1.4;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.mobile-toggle-time .single-schedule .schedule-description p strong {
    font-size: 13px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
}

.mobile-toggle-time .single-schedule .schedule-description .desc-media:not(:last-of-type) {
    margin: 0px 0 15px 0;
}

.mobile-toggle-time .single-schedule .schedule-description .desc-media .media-body {
    padding: 0 0 0 10px;
}

.mobile-toggle-time .single-schedule .schedule-description .desc-media.time p strong {
    color: #8fc059;
}

.iwork-pages .what-is.master-whats .img-wrap img {
    max-width: 15px;
}

.site-header .navbar-nav .nav-item .dropdown-item.active-drop {
    color: #039ddb;
}

.caledar-wrap td.cal-day-box .pos-schedule .bottom-after-date:not(:first-of-type) {
    top: 0;
    bottom: inherit;
}

div[id*=tOoL] td[bgcolor="#FFFFCC"] font .cust-tool:not(:last-of-type) {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #b8b8b8;
}

.caledar-wrap td.cal-day-box .pos-schedule.highlight-day7 .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day4 .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day1 .day-cal {
    /* background: #edab0c; */
    color: #fff;
}

.caledar-wrap td.cal-day-box .pos-schedule.highlight-event .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day2 .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day5 .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day8 .day-cal {
    background: #2e9fe1;
    color: #fff;
}

.caledar-wrap td.cal-day-box .pos-schedule.highlight-day3 .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day6 .day-cal, .caledar-wrap td.cal-day-box .pos-schedule.highlight-day9 .day-cal {
    /* background: #8ac24d; */
    color: #fff;
}

.caledar-wrap td.cal-day-box small.day-cal.requested_day_off, .caledar-wrap td.cal-day-box small.day-cal.off-day {
    background: red;
    color: #fff;
}

.caledar-wrap td.cal-day-box small.day-cal.requested_day_off [color="red"], .caledar-wrap td.cal-day-box small.day-cal.off-day [color="red"] {
    color: #fff;
}

.iwork-pages .what-is .img-wrap img {
    max-width: 15px;
}

.ui-datepicker {
    font-size: 14px !important;
    padding: 0;
    border: none;
    border-radius: 3px;
    background-color: #ffffff;
    padding: 7px;
    box-shadow: 0 0 16px #e6e6f4;
    font-family: Poppins;
}

.ui-datepicker .ui-datepicker-header {
    padding: 0;
    background: transparent;
    border: none;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-title span {
    font-weight: 500;
}

.ui-datepicker .ui-datepicker-header .ui-datepicker-next, .ui-datepicker .ui-datepicker-header .ui-datepicker-prev {
    border: none;
}

.ui-datepicker .ui-datepicker-calendar {
    margin: 0;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default {
    background: transparent;
    text-align: center;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.ui-datepicker .ui-datepicker-calendar .ui-datepicker-today a {
    background: #90c059;
    color: #fff;
}

.ui-datepicker .ui-datepicker-calendar .ui-state-default.ui-state-active {
    background: #333333;
    color: #fff;
}

.ui-datepicker .ui-datepicker-calendar thead th span {
    font-weight: 500;
}

.site-header .navbar-nav .nav-item .dropdown-menu li:hover {
    background: transparent;
}

.iwork-pages .action {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: #dfe5e8;
    display: inline-block;
    margin: 0 5px 0 0;
    background-repeat: no-repeat;
    transition: background-image .2s;
    background-size: 14px;
    background-position: center center;
}

.iwork-pages .action.complete {
    background-image: url(../images/icons/action-tick.png);
    background-size: 14px;
    background-position: center center;
}

.iwork-pages .iwork-table tbody td span.completed, .mobile-toggle-time .single-schedule .schedule-description .action-wrap span.completed {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #50a501;
    font-weight: 400;
    font-family: "Poppins";
    position: relative;
    padding: 5px 0 5px 27px;
}

.iwork-pages .iwork-table tbody td span.completed::before, .mobile-toggle-time .single-schedule .schedule-description .action-wrap span.completed::before {
    content: "";
    width: 21px;
    height: 21px;
    border-radius: 11px;
    background-color: #50a501;
    display: inline-block;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/icons/white-tick.png);
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-toggle-time .single-schedule .schedule-description .table-media {
    margin: 0px 0 15px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #dddde4;
}

.mobile-toggle-time .single-schedule .schedule-description .action-wrap {
    border-top: 1px solid #dddde4;
    padding-top: 10px;
}

.mobile-toggle-time .single-schedule .schedule-description .action-wrap a.complete.action {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: #dfe5e8;
    background-repeat: no-repeat;
    transition: background-image .2s;
    margin: 0 auto;
    display: block;
    background-image: url(../images/icons/action-tick.png);
    background-size: 14px;
    background-position: center center;
}

/**Calendar Popup**/

.calendarPopup .modal-dialog button.close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #8fc059;
    opacity: 1;
    color: #fff;
    font-weight: 300;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 24px;
    text-shadow: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.calendarPopup .modal-dialog .modal-content {
    border: none;
    /* margin: 10px; */
}

.calendarPopup .modal-dialog .modal-content .custom-schedule {
    border-radius: 4px;
    background-color: #e2ecd8;
    padding: 15px;
    border-left: 4px solid #8fc059;
}

.calendarPopup .modal-dialog .modal-content .custom-schedule:not(:last-of-type) {
    margin: 0 0 20px 0;
}

.calendarPopup .modal-dialog .modal-content .custom-schedule .heading {
    border-bottom: 1px solid #bdc8b1;
    margin: 0 0 10px 0;
}

.calendarPopup .modal-dialog .modal-content .custom-schedule .heading h4 {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #0b0b0b;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.calendarPopup .modal-dialog .modal-content .custom-schedule .heading p {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #606956;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.calendarPopup .modal-dialog .modal-content .custom-schedule .position {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #385617;
    font-weight: 500;
    font-family: "Poppins";
}

.calendarPopup .modal-dialog .modal-content .custom-schedule p {
    font-size: 12px;
    line-height: 1.4;
    color: #5b674e;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 10px 0;
}

.calendarPopup .modal-dialog .modal-content .custom-schedule p:last-child {
    margin: 0;
}

.calendarPopup .modal-body {
    background: #fff;
    border-radius: 5px;
}

.caledar-wrap td.cal-day-box div[class*="highlight-day"] .day-cal {
    cursor: pointer;
}

.caledar-wrap td.cal-day-box {
    height: auto;
}

.todo-list-page .section-heading .form-inline #datepicker, .iwork-pages .form-control.calendar, .iwork-pages .form-control.hasDatepicker, .iwork-pages #datepicker {
    background-image: url(../images/icons/calendar-picker.png);
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 17px;
    padding-right: 40px;
}

.todo-details-page .todo-wrap .custom-card {
    padding: 15px;
    max-width: 460px;
    width: 100%;
}

.todo-details-page .todo-wrap p {
    font-size: 13px;
    line-height: 1.4;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 0 0;
}

.todo-details-page .todo-wrap p strong {
    font-size: 14px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
}

.todo-details-page .button-wrap {
    text-align: center;
    padding: 15px 0 0 0;
}

.calenndar-wrap table td:not(.the-day)>center a small {
    color: #fff;
}

.site-header .navbar-nav .nav-item .dropdown-menu.showclass {
    display: block;
}

/**Recurring Page**/

.alert-button {
    background-color: #f5d0d0;
    border-radius: 3px;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    padding: 10px 24px;
    text-align: center;
    border: 2px solid #f5d0d0;
    transition: .2s;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
    width: 100%;
    max-width: 240px;
    color: #5a0e0e;
    text-decoration: none;
    text-transform: capitalize;
}

.alert-button:hover, .alert-button:focus, .alert-button:active {
    text-decoration: none;
    background: #333333;
    color: #fff;
    border-color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.manage-reccuring-page .media-text .alert-button {
    font-size: 16px;
    padding: 10px 45px;
}

.iwork-pages .collapse-title {
    margin: 0 0 0px 0;
}

.iwork-pages .collapse-title .collapse-button, .iwork-pages .collapse-title h4 {
    width: 100%;
    text-align: left;
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #000000;
    font-weight: 500;
    font-family: "Poppins";
    border: none;
    padding: 10px 25px 10px 0;
    border-radius: 0;
    outline: none !important;
    box-shadow: none !important;
}

.iwork-pages .collapse-title .collapse-button img, .iwork-pages .collapse-title h4 img {
    max-width: 16px;
    margin: 0 14px 0 0;
}

.iwork-pages .section-heading h5 {
    font-size: 15px;
}

.iwork-pages .collapse-title .collapse-button::after {
    top: 13px;
}

.iwork-pages .collaspe-inner {
    border-top: 1px solid #b8d2e1;
    padding: 15px 0 0 0;
}

.manage-reccuring-page .weekdays {
    margin: 0;
}

.manage-reccuring-page .weekdays .form-check {
    margin: 0 35px 0 0;
}

.iwork-pages .form-check .form-check-label {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #666666;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .section-heading .select-day select {
    background-color: #f0f0f0;
    border: 1px solid #e6e6e6;
}

.iwork-pages .action.edit {
    background-image: url(../images/icons/action-edit.png);
}

.iwork-pages .action.delete {
    background-image: url(../images/icons/action-delete.png);
    background-size: 11px;
}

.iwork-pages .action.pause {
    background-image: url(../images/icons/action-pause.png);
    background-size: 11px;
}

.iwork-pages .iwork-table.align-center td {
    vertical-align: middle;
}

.mobile-toggle-time .single-schedule .schedule-description .action {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: #dfe5e8;
    display: inline-block;
    margin: 0 2px;
    background-repeat: no-repeat;
    transition: background-image .2s;
    background-size: 14px;
    background-position: center center;
}

.mobile-toggle-time .single-schedule .schedule-description .action.edit {
    background-image: url(../images/icons/action-edit.png);
}

.mobile-toggle-time .single-schedule .schedule-description .action.delete {
    background-image: url(../images/icons/action-delete.png);
    background-size: 11px;
}

.mobile-toggle-time .single-schedule .schedule-description .action.pause {
    background-image: url(../images/icons/action-pause.png);
    background-size: 11px;
}

.view-positions .contact-list .contact-wrap .contact-head {
    padding: 0;
    margin: 0;
    border: none;
}

.iwork-pages .section-heading h4 .day-name {
    color: #039ddb;
}

.iwork-pages .form-control[readonly] {
    background-color: #f9f9f9;
    border: 1px solid #cfcfcf;
    cursor: not-allowed;
}

.iwork-pages .collapse-title h4 {
    margin: 0;
}

.iwork-pages .form-group>label {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages fieldset:not(:last-of-type) {
    border-bottom: 1px solid #e6e6e6;
    margin: 0 0 14px 0;
}

.iwork-pages .form-group a {
    outline: none;
    box-shadow: none;
}

.popover {
    font-family: "Poppins";
    font-size: 13px;
    text-align: center;
}

.master-table-day {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    filter: drop-shadow(0 0 35px #e6e6f4);
    background-color: #ffffff;
    border: 1px solid #f6f6f6;
    padding: 15px 20px;
    position: relative;
    z-index: -1;
}

.master-table-day p {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
    color: #8fc059;
    font-weight: 500;
    font-family: "Poppins";
}

.iwork-pages .collapse-title h4 {
    margin: 0;
    padding-top: 0;
    padding-right: 0;
}

.custom-form-row {
    margin-right: -7px !important;
    margin-left: -7px !important;
}

.custom-form-row .col, .custom-form-row>[class*=col-] {
    padding-left: 7px !important;
    padding-right: 7px !important;
}

.iwork-pages .what-is.master-whats.alert-danger {
    background: #f5d0d0;
    border-color: #f77e7e;
}

.iwork-pages .what-is.master-whats.alert-danger .img-wrap {
    background: #fd5a5a;
}

.iwork-pages .table-like-div.heading-part .heading-th {
    border-bottom: 2px solid #dddde4;
    margin-bottom: 1rem!important;
    padding-bottom: 0.6rem;
}

.iwork-pages .table-like-div.heading-part .heading-th h5 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 1.3;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
    text-transform: uppercase;
}

.iwork-pages .table-like-div p {
    font-size: 13px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.iwork-pages .table-like-div .alert-button {
    max-width: inherit;
    width: auto;
    margin-left: 10px;
    padding: 12px 14px;
    font-size: 14px;
}

.manage-employees .collapse-title {
    border-bottom: 1px solid #b8d2e1;
    margin: 0 0 15px 0;
}

.manage-employees .outstanding ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-block;
    width: 100%;
}

.manage-employees .outstanding ul li {
    display: inline-block;
    border-radius: 3px;
    background-color: #f6f6fb;
    border: 1px solid #e6e7ee;
    padding: 2px;
    float: left;
    margin: 0 5px 5px 0;
}

.manage-employees .outstanding ul li span {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #515258;
    font-weight: 400;
    font-family: "Poppins";
    display: inline-block;
    margin: 8px 10px 0px 10px;
    /* height: 100%; */
    float: left;
}

.manage-employees .outstanding ul li a {
    width: 33px;
    height: 33px;
    border-radius: 3px;
    background-color: #e6e7ee;
    border: 1px solid #e6e7ee;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.manage-employees .outstanding ul li a img {
    max-width: 100px;
    width: 14px;
}

/**Setup Access**/

.iwork-pages .what-is .img-wrap span {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
}

.setup-access-level .heading-th .delete {
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: #f4f8ef;
}

.setup-access-level .heading-th .delete img {
    max-width: 100%;
    width: 15px;
}

.setup-access-level .access-toggle {
    width: 100%;
    background: transparent !important;
    text-align: left;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f !important;
    padding: 9px 0;
    font-weight: 500;
    font-family: "Poppins";
    border: none;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    margin: 0 0 0px 0;
}

.setup-access-level .access-toggle::after {
    background-size: 9px;
    top: 13px;
}

.setup-access-level .table-like-content h4 {
    font-size: 16px;
    line-height: 1.4;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0 0 15px 0;
}

.setup-access-level .table-like-content .form-check .form-check-label {
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
}

.import-users {}

.import-users .import-contact {
    border-radius: 4px;
    background-color: #f4f8ef;
    border: 1px solid #d2dbc6;
    padding: 20px;
}

.iwork-pages .my-file {
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #e6e6e6;
    padding: 9px;
    margin: 0 0 0 0;
    overflow: hidden;
}

.iwork-pages .my-file input {
    line-height: 1.7;
    font-size: 14px;
}

.import-users .instruction-list .instruction-wrap {
    border-radius: 4px;
    background-color: #e9f1f5;
    border: 1px solid #bacad2;
    width: 100%;
    max-width: 280px;
    margin: 0 15px 0 0;
    padding: 6px;
}

.import-users .instruction-list .instruction-wrap.down-inst {
    background-color: #f5f3e9;
    border: 1px solid #d2c7ba;
}

.import-users .instruction-list .instruction-wrap .text-wrap p {
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.import-users .instruction-list .instruction-wrap .icon-wrap {
    margin: 0 0 0px 0;
    padding: 5px 0 10px 0;
    border-bottom: 1px solid #d5e0e6;
}

.import-users .instruction-list .instruction-wrap .icon-wrap img {
    max-height: 30px;
    width: auto;
}

.import-users .instruction-list .instruction-wrap .text-wrap {
    padding: 7px 0 0 0;
}

.import-users .instruction-list .instruction-wrap .text-wrap img {
    max-width: 16px;
}

.iwork-pages .action.disable, .mobile-toggle-time .single-schedule .schedule-description .action.disable {
    background-image: url(../images/icons/action-stop.png);
}

.iwork-pages .action.play, .mobile-toggle-time .single-schedule .schedule-description .action.play {
    background-image: url(../images/icons/action-play.png);
}

.iwork-pages .action.bi, .mobile-toggle-time .single-schedule .schedule-description .action.bi {
    font-size: 22;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #6d7d83;
}

.iwork-pages .action.bi.disabled, .mobile-toggle-time .single-schedule .schedule-description .action.bi.disabled {
    color: #b2babc;
}

.iwork-pages .action-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.iwork-pages .form-group>label .label-link {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 1.8;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
    text-decoration: underline;
}

.iwork-pages .switch-button {
    width: 100px;
    border-radius: 14px;
    background-color: #dfe5e8;
    display: inline-block;
    font-size: 12px;
    line-height: 24px;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    padding: 2px 15px;
    position: relative;
    text-decoration: none;
}

.iwork-pages .switch-button.off::before {
    content: "off";
    width: 21px;
    height: 21px;
    border-radius: 10px;
    background-color: #6d7d83;
    display: inline-block;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 8px;
    line-height: 21px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    text-transform: uppercase;
}

.iwork-pages .switch-button.on {
    background-color: #dfefce;
    padding-left: 32px;
    color: #477119;
}

.iwork-pages .switch-button.on::before {
    content: "On";
    width: 21px;
    height: 21px;
    border-radius: 10px;
    background-color: #8fc059;
    display: inline-block;
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 8px;
    line-height: 21px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    text-align: center;
    text-transform: uppercase;
}

.new-card-mobile {
    border-radius: 4px;
    padding: 20px 30px 10px 30px;
    background-color: #f4f8ef;
    border: 1px solid #d2dbc6;
}

.iwork-pages .section-heading h5 {
    font-size: 19px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.eligibility-page .row-table-like-wrap .form-check label {
    font-size: 14px;
    color: #333333;
}

.eligibility-page .row-table-like-wrap .form-check input {
    margin-top: 7px;
}

.eligibility-page .row-table-like-wrap select.form-control {
    height: 34px;
    font-size: 13px;
    color: #333;
    padding-top: 5px;
    padding-bottom: 5px;
}

.eligibility-page .table-like-button {
    margin: 20px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #e6e6e6;
}

.eligibility-page .table-like-button select.form-control {
    width: 100%;
    max-width: 370px;
}

.manage-reccuring-page .one-time-button .alert-button, .split-master-schedule .one-time-button .alert-button, .payrate-page .one-time-button .alert-button {
    max-width: inherit;
    width: auto;
}

.payrate-page.manage-employees .collapse-title {
    border: none;
    margin: 0;
}

.add-location-page .location-list .table-like-div:not(:last-of-type) {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #ececec;
}

.add-location-page .location-list .table-like-div .table-like-div-group.eligibiliy {
    margin: 0 0 10px 0;
}

.table-like-div .table-like-div-group p {
    font-size: 13px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

.add-location-page .location-list .table-like-div h5 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.add-location-page .location-list .table-like-div p {
    font-size: 13px;
    line-height: 1.5;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
}

.add-location-page .location-list .table-like-div .action {
    width: 35px;
    height: 35px;
    background-size: 11px;
}

/**polls Page**/

.polls-page .polls-question:not(:last-of-type) {
    margin: 0 0 20px 0;
}

.polls-page .polls-question .poll-question-part {
    padding: 10px;
    border-radius: 3px;
    background-color: #f4f4f4;
    border: 1px solid #e9e9e9;
}

.polls-page .polls-question .poll-question-part .question-part .action-wrap .action {
    vertical-align: middle;
    height: 30px;
    width: 30px;
}

.polls-page .polls-question .poll-question-part .question-part .media-body h5 {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.polls-page .polls-question .action-part .delete {
    width: 29px;
    height: 29px;
    background-size: 9px;
}

.polls-page .polls-question .answers-body {
    padding: 4px 0 0 0;
}

.polls-page .polls-question .answers-body .answers-wrap {
    margin: 0 -3px 10px;
}

.polls-page .polls-question .answers-body .answers-wrap .ans-list {
    width: calc(33.33% - 6px);
    margin: 3px;
    padding: 8px;
    border-radius: 3px;
    background-color: #f9f9f9;
    border: 1px solid #cacccd;
}

.polls-page .polls-question .answers-body .answers-wrap .ans-list .question-action p {
    margin: 0;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
}

.polls-page .polls-question .answers-body .answers-wrap .ans-list .question-action .action.edit {
    vertical-align: middle;
    margin: 0 0 0 6px;
    width: 20px;
    height: 20px;
    background-color: transparent;
}

.polls-page .polls-question .answers-body .answers-wrap .ans-list .option p {
    margin: 0;
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
}

.add-button {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    background-color: #4e4e4e;
    border: none;
    font-size: 30px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 600;
}

.polls-page .polls-question .poll-question-part .question-part .media-body h5 a {
    color: inherit;
    text-decoration: underline;
}

.iwork-pages .information-wrap {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 15px;
}

.iwork-pages .information-wrap .img-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffdec5;
}

.iwork-pages .information-wrap h4 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0 0 5px;
}

.iwork-pages .information-wrap p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 0;
}

.quick-links-page .quick-links-wrap-outer .form-check .form-check-label a {
    color: inherit;
}

.quick-links-page .quick-links-wrap-outer .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .content h4 a {
    color: inherit;
}

.myschedule-page .info-wrap.restricted-approval {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 25px;
    border: none;
}

.myschedule-page .info-wrap.restricted-approval .img-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background-color: #ffdec5;
}

.iwork-pages.user-access .table-like-div p {
    word-break: break-word;
    padding-right: 5px;
}

.site-header .side-dropdown .media .img-wrap h5 {
    color: #fff;
    margin: 0;
    background: #e4933b;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.iwork-pages .what-is.master-whats.green {
    border-color: #8fc059;
}

.website-tpl-page .collapse-title .collapse-button {
    padding: 14px 35px 14px 15px;
}

.website-tpl-page .collapse-title .collapse-button::after {
    top: 19px;
    right: 15px;
}

.website-tpl-page .heading-part h4 {
    font-size: 17px;
    line-height: 1.4;
    color: #8fc059;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.website-tpl-page .heading-part {
    padding: 14px 20px;
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
}

.website-tpl-page .heading-part .action-wrapper .template-action {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-position: center;
    background-size: 14px;
    background-repeat: no-repeat;
    margin: 0 0 0 4px;
    float: left;
}

.website-tpl-page .heading-part .action-wrapper .template-action.delete {
    background-image: url(../images/icons/action-delete.png);
    background-size: 11px;
}

.website-tpl-page .heading-part .action-wrapper .template-action.copy {
    background-image: url(../images/icons/template-copy.png);
}

.website-tpl-page .heading-part .action-wrapper .template-action.rename {
    background-image: url(../images/icons/template-rename.png);
}

.website-tpl-page .heading-part .action-wrapper .template-action.clear {
    background-image: url(../images/icons/template-clear-staff.png);
}

.website-tpl-page .iwork-table {
    min-width: 1600px;
}

.todo-categories .table-like-div.heading-part .heading-th {
    border-bottom: 1px solid #dddde4;
}

.todo-categories .table-like-div .media {
    -ms-flex-align: center;
    align-items: center;
}

.todo-categories .table-like-div .media:not(:last-of-type) {
    margin: 0px 0 10px 0;
}

.todo-categories .table-like-div.heading-part {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.who-submitted.iwork-pages .EmpUser .iwork-table {
    min-width: inherit;
    width: 100%;
}

/**view availibility**/

/* .view-availibility-page .my-availibility-side {
    border-left: 1px solid #dedede;
} */

.view-availibility-page .my-availibility-side .form-control {
    background-color: #f5f5f5;
}

.view-availibility-page .avail-list .availlist .schedule span.checkmark {
    visibility: visible;
    font-family: "Font Awesome Free";
    font-weight: 900;
    content: "\f057";
    /* 
    ? removed this line so there isnt a grey checkmark when the availibility is not checked
    background-image: url(../images/icons/check-grey.png);
     */

}

.view-availibility-page .avail-list .availlist .schedule span.checkmark::before {
    transition: all .075s ease-in-out;
}


.view-availibility-page .avail-list .availlist .schedule span.checkmark::before {
    transition: all .075s ease-in-out;
}

/*
? removed this style so we can use a pseudo class below
.view-availibility-page .avail-list .availlist .schedule input:checked~.checkmark {
    background-image: url(../images/icons/check-green.png);
}
*/

.view-availibility-page .avail-list .availlist .schedule input:checked~.checkmark::before {
    /* FA 5 psuedocode for checkmark-circle */
    content: "\f058" !important;
    color: #89b25a !important;
    transform: scale(1.5);

}

.view-availibility-page .new-card-mobile {
    padding: 25px;
}

.view-availibility-page .avail-list .availlist .schedule input:checked {
    border: 1px solid #98c566;
    box-shadow: 0 2px 1px #CCC;
}
.view-availibility-page .avail-list .availlist .schedule input:checked:hover {
    border: 1px solid #688844;
}


.view-availibility-page .avail-list .availlist .schedule input {
    visibility: visible;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #eeeef1;
    outline: none;
    cursor: pointer;
    border-radius: 24px;
}
.view-availibility-page .avail-list .availlist .schedule input:hover {
    box-shadow: 0 4px 4px #eeeef1;
    border: 1px solid #d6d6d6;
    transition: box-shadow 0.2s ease-in-out;
}


.view-availibility-page .avail-list .availlist .schedule input::-ms-check {
    opacity: 0;
}

.view-availibility-page .avail-list .availlist .schedule {
    padding: 9px 30px 9px 10px;
}

.avail-list .availlist label.schedule {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.view-availibility-page .check-all .form-check-label strong {
    font-weight: 500;
    font-size: 15px;
}

.view-availibility-page .check-all input {
    width: 19px;
    height: 19px;
    margin: 3px 0 0 -24px;
}

.whos-available-page .form-group .calendar th, .whos-available-page .form-group .calendar td {
    text-align: center;
    padding: 7px;
    border: 1px solid #f1efef;
}

.whos-available-page .form-group .calendar input {
    margin: 7px 2px 0 0;
    float: left;
}

.file-archieve .file-type {
    -ms-flex-align: center;
    align-items: center;
}

.file-archieve .file-type .media-body {
    padding: 0 0 0 5px;
}

.file-archieve .file-type .img-wrap {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    background-color: #e8e8e8 !important;
    border: 1px solid #1b1b1b !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

.file-archieve .file-type .img-wrap img {
    width: auto;
}

.file-archieve .file-type.pdf .img-wrap {
    background-color: #ead2d2 !important;
    border-color: #d25556 !important;
}

.file-archieve .file-type.png .img-wrap {
    background-color: #88c057 !important;
    border-color: #659c35 !important;
}

.file-archieve .file-type.doc .img-wrap {
    background-color: rgba(0, 150, 230, .12) !important;
    border-color: #0096e6 !important;
}

.file-archieve .file-type.jpg .img-wrap {
    background-color: rgba(0, 255, 196, .19) !important;
    border-color: #00ffc4 !important;
}

.modal-header button span {
    background-color: #d2d0d0;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-block;
    /* line-height: 0.8; */
}

.file-archieve .iwork-table {
    min-width: 1100px;
}

.everyone-shift .shift-wrap .img-wrap .icon-wrap h5 {
    color: #fff;
}

.everyone-shift .shift-wrap .img-wrap .icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e4933b;
}

.everyone-shift .shift-wrap h4 a {
    color: inherit;
}

.iwork-pages .check-calendar td label small a {
    color: inherit;
    text-decoration: underline;
}

.master-table-day.create-schedule {
    z-index: 1;
}

.current-view select.form-control {
    height: 49px;
    border-radius: 4px;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.file-not-found {
    text-align: center;
    max-width: 400px;
    margin: auto;
    width: 100%;
    padding: 25px 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .10);
}

.file-not-found p {
    margin: 0;
}

@media (min-width: 992px) {
    .manage-employees .new-card {
        border-radius: 4px;
        padding: 20px 30px 10px 30px;
        background-color: #f4f8ef;
        border: 1px solid #d2dbc6;
    }
    .manage-reccuring-page .button-wrap.one-time-button .green-button {
        width: 100%;
        max-width: 280px;
    }
    /**Tabse for Desktop**/
    .iwork-pages .tabs-switch-design .nav-tabs {
        border: none;
    }
    .iwork-pages .tabs-switch-design .nav-tabs .nav-link {
        box-shadow: 0 0px 35px rgb(230 230 244);
        background-color: #fcfcfe;
        border: 1px solid #fcfcfe;
        min-width: 250px;
        text-align: center;
        padding: 15px 10px;
        font-size: 17px;
        line-height: 1.4;
        color: #999999;
        font-weight: 400;
        font-family: "Poppins";
        margin: 0 8px 0 0;
    }
    .iwork-pages .tabs-switch-design .nav-tabs .nav-link.active {
        background-color: #FFF;
        color: #039ddb;
    }
    .iwork-pages .tabs-switch-design .tab-content {
        border-radius: 6px;
        box-shadow: 0 10px 35px rgba(230, 230, 244, .33);
        background-color: #ffffff;
        padding: 25px;
        position: relative;
    }
}

/*  // Extra large devices (large desktops, 1200px and up) */

@media (max-width: 1499.98px) {
    .calenndar-wrap table .day-title, .my-availibility .my-availibility-side .custom-card table.calendar .dayofweek, .iwork-pages .check-calendar .dayofweek {
        font-size: 15px;
        padding: 10px 0px 10px 0px;
    }
    .calenndar-wrap table td center, .my-availibility .my-availibility-side .custom-card table.calendar td label, .iwork-pages .check-calendar td label {
        width: 35px;
        height: 35px;
        border-radius: 50%;
    }
    .calenndar-wrap table td center a, .calenndar-wrap table td center small {
        font-size: 14px;
    }
    .calenndar-wrap table small.calen-title {
        font-size: 20px;
    }
    .contact-list .custom-col {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .myschedule-page .month-table .table-wrap tbody td p {
        max-width: 340px;
    }
    .site-header .navbar-nav .nav-item .dropdown-item {
        font-size: 14px;
    }
    .site-header .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    }
}

/*  // Extra large devices (large desktops, 1200px and up) */

@media (max-width: 1199.98px) {
    .site-header .side-dropdown .media .media-body {
        display: none;
    }
    .site-header .side-dropdown .dropdown-toggle::after {
        display: none;
    }
    .myschedule-page .month-table .table-wrap tbody td p, .pickup-page .iwork-table tbody td p {
        max-width: 340px;
    }
    .timecard-page .button-wrap input {
        min-width: 210px;
    }
    .iwork-pages .what-is.master-whats .pickup-text p {
        max-width: 620px;
    }
    .section-main {
        /* min-height: calc(100vh - 135px); */
    }
    .import-users .instruction-list .instruction-wrap {
        width: 100%;
        max-width: 100%;
        margin: 0 0px 15px 0;
    }
}

/* // Large devices (desktops, 992px and up) */

@media (max-width: 991.98px) {
    .view-availibility-page .new-card-mobile {
        padding: 15px;
    }
    .website-tpl-page .heading-part {
        padding: 10px 15px;
        background: #ecefe6;
    }
    .website-tpl-page .heading-part h4 {
        font-size: 15px;
    }
    .website-tpl-page .new-tpl, .website-tpl-page .existing-tpl {
        border-radius: 6px;
        box-shadow: 0 0 35px #e6e6f4;
        background-color: #ffffff;
    }
    .pickup-page.iwork-pages .pickup-shift-wrap {
        padding: 0;
        background: transparent;
        box-shadow: none;
    }
    .pickup-page .plus-minus {
        background-color: #f4f8ef;
        padding: 15px;
    }
    .pickup-page .plus-minus strong {
        font-size: 14px;
    }
    .myschedule-page .info-wrap.custom-in-mobile {
        border: 1px solid #ffdec5 !important;
        margin: 70px 0 0 0;
        position: relative;
        padding: 35px 15px 15px 15px;
    }
    .myschedule-page .info-wrap.custom-in-mobile .media-body {
        padding: 0;
        text-align: center;
    }
    .myschedule-page .info-wrap.custom-in-mobile .img-wrap {
        position: absolute;
        top: -25px;
        left: 50%;
        width: 50px !important;
        height: 50px !important;
        transform: translateX(-50%);
    }
    .myschedule-page .info-wrap.custom-in-mobile .media-body p {
        font-size: 15px;
        line-height: 1.4;
    }
    .calenndar-wrap .heading-mob .btn {
        border: none;
        margin: 0;
    }
    .polls-page .polls-question .action-part .collapse-button {
        outline: none;
        box-shadow: none;
    }
    .iwork-pages .no-card-mobile {
        background: transparent;
        box-shadow: none;
        padding: 0 !important;
    }
    .polls-page .polls-question:not(:last-of-type) {
        margin: 0 0 10px 0;
    }
    .polls-page .polls-question .answers-body {
        padding: 10px 10px 10px 10px;
        border: 1px solid #e9e9e9;
        border-top: none;
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }
    .polls-page .polls-question .answers-body .actions-wrap {
        margin: 10px 0 0 0;
        padding: 10px 0 0 0;
        border-top: 1px solid #e9e9e9;
    }
    .polls-page .polls-question .answers-body .actions-wrap .switch-button {
        height: auto;
    }
    .polls-page .polls-question .answers-body .actions-wrap a.delete.action {
        width: 29px;
        height: 29px;
        background-size: 9px;
        margin: 0;
    }
    .eligibility-page .row-table-like-wrap .table-like-div-group h5 {
        font-size: 13px;
        letter-spacing: 0px;
        line-height: 1.3;
        color: #19343f;
        font-weight: 500;
        font-family: "Poppins";
        margin: 0 0 7px 0;
    }
    .eligibility-page .row-table-like-wrap {
        border-radius: 3px;
        background-color: #f2f2f2;
        padding: 10px !important;
    }
    .eligibility-page .row-table-like-wrap .table-like-div-group.eligibiliy {
        margin: 0 0 10px 0;
        padding: 0 0 10px 0;
        border-bottom: 1px solid #dedede;
    }
    .eligibility-page .table-like-button {
        margin: 0px 0 0 0;
        padding: 0px 0 0 0;
        border-top: none;
    }
    .eligibility-page .row-table-like-wrap .table-like-div-group.payrate {
        padding-right: 14px;
    }
    .new-card-mobile {
        padding: 20px 20px 10px 20px;
    }
    .custom-card.mobile-no-card {
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .common-access {
        border-radius: 4px;
        filter: drop-shadow(0 0 35px #e6e6f4);
        background-color: #ffffff;
        padding: 15px;
    }
    .iwork-pages .table-like-div.heading-part .heading-th h5 {
        display: none;
    }
    .setup-access-level .mobile-card-body .heading-th {
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .setup-access-level .mobile-card-body {
        border-top: 1px solid #dedede;
        padding: 10px 0 0 0;
    }
    .section-main {
        /* min-height: calc(100vh - 125px); */
    }
    .caledar-wrap td.cal-day-box .pos-schedule {
        padding: 20px 0;
    }
    .iwork-pages .tabs-switch-design .nav-tabs {
        margin: 0 0 15px 0;
        border: 1px solid #8fc059;
        border-radius: 3px;
        width: 100%;
        max-width: 400px;
    }
    .iwork-pages .tabs-switch-design .nav-tabs .nav-item {
        margin: 0;
        width: 50%;
    }
    .iwork-pages .tabs-switch-design .nav-tabs a.nav-link {
        border: none;
        text-align: center;
        font-size: 14px;
        line-height: 21px;
        color: #999999;
        font-weight: 400;
        font-family: "Poppins";
        border-radius: 0;
    }
    .iwork-pages .tabs-switch-design .nav-tabs a.nav-link.active {
        background: #8fc059;
        color: #fff;
    }
    .iwork-pages .what-is.master-whats .pickup-text .media-body {
        /* padding: 10px 0 0 0; */
        /* border-top: 1px solid #d5d5d5; */
        /* margin: 10px 0 0 0; */
    }
    .iwork-pages .what-is.master-whats .pickup-text p {
        margin: 0 0 0px 0;
    }
    .contact-list .custom-col {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .notes-wrap .media-body {
        padding-left: 20px;
    }
    .notes-wrap {
        margin: 0 0 30px 0;
    }
    .announcement .announcement-slider {
        margin: 5px -10px 20px -10px;
    }
    .section-banner .text-section-banner .text-section {
        margin: 0 0 20px 0;
    }
    .login-wrap .form-wrap .form-inner {
        min-height: calc(100vh - 92px);
    }
    .login-wrap .form-wrap .form-inner .form-footer {
        position: relative;
        bottom: 0;
    }
    .login-wrap .form-wrap .form-inner .form-footer a {
        font-size: inherit !important;
        color: inherit !important;
        text-decoration: none;
    }
    .create-schedule-page .side-schedule .schedule-list {
        padding: 0;
    }
    .create-schedule-page .side-schedule .schedule-list .description {
        padding: 20px;
    }
    .create-schedule-page .side-schedule {
        margin: 30px 0 0 0;
    }
    .create-schedule-page .autofil-wrap .form-group, .my-availibility .autofil-wrap .form-group {
        margin-bottom: 1rem;
    }
    .my-availibility .autofil-wrap .button-wrap, .create-schedule-page .autofil-wrap .button-wrap, .create-schedule-page .apply-date-wrap .button-wrap {
        margin-bottom: 1rem;
        padding: 0 0 0 0px;
    }
    .phone-list-page .section-heading .button-wrap .filter-button:not(:last-of-type)::after {
        right: -10px;
    }
    .phone-list-page .section-heading .button-wrap .filter-button {
        padding: 0;
        margin: 0 10px 0 10px;
    }
    .manage-reccuring-page .weekdays .form-check {
        margin: 0 30px 15px 0;
    }
    .manage-reccuring-page .media-text .alert-button {
        font-size: 15px;
        padding: 9px 30px;
    }
    .manage-reccuring-page .custom-card {
        padding: 0;
    }
    .iwork-pages .collapse-title .collapse-button, .iwork-pages .collapse-title h4 {
        font-size: 17px;
        padding: 14px 25px 12px 15px;
    }
    .iwork-pages .collaspe-inner {
        padding: 15px 15px 15px 15px;
    }
    .iwork-pages label {
        font-size: 14px;
    }
    .form-row-xs {
        margin-right: -5px;
        margin-left: -5px;
    }
    .form-row-xs .col, .form-row-xs>[class*=col-] {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .iwork-pages .table-like-div p span {
        display: block;
    }
    .eligibility-page .row-table-like-wrap .form-check label {
        font-size: 13px;
        color: #333333;
    }
    .polls-page .collapse-title .collapse-button::after {
        top: 17px;
        right: 12px;
    }
}

/* // Medium devices (tablets, 768px and up) */

@media (max-width: 767.98px) {
    .polls-page .collapse-title .collapse-button::after {
        top: 13px;
        right: 12px;
    }
    .eligibility-page .table-like-button select.form-control {
        max-width: 100%;
    }
    .iwork-pages.payrate-page .custom-card {
        padding: 15px;
    }
    .iwork-pages.payrate-page .collaspe-inner {
        padding: 15px 0px 15px 0px;
    }
    .iwork-pages .collapse-title .collapse-button, .iwork-pages .collapse-title h4 {
        font-size: 15px;
    }
    .iwork-pages .section-heading h5 {
        font-size: 14px;
    }
    .import-users .import-contact {
        padding: 10px;
    }
    .master-table-day p {
        font-size: 15px;
    }
    .manage-reccuring-page .weekdays .form-check {
        margin: 0px 0px 10px 0;
        width: 25%;
    }
    .caledar-wrap td.cal-day-box .pos-schedule {
        padding: 5px 5px;
    }
    .calendarPopup .modal-dialog button.close {
        top: 0px;
        right: 0;
        z-index: 1;
    }
    .caledar-wrap td.cal-day-box .pos-schedule small.day-cal {
        width: 32px;
        height: 32px;
        border-radius: 50%;
    }
    .iwork-pages .section-heading h4, .myschedule-page .section-heading h4 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }
    .create-schedule-page .form-wrap .button-wrap .buttons {
        margin-bottom: 15px !important;
    }
    .iwork-pages .edit-details-wrap .profile-pic .media-body {
        padding: 0;
    }
    .iwork-pages .what-is .media-body .collapse-button {
        font-size: 15px;
    }
    .w-xs-100 {
        width: 100%;
        max-width: 100%;
    }
    .manage-reccuring-page .one-time-button .alert-button, .split-master-schedule .one-time-button .alert-button, .payrate-page .one-time-button .alert-button {
        max-width: 100%;
        width: 100%;
    }
    .polls-page .polls-question .answers-body .answers-wrap .ans-list {
        width: 100%;
    }
    .iwork-pages .what-is .media-body {
        padding-left: 10px;
    }
    .iwork-pages .what-is .media-body .collapse-button h4 {
        padding: 0 15px 0 0;
    }
}

/* // Small devices (landscape phones, 576px and up) */

@media (max-width: 575.98px) {
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head::after {
        right: 15px;
        top: 22px;
    }
    .shift-approval .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head::after {
        top: 20px;
    }
    .polls-page .polls-question .poll-question-part .question-part .media-body h5 {
        font-size: 14px;
    }
    .iwork-pages .section-heading h4, .myschedule-page .section-heading h4 {
        font-size: 15px;
    }
    .eligibility-page .row-table-like-wrap .table-like-div-group h5 img {
        max-width: 15px;
    }
    .new-card-mobile {
        padding: 10px 10px 0px 10px;
    }
    .iwork-pages .tabs-switch-design .nav-tabs a.nav-link {
        font-size: 13px;
        padding: .5rem 0.4rem;
    }
    .master-table-day p {
        font-size: 14px;
    }
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .content h4 {
        font-size: 13px;
    }
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .media-body {
        padding: 0 0 0 10px;
    }
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap img {
        max-width: 19px;
    }
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap {
        padding: 7px;
    }
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head {
        padding: 10px;
    }
    .manage-reccuring-page .weekdays .form-check {
        margin: 0px 0px 5px 0;
        width: 33.33%;
    }
    .manage-reccuring-page .media-text .alert-button {
        font-size: 14px;
        padding: 7px 30px;
    }
    .todo-list-page .section-heading .form-inline .green-button {
        width: 100%;
    }
    .iwork-pages .what-is.master-whats .pickup-text .button-wrap .green-button {
        width: 100%;
    }
    .contact-list .custom-col {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .create-schedule-page .form-wrap .button-wrap .buttons {
        min-width: 100%;
        margin: 0 0 15px 0 !important;
    }
    .timecard-page .button-wrap input {
        margin: 0 0px 10px 0;
        min-width: 100%;
    }
    .contact-list .contact-wrap .media-body {
        padding: 0 0 0 20px;
    }
    .contact-list .contact-wrap .contact-head {
        text-align: left;
    }
    .contact-list .contact-wrap .tag {
        text-align: left;
    }
    .contact-list .contact-wrap .contact-head {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .contact-list .contact-wrap, .birthday-list .birthday-row .birthday-wrap {
        margin: 0 0 20px 0;
    }
    .caledar-wrap td.cal-day-box .pos-schedule img {
        top: 2px;
        left: 2px;
    }
    .iwork-pages .collapse-title .collapse-button img, .iwork-pages .collapse-title h4 img {
        max-width: 13px;
        margin: 0 8px 0 0;
    }
    .iwork-pages .collapse-title .collapse-button {
        font-size: 13px;
        padding: 14px 25px 12px 15px;
    }
    .iwork-pages .collapse-title .collapse-button::after {
        background-size: 10px;
        right: 9px;
    }
    .master-table-day {
        padding: 11px 13px;
    }
    .mobile-toggle-time .single-schedule .schedule-description {
        padding: 10px;
    }
    .iwork-pages.user-access .table-like-div.heading-part .heading-th h5 span {
        display: none;
    }
    .payrate-page .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head::after {
        top: 21px;
    }
    .payrate-page .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap {
        width: 38px;
        height: 38px;
    }
    .whos-available-page .form-group .calendar input {
        margin: auto;
        float: none;
        display: block;
    }
    .whos-available-page .form-group .calendar {
        width: 100%;
    }
}

@media (max-width: 374.98px) {
    .manage-reccuring-page .weekdays .form-check {
        width: 50%;
    }
    .master-table-day p {
        font-size: 13px;
    }
}

/**Pushpa**/

/* inbox-page style */

.myschedule-page .info-wrap, .section-banner .home-info {
    border-radius: 6px;
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    padding: 25px;
}

.iwork-pages .dark-text, .iwork-pages .light-text {
    font-size: 14px;
    line-height: 25px;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
}

.iwork-pages .light-text {
    color: #a5a5a5;
    position: relative;
}


.iwork-pages .info-wrap {
    border-radius: 6px;
    background-color: #f5f9fb;
    border: 1px solid #aecfdd;
    padding: 15px;
}

.iwork-pages .info-wrap .img-wrap {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #039ddb;
}

.iwork-pages .info-wrap .media h4 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 25px;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    margin-bottom: 0;
}

.iwork-pages .info-wrap .media p {
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
}

.footer-wrap p {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    border-top: 1px solid #ececec;
    padding: 14px 0;
    margin: 0;
}

.iwork-pages input:focus {
    box-shadow: none;
}

/* end inbox page css */

/* send message modal css */

.blue-button {
    border-radius: 3px;
    background-color: #039ddb;
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 1.4;
    color: #ffffff;
    font-weight: 400;
    font-family: "Poppins";
    padding: 10px 24px;
    text-align: center;
    border: 2px solid #039ddb;
    transition: .2s;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2);
}

.blue-button:hover {
    text-decoration: none;
    background: #333333;
    color: #fff;
    border-color: #333333;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

.modal-header button span {
    background-color: #d2d0d0;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-block;
    /* line-height: 0.8; */
}

.modal-header button:focus {
    outline: 0;
}

.inbox.iwork-pages a:hover {
    text-decoration: none;
}

.iwork-pages .section-heading p.closenav {
    display: block;
    font-size: 28px;
    margin-left: 10px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .iwork-pages .dark-text, .iwork-pages .light-text {
        font-size: 12px;
    }
    .iwork-pages .info-wrap .media h4 {
        font-size: 14px;
    }
    .iwork-pages .info-wrap .media p {
        font-size: 12px;
        line-height: 16px;
    }
}

/* inbox-page style end */

/* who has submitted style start */

.who-login.iwork-pages .iwork-table thead th {
    min-width: 250px;
}

.who-login .EmpUser .iwork-table.specific-employee tbody td:nth-child(2) {
    text-align: left;
}

.who-login .EmpUser .iwork-table.specific-employee th:nth-child(2) {
    text-align: left;
}

.who-submitted.iwork-pages select.form-control {
    background-color: #eeeeef;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 25px;
    color: #666666;
    font-weight: 400;
    font-family: "Poppins";
    max-width: 250px;
    width: 100%;
}

.who-submitted.iwork-pages .iwork-table {
    min-width: 400px;
}

.who-submitted .EmpUser .iwork-table tbody td:nth-child(2) {
    text-align: right;
}

.who-submitted .EmpUser .iwork-table th:nth-child(1), .who-submitted .EmpUser .iwork-table tbody td:nth-child(1) {
    text-align: left;
}

.who-submitted .EmpUser .iwork-table th:nth-child(2) {
    text-align: right;
}

.who-submitted .EmpUser .iwork-table th {
    border-bottom: 1px solid #dee2e6;
}

.who-submitted .EmpUser .iwork-table td {
    border: 0;
}

.custom-card-body {
    padding: 25px;
}

.custom-card-footer {
    padding: 15px 25px;
    background-color: #f9fbf7;
}

.custom-card-footer h5 {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
}

.who-submitted.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.who-submitted.iwork-pages .iwork-table thead th:nth-child(4) {
    max-width: 100px;
}

/* who has submitted style ends */

/* who has submitted responsive style start */

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .img-wrap img {
    width: 15px;
}

.mobile-toggle-time .img-wrap {
    width: 38px;
    height: 38px;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.who-submitted.iwork-pages select.form-control {
    max-width: 180px;
    padding: 0px 10px;
    height: 35px;
}

.who-submitted .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head:active {
    background: #eff0f4;
}

.who-submitted .mobile-toggle-time .custom-card.EmpUser {
    box-shadow: none;
    border: 1px solid #dee2e6;
    padding: 0 15px 5px;
    margin-bottom: 15px;
}

.who-submitted .mobile-toggle-time .EmpUser .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.who-submitted .mobile-toggle-time .iwork-table {
    min-width: 200px;
}

.who-submitted .mobile-toggle-time p strong {
    text-transform: uppercase;
}

.who-submitted .mobile-toggle-time .EmpUser .iwork-table th {
    padding-left: 0;
    padding-right: 0;
}

.iwork-pages .submit-mobile .iwork-table thead th {
    font-size: 13px;
    color: #1f343e;
}

@media (max-width: 991.98px) {
    .who-submitted.iwork-pages .section-heading h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .who-submitted.iwork-pages .section-heading.custom-heading-mobile h4 {
        font-size: 14px;
        color: #9abe67;
    }
    .who-submitted .custom-card-footer {
        background-color: #f1f4ec;
        border: 1px solid #ced4da;
        border-radius: 7px;
        padding: 15px;
    }
    .who-submitted .custom-card-footer h5 {
        font-size: 14px;
        line-height: 17px;
        color: #456620;
    }
    .who-submitted.iwork-pages .custom-card.EmpUser {
        box-shadow: none;
        background-color: transparent;
        border-radius: 0;
        padding: 15px;
    }
    .who-submitted.iwork-pages .custom-card.EmpUser .col-lg-6 {
        box-shadow: none;
        border: 1px solid #dee2e6;
        padding: 0 15px;
    }
}

/* who has submitted responsive style end */

/* event availability style start */

.event-availability.iwork-pages .iwork-table tbody td p {
    max-width: 100%;
}

.event-availability.iwork-pages .iwork-table th:nth-child(1) {
    min-width: 400px;
}

.who-submitted.iwork-pages .iwork-table th, .who-submitted.iwork-pages .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.event-availability.iwork-pages .iwork-table th, .event-availability.iwork-pages .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 767.98px) {
    .mobile-toggle-time .single-schedule .schedule-heading .schedule-mob-head .content h4 {
        font-size: 14px;
    }
    .event-availability.iwork-pages .section-heading h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
}

/* event availability style end */

/* Trade Report style start */

.trade-report .home-info .img-wrap {
    background-color: #ead2d2;
}

.trade-report .iwork-table th, .trade-report .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.trade-report .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.event-availability.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.event-availability .mobile-toggle-time p strong {
    text-transform: uppercase;
}

.trade-report.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.trade-report .mobile-toggle-time p strong {
    text-transform: uppercase;
}

@media (max-width: 767.98px) {
    .trade-report.section-banner .home-info .media-body li {
        font-size: 12px;
        line-height: 19px;
    }
    .trade-report.section-banner .home-info .img-wrap {
        width: 40px;
        height: 40px;
    }
    .trade-report.section-banner .home-info .media {
        align-items: flex-start !important;
    }
    .trade-report.iwork-pages .section-heading h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .trade-report.section-banner .home-info {
        padding: 15px;
    }
}

/* Trade Report style end */

/* View Comments style start */

.view-comment.iwork-pages .iwork-table tbody td p {
    max-width: 100%;
}

.view-comment.iwork-pages .iwork-table th:nth-child(1) {
    min-width: 400px;
}

.view-comment.iwork-pages select.form-control {
    background-color: #eeeeef;
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 25px;
    color: #666666;
    font-weight: 400;
    font-family: "Poppins";
    max-width: 250px;
    width: 100%;
}

.custom-card.emp-name .iwork-table .img-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #464646;
    overflow: hidden;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.custom-card.emp-name .iwork-table .img-wrap {
    background: #96c463;
}

.view-comment.iwork-pages .iwork-table tr:nth-child(4) .img-wrap {
    background: #96c463;
}

.view-comment.iwork-pages .iwork-table tr:nth-child(2) .img-wrap {
    background: #e4933b;
}

.view-comment.iwork-pages .iwork-table tr:nth-child(3) .img-wrap {
    background: #ead2d2;
}

.custom-card.emp-name .iwork-table .img-wrap h5 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    margin-bottom: 0;
}

.custom-card.emp-name .iwork-table h4 {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
}

.view-comment .iwork-table th, .view-comment .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.mobile-toggle-time .single-schedule .schedule-heading .emp-name .img-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #464646;
    overflow: hidden;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
}

.mobile-toggle-time .single-schedule .schedule-heading .emp-name .img-wrap h5 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 500;
    font-family: "Poppins";
    margin-bottom: 0;
}

.mobile-toggle-time .single-schedule .schedule-heading .emp-name .img-wrap img {
    width: auto;
}

.mobile-toggle-time .single-schedule .schedule-heading .emp-name .media:nth-child(1) .img-wrap {
    background: #96c463;
}

.mobile-toggle-time .single-schedule .schedule-heading .emp-name .media:nth-child(2) .img-wrap {
    background: #e4933b;
}

.view-comment .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.view-comment.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

@media (max-width: 575.98px) {
    .mobile-toggle-time .single-schedule .schedule-heading .emp-name .img-wrap img {
        max-width: unset;
    }
}

/* total hours css start */

.total-hours.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.total-hours .iwork-table th, .total-hours .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

/* .total-hours .table-diff-footer .iwork-table tbody tr:last-child {
    padding: 15px 25px;
    background-color: #f9fbf7;
}


.total-hours .table-diff-footer .iwork-table tbody tr:last-child td {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
    border: 0;
} */

.iwork-pages .page-content p {
    font-size: 15px;
    line-height: 25px;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 10px;
}

.total-hours .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.mobile-toggle-time .custom-card-footer h5 {
    font-size: 14px;
    line-height: 17px;
    color: #456620;
}

.mobile-toggle-time .custom-card-footer {
    background-color: #f1f4ec;
    border: 1px solid #ced4da;
    border-radius: 7px;
    padding: 15px;
}

.mobile-toggle-time .custom-card-footer .green-row {
    padding: 15px 0;
}

@media (min-width: 1299.98px) {
    .total-hours.iwork-pages .custom-card-footer.diff-footer h5 {
        min-width: 243px;
    }
    .total-hours .table-diff-footer .iwork-table th {
        min-width: 230px;
    }
}

@media (min-width: 1399.98px) {
    .total-hours.iwork-pages .custom-card-footer.diff-footer h5 {
        min-width: 272px;
    }
}

@media (min-width: 1599.98px) {
    .total-hours.iwork-pages .custom-card-footer.diff-footer h5 {
        min-width: 305px;
    }
}

@media (min-width: 1799.98px) {
    .total-hours.iwork-pages .custom-card-footer.diff-footer h5 {
        min-width: 327px;
    }
}

@media (max-width: 1299.98px) {
    .total-hours.iwork-pages .custom-card-footer.diff-footer h5 {
        margin-right: 50px;
    }
}

/* total hours css end */

/* career-hr-current  css start */

.career-hr-current.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.career-hr-current .iwork-table th, .career-hr-current .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.career-hr-current.iwork-pages .firt-table, .career-hr-current.iwork-pages .second-table {
    padding: 0 25px 0 25px;
}

.career-hr-current.iwork-pages .second-table {
    border-radius: 6px;
    background-color: #f9fbf7;
}

.career-hr-current.iwork-pages .second-table .iwork-table tbody tr:first-child td {
    border-top: 0;
}

.career-hr-current.iwork-pages .second-table .iwork-table tbody td {
    font-size: 17px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #039ddb;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
}

.career-hr-current.iwork-pages .second-table .iwork-table tbody td {
    min-width: 230px;
}

.career-hr-current .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.mobile-toggle-time .single-schedule .schedule-description p strong {
    text-transform: uppercase;
}

/* career-hr-current  css end */

/* career-hr-Specific Date  css start */

@media (min-width: 1199.98px) {
    .Specific-Date.iwork-pages .button-wrap .green-button {
        min-width: 250px;
    }
}

@media (max-width: 1199.98px) {
    .Specific-Date.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .Specific-Date.iwork-pages .button-wrap .green-button {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .career-hr-current.iwork-pages .section-heading h4, .myschedule-page .section-heading h4 {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .Specific-Date.iwork-pages .custom-card {
        padding: 15px;
    }
}

/* career-hr-Specific Date   css end */

/* individual(plus/minus) css start */

.individual-plus.iwork-pages .iwork-table thead th:last-child {
    max-width: 83px;
}

.individual-plus.iwork-pages .iwork-table thead th:nth-child(1) {
    min-width: 180px;
}

/* individual(plus/minus) css end */

/* career(plus/minus) css start */

.career-plus.iwork-pages .iwork-table thead th:last-child {
    max-width: 83px;
}

.career-plus.iwork-pages .iwork-table thead th:nth-child(1) {
    min-width: 180px;
}

/* career(plus/minus) css end */

/* payroll css start */

.payroll.iwork-pages .green-button.black {
    background-color: #333333;
    border-color: #333333;
}

.payroll.iwork-pages .green-button.black:hover {
    background-color: #8fc059;
    border: 2px solid #8fc059;
}

.payroll.form2.iwork-pages .iwork-table thead th {
    min-width: 160px;
}

.payroll.form3.iwork-pages .iwork-table thead th {
    min-width: 150px;
}

.payroll.form6.iwork-pages .iwork-table thead th {
    min-width: 150px;
}

.payroll.iwork-pages .mobile-toggle-time .collapse-title::after {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    right: -2px;
    top: 5px;
    background-image: url(../images/down.png);
    background-size: 13px;
    background-repeat: no-repeat;
    background-position: center;
    transition: .2s;
    transform: rotate(180deg);
}

.payroll.iwork-pages .mobile-toggle-time .collapse-title {
    position: relative;
}

.payroll.iwork-pages .collapse-title.collapsed::after {
    transform: rotate(0deg);
}

.payroll.iwork-pages .collapse-title h4 {
    margin: 0;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
}

.payroll.iwork-pages .mobile-toggle-time .collaspe-inner {
    padding-bottom: 0;
}

.payroll .info-wrap .img-wrap {
    background-color: #ead2d2;
}

.payroll .info-wrap {
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    border: 0;
    padding: 20px;
}

.custom-card-body .form-report p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 5px;
}

.custom-card-body .form-report h5 {
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-family: "Poppins";
    margin-bottom: 8px;
}

.custom-card-body .form-report li {
    font-size: 14px;
    line-height: 26px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
}

.payroll.form8.iwork-pages .mobile-toggle-time .collapse-title::after {
    display: none;
}

.payroll.form9.iwork-pages .mobile-toggle-time .collapse-title::after {
    display: none;
}

.payroll.form12.iwork-pages .mobile-toggle-time .collapse-title::after {
    display: none;
}

/* .custom-card-body .form-report .list-block ul {
    padding-left: 20px;
    margin-right: 50px;
} */

.form10.iwork-pages .iwork-table thead th {
    min-width: 150px;
}

.custom-card-body fieldset p {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 10px;
}

.custom-card-body .form-report .list-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
    margin-right: 50px;
}

.custom-card-body .form-report .list-block ul {
    display: contents;
}

.payroll.form8.iwork-pages .list-block {
    width: 100%;
}

.form12.iwork-pages .custom-card-body .form-report .list-block ul li {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.form8.iwork-pages .custom-card-body .form-report .list-block ul li {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.complete-profile-button .buttons {
    width: auto;
}

.iwork-pages .table-like-div .heading-th-finance p {
    font-size: 15px;
    color: #333333;
    font-weight: 600;
}

.iwork-pages.lockers li {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0 0 10px 0;
}

@media (min-width: 1199.98px) {
    .payroll.form4.iwork-pages .button-wrap .green-button.black {
        min-width: 250px;
    }
    .payroll.form5.iwork-pages .button-wrap .green-button.black {
        min-width: 250px;
    }
    .payroll.form7.iwork-pages .button-wrap .green-button.black {
        min-width: 250px;
    }
    .payroll.form8.iwork-pages .button-wrap .green-button.black {
        min-width: 200px;
    }
    .payroll.form12.iwork-pages .button-wrap .green-button.black {
        min-width: 200px;
    }
    .payroll.form15.iwork-pages .button-wrap .green-button.black {
        min-width: 250px;
    }
}

@media (min-width: 1399.98px) {
    .payroll.iwork-pages .green-button {
        padding: 10px 35px;
    }
    .payroll.form2.iwork-pages .iwork-table thead th {
        min-width: 250px;
    }
}

@media (max-width: 767.98px) {
    .payroll.iwork-pages .green-button {
        padding: 5px 30px;
    }
    .payroll.iwork-pages .mobile-toggle-time .col-xl-3.col-lg-4.col-md-6 {
        padding: 0;
    }
    .payroll.iwork-pages .mobile-toggle-time .custom-col-2.col-md-6 {
        padding: 0;
    }
    .payroll.iwork-pages .mobile-toggle-time .col-md-6 {
        padding: 0;
    }
    .complete-profile-button .buttons {
        width: 100%;
        margin: 0 0 10px 0;
        max-width: 100%;
    }
}

@media (max-width: 1199.98px) {
    .payroll.form4.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form4.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
    .payroll.form5.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form5.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
    .payroll.form7.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form7.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
    .payroll.form8.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form8.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
    .payroll.form9.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form9.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
    .payroll.form12.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form12.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
    .payroll.form15.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .payroll.form15.iwork-pages .button-wrap .green-button.black {
        width: 100%;
    }
}

@media (min-width: 991.98px) {
    .custom-col-2 {
        -ms-flex: 0 0 19.666667%;
        flex: 0 0 19.666667%;
        max-width: 19.666667%;
    }
}

@media (max-width: 991.98px) {
    .custom-card-body .form-report .list-block ul {
        padding-left: 20px;
        margin-right: 15px;
    }
    .payroll.iwork-pages .custom-card {
        padding: 15px;
    }
    .payroll.form8.iwork-pages .collaspe-inner {
        padding: 15px 0;
    }
    .payroll.form9.iwork-pages .collaspe-inner {
        padding: 15px 0;
    }
    .payroll.form12.iwork-pages .collaspe-inner {
        padding: 15px 0;
    }
    .payroll.iwork-pages .custom-card-body .form-report .list-block ul li {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .custom-card-body .form-report .list-block {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .payroll.iwork-pages .collapse-title .collapse-button {
        padding-left: 0px;
    }
}

/* payroll css end */

/* everyone-shift css start */

.everyone-shift .shift-wrap {
    box-shadow: 0 0 35px #e6e6f4;
    background-color: #ffffff;
    border: 0;
    padding: 12px;
}

.everyone-shift .shift-wrap .img-wrap {
    background-color: #ededed;
    border-radius: 30px;
    padding: 3px;
}

.everyone-shift .shift-wrap h4 {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #333333;
    font-weight: 500;
    font-family: "Poppins";
    margin-bottom: 0;
}

.everyone-shift .collapse-title h4 {
    font-size: 22px;
    letter-spacing: 0px;
    line-height: 25px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
}

.everyone-shift .collapse-title h4 span {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #19343f;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
    display: block;
}

.everyone-shift .collaspe-inner {
    border-top: 1px solid #d3d3d3;
}

.everyone-shift .mobile-toggle-time .shift-wrap .img-wrap {
    text-align: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto;
    padding: 0;
}

/* everyone-shift css end */

/* display-user-name css start */

.display-user.iwork-pages .iwork-table th:nth-child(2) {
    text-align: right;
}

.display-user.iwork-pages .iwork-table td:nth-child(2) {
    text-align: right;
}

@media (max-width: 991.98px) {
    .display-user.iwork-pages .iwork-table.second-table tr:nth-child(1) {
        display: none;
    }
}

/* display-user-name css end */

/* available shift css */

.available-shift .custom-card-header {
    background-color: #f9fbf7;
    padding: 12px 25px;
}

.available-shift .custom-card-header h4 {
    font-size: 17px;
    line-height: 24px;
    color: #8fc059;
    font-weight: 500;
    font-family: "Poppins";
    margin: 0;
}

.available-shift.iwork-pages .iwork-table tbody td span {
    font-size: 13px;
    line-height: 18px;
    color: #19343f;
    font-weight: 500;
    font-family: "Poppins";
}

.available-shift .iwork-table th, .available-shift .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.available-shift.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .available-shift.iwork-pages .section-heading h4 span {
        font-weight: 400;
        font-size: 15px;
    }
    .available-shift.iwork-pages .schedule-description .desc-media .media-body strong {
        font-size: 13px;
        letter-spacing: 0px;
        line-height: 24px;
        color: #a5c576;
        font-weight: 500;
        font-family: "Poppins";
    }
    .available-shift.iwork-pages .single-schedule .schedule-description p span {
        font-weight: 500;
        color: #19343f;
    }
}

/* available shift css  end*/

/* Shift Approval Log-Detail css */

.shift-approval-detail.iwork-pages .iwork-table th, .shift-approval-detail.iwork-pages .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.shift-approval-detail.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.shift-approval-detail .section-heading h4 img {
    max-width: 16px;
    margin: 0 14px 0 0;
    vertical-align: unset;
}

.shift-approval-detail .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

/* Shift Approval Log-Detail css  end*/

/* Shift Approval Log css  */

.collapse-button::after {
    background-image: url(../images/down.png);
}

.shift-approval-log.iwork-pages .button-wrap .green-button {
    min-width: 250px;
}

.iwork-pages .detail.action {
    background-image: url(../images/icon-login/eye-detail.png);
    background-size: 11px;
}

.shift-approval-log.iwork-pages .iwork-table th, .shift-approval-log.iwork-pages .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.shift-approval-log.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.shift-approval-log .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

@media (max-width: 991.98px) {
    .shift-approval-log.iwork-pages .custom-card {
        padding: 15px;
    }
    .shift-approval-log.iwork-pages .collapse-title h4 {
        margin: 0;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
    .shift-approval-log.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .shift-approval-log.iwork-pages .button-wrap .green-button {
        width: 100%;
    }
    .shift-approval-log.iwork-pages .collapse-title.collapsed::after {
        transform: rotate(0deg) !important;
    }
    .shift-approval-log.iwork-pages .mobile-toggle-time .collapse-title::after {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        right: -2px;
        top: 5px;
        background-image: url(../images/down.png);
        background-size: 13px;
        background-repeat: no-repeat;
        background-position: center;
        transition: .2s;
        transform: rotate(180deg);
    }
    .shift-approval-log.iwork-pages .mobile-toggle-time .collapse-title {
        position: relative;
    }
}

/* Shift Approval Log css  end*/

/* Shift Approval  css  */

.shift-approval.iwork-pages .iwork-table thead th {
    min-width: 150px;
}

.shift-approval.iwork-pages .iwork-table thead th.checks {
    min-width: 70px;
}

.shift-approval.iwork-pages .iwork-table th, .shift-approval.iwork-pages .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.shift-approval.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.shift-approval .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.shift-approval.iwork-pages .button-wrap .green-button {
    min-width: 250px;
}

.iwork-pages .action.delete {
    background-image: url(../images/icon-login/action-delete.png) !important;
    background-size: 11px !important;
}

.iwork-pages .action.right-tick {
    background-image: url(../images/icon-login/tick.png);
    background-size: 11px !important;
}

.iwork-pages .action.right-tick.active {
    background-image: url(../images/icon-login/tick-white.png);
    background-color: #039ddb;
}

.shift-approval.iwork-pages .bottom-content p {
    font-size: 13px;
    line-height: 24px;
    color: #6d7d83;
    font-weight: 400;
    font-family: "Poppins";
    margin: 0;
}

@media (max-width: 991.98px) {
    .shift-approval.iwork-pages .custom-card {
        padding: 15px;
    }
    .shift-approval.iwork-pages .collapse-title h4 {
        margin: 0;
        padding-top: 0;
        padding-right: 0;
        padding-left: 0;
    }
    .shift-approval.iwork-pages .button-wrap {
        display: block;
        width: 100%;
    }
    .shift-approval.iwork-pages .button-wrap .green-button {
        width: 100%;
    }
    .shift-approval.iwork-pages .collapse-title.collapsed::after {
        transform: rotate(0deg) !important;
    }
    .shift-approval.iwork-pages .mobile-toggle-time .collapse-title::after {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        right: -2px;
        top: 5px;
        background-image: url(../images/down.png);
        background-size: 13px;
        background-repeat: no-repeat;
        background-position: center;
        transition: .2s;
        transform: rotate(180deg);
    }
    .shift-approval.iwork-pages .mobile-toggle-time .collapse-title {
        position: relative;
    }
}

/* Shift Approval css  end*/

/* Approve Trade Request css */

.trade-approval.iwork-pages .iwork-table thead th {
    min-width: 200px;
}

.trade-approval.iwork-pages .iwork-table thead th:nth-child(3) {
    min-width: unset;
}

.trade-approval.iwork-pages .iwork-table td p {
    min-width: 550px;
}

.trade-approval.iwork-pages .iwork-table thead th:last-child {
    min-width: 120px;
}

.trade-approval.iwork-pages .iwork-table th, .trade-approval.iwork-pages .iwork-table td {
    padding-left: 0;
}

.trade-approval.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.trade-approval .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.iwork-pages .action.minus-delete {
    background-image: url(../images/icon-login/minus.png);
    background-size: 11px !important;
}

.iwork-pages .tabs-switch-design .nav-tabs a.nav-link.active {
    /* height: 100%; */
}

/* Approve Trade Request css  end*/

/* Assign available shifts css */

.assign-available.iwork-pages .iwork-table th, .assign-available.iwork-pages .iwork-table td {
    padding-left: 0;
    padding-right: 0;
}

.assign-available.iwork-pages .iwork-table thead th {
    text-transform: uppercase;
}

.assign-available .mobile-toggle-time .desc-media .icon-wrap {
    display: contents;
}

.assign-available.iwork-pages .iwork-table td select {
    min-width: 100%;
}

.assign-available.iwork-pages .iwork-table td span {
    color: #19343f;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .assign-available.iwork-pages .custom-card {
        padding: 0;
    }
    .assign-available.iwork-pages .new-card-mobile {
        padding-bottom: 10px;
    }
    .assign-available.iwork-pages .new-card-mobile .form-group {
        margin-bottom: 10px !important;
    }
}

@media (min-width: 575.98px) {
    .assign-available.iwork-pages .new-card-mobile {
        padding-bottom: 20px;
    }
}

/* Assign available shifts css  end*/

/* Staff Info css */

.staff-info.iwork-pages .position-tag span {
    background: none;
    color: #333333;
    padding: 0;
}

.staff-info.iwork-pages .position-tag {
    padding: 0;
}

.contact-list .contact-wrap .contact-info p {
    text-align: right;
}

.contact-list .contact-wrap .contact-info span.mail {
    background-image: url(../images/icon-login/mail.png);
    background-position-x: 0;
}

.contact-list .contact-wrap .contact-info span.phone {
    background-image: url(../images/icon-login/phone.png);
    background-position-x: 1px;
}

.contact-list .contact-wrap .contact-info span.cell {
    background-image: url(../images/icon-login/cell.png);
    background-position-x: 4px;
}

.contact-list .contact-wrap .contact-info span.birthdate {
    background-image: url(../images/icon-login/gift.png);
    background-position-x: 4px;
}

.contact-list .contact-wrap .contact-info span.pronouns {
    background-image: url(../images/icons/table-user.png);
    background-position-x: 4px;
}

.contact-list .contact-wrap .contact-info span.address {
    background-image: url(../images/icon-login/location.png);
    background-position-x: 4px;
    background-position-y: 5px;
}

.staff-info.iwork-pages .contact-list .contact-wrap .contact-head {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dddde4;
}

.iwork-pages .iwork-table td a.action.delete {
    background-image: url(../images/icon-login/pencil.png);
    background-size: 11px;
}

.contact-list .contact-wrap .edit-wrap .edit::before {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #dfe5e8;
    display: inline-block;
    margin: 0;
    background-repeat: no-repeat;
    transition: background-image .2s;
    background-position: center center;
    background-image: url(../images/icon-login/pencil.png);
    background-size: 11px;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
}

.contact-list .contact-wrap .edit-wrap .edit {
    position: relative;
}

.staff-info.iwork-pages .contact-list .contact-wrap .media {
    margin-top: 10px;
}

.section-main .edit-form {
    max-width: 500px;
    margin: 0 auto;
}

.button-wrap .green-button.black {
    background-color: #333333;
    border-color: #333333;
}

.button-wrap .green-button.black:hover {
    background-color: #8fc059;
    border: 2px solid #8fc059;
}

.iwork-pages .action-btn {
    padding: 10px 15px;
    background: #333333;
    text-transform: capitalize;
    color: #fff !important;
    border-radius: 3px;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    font-family: "Poppins";
    text-decoration: none;
    transition: .2s;
}

.iwork-pages .cancel-action.action-btn {
    background-color: #f5d0d0;
    color: #5a0e0e !important;
}

.iwork-pages .action-btn.approved {
    background-color: #8fc059;
}

.iwork-pages .action-btn:hover {
    opacity: .7;
}

.date-picker-header {
    position: relative;
}

.date-picker-header .calendar-drop {
    right: 0;
    box-shadow: 0 0 35px #b4b4b4;
    width: 100%;
    max-width: 470px;
    min-width: 470px;
    transition: .6s;
    border-radius: 0;
    padding: 15px 20px;
    margin: 0;
    max-height: 85vh;
    overflow-y: auto;
    left: inherit;
    border: none;
}

.date-picker-header .calendar-drop {
    /* opacity: 0; */
    /* visibility: hidden; */
}

.date-picker-header .calendar-drop.show {
    /* opacity: 1; */
    /* visibility: visible; */
    /* top: calc(100% + 10px); */
}

.date-picker-header .calendar-button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #1298d6;
    border: none;
    margin: 0 0 0px 10px;
    outline: none;
}

.date-picker-header .calendar-drop .form-date-select {
    margin-top: 10px;
    padding-top: 10px;
}

.date-picker-header .calendar-drop .form-date-select .form-row {
    padding: 0;
}

.date-picker-header .calendar-drop .form-date-select select {
    background-color: #f7f7f7;
    border: 1px solid #d2d2d2;
    color: #666666;
    font-size: 14px;
}

.date-picker-header .calendar-drop .form-date-select .green-button {
    padding: 11px 12px;
}

.date-picker-header .calendar-drop .form-company-select {
    border-bottom: 1px solid #dedede;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-top: none;
}

.date-picker-header .calnedr-form select {
    border-radius: 4px;
    background-color: #f5f5f5;
    border: 1px solid #e6e6e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 49px;
    background-image: url(../images/down.png);
    background-position: calc(100% - 10px) 50%;
    background-repeat: no-repeat;
    background-size: 12px;
    padding-right: 25px;
}

.date-picker-header .calnedr-form .buttons {
    padding: 12px;
}

@media (max-width: 1199.98px) {
    .date-picker-header .calendar-drop {
        right: -60px;
        min-width: 300px;
        padding: 10px 10px;
    }
}

@media (max-width: 991.98px) {
    .staff-info.iwork-pages .contact-list .contact-wrap .media {
        margin-top: 0px;
    }
    .staff-info.iwork-pages .contact-list .contact-wrap .media .media-body {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .m-no-gutters {
        margin-left: 0;
        margin-right: 0;
    }
    .m-no-gutters>.col, .m-no-gutters>[class*=col-] {
        padding-right: 0;
        padding-left: 0;
    }
}

/* Stafclip: ss  end*/

/*@media (min-width: 992px) {
    .site-header .navbar-nav .nav-item>.dropdown-menu, .nav-item .submenu {
        display: block !important;
    }
    .site-header .navbar-nav .nav-item>.dropdown-menu, .nav-item .submenu {
        opacity: 0 !important;
        visibility: hidden !important;
    }
    .site-header .navbar-nav .nav-item>.dropdown-menu.show, .dropdown-menu>li:hover>.submenu {
        visibility: visible !important;
        opacity: 1 !important;
    }
    .site-header .navbar-nav .nav-item .dropdown-menu {
        transition: .7s;
    }
}*/

@media (max-width: 575.98px) {
    .date-picker-header .calenndar-wrap table td center a, .date-picker-header .calenndar-wrap table td center small, .date-picker-header .calenndar-wrap table .day-title {
        font-size: 12px;
    }
    .date-picker-header .calendar-button {
        width: 36px;
        height: 36px;
    }
}

/**Start On 13-07-2021**/

.toast-container .toast {
	width: 450px;
}

.toast-container .toast-alert {
	color: #842029;
	background-color: #f8d7da;
	border-color: #f5c2c7;
}

.toast-container .toast-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

.toast-container .toast-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.toast-container .toast-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

.bootbox .modal-header {
    background: #FFC107;
}

.btn:focus.collapse-button.positions{
    outline: none !important; /* Remove the default outline */
    box-shadow: 0 0 0 0rem rgba(0, 0, 0, 0); /* Replace with your desired focus style */
}

.select2-container .select2-selection--single {
    padding-top: 6px;
    height: 43px !important;
}
.select2-selection__arrow {
    height: 42px !important;
}

div.dt-buttons {
    float: right;
    margin-left: 10px;
}
.btn-export {
    margin-bottom: 5px;
    margin-left: 10px;
}
.delete-file-btn {
    position: absolute;
    top: 0;
    right: 15px;
    height: 100%;
    width: 40px; /* Adjust the width as needed */
    padding: 0;
}
.bootstrap-datetimepicker-widget { 
     z-index:1600 !important; 
}
