@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');




.roboto-<uniquifier> {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

body{
    font-family: "Roboto", serif;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
    background: #F7F8FA;
}

.container {
    max-width: 1362px;
}


body.login{
    background: #ffffff;
}
body a{
    text-decoration: none;
    transition: all 0.5s;
}

ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
img{
    max-width: 100%;
}
.login-section{
    background: url(../images/admin-bg.png) 0 0 no-repeat;
    background-position: center 65%;
	background-size:100% auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-box h1{
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    text-transform: uppercase;
    color: #1C75BC;
    margin: 40px 0;
}
.login-box form {
    padding: 53px 48px;
    width: 368px;
    background: #FFFFFF;
    border: 1px solid rgba(214, 215, 217, 0.4);
    box-shadow: 0px 0px 19px rgba(0, 0, 0, 0.15), inset 0px 0px 8px rgba(214, 215, 217, 0.2);
    border-radius: 10px;
}
.login-box form .form-group {
    margin: 0 0 30px;
}
.login-box form .form-group .form-control{
    height: 45px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #7A7D80;
    background: #FFFFFF;
    border: 1px solid #D6D7D9;
    border-radius: 8px;
}
.login-box form .form-group button.login-btn {
    padding: 11px 37px;
    background: #1C75BC;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #FFFFFF;
    border: none;
    outline: none;
}
.login-box form .form-group button.login-btn:hover {
    background: #424242;
}
.login-box form a.forgot {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #1A4684;
}
.login-box form a.forgot:hover {
    color: #1C75BC;
}


#main-content{
    background: #F7F8FA;
    padding: 0 30px;
}
section.mid-content {
    margin: 0 0 40px;
}
section.mid-content .row {

}
a.navbar-brand img {
    max-width: 160px;
}
header nav.navbar {
    padding: 20px 0 50px 0;
}
a.navbar-brand {
    margin: 0;
    padding: 0;
}
.menu ul {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: row;
}
.menu ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    line-height: 25px;
    color: #6B7A99;
}
.menu li.nav-item a{
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    position: relative;
}
.menu li.nav-item a:hover {
    background: #f1f5ff;
}
.menu ul li a span.user {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #C3CAD9;
    font-weight: 700;
    font-size: 11px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(65, 65, 66, 0.3);
}
.menu li.nav-item a span.count {
    position: absolute;
    width: 18px;
    height: 18px;
    top: -8px;
    right: -6px;
    background: #E02525;
    border-radius: 50%;
    font-weight: 700;
    font-size: 13px;
    line-height: 25px;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    justify-content: center;
}
.left-sidebar ul {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 10px;
    width: 100%;
    padding: 25px;
}
.left-sidebar ul li {
    border-bottom: 1px solid #F5F5F5;
    width: 100%;
    padding: 10px 0;
}
.left-sidebar ul li:last-child {
    border-bottom: none;
}
.left-sidebar ul li a {
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #7A7D80;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.left-sidebar ul li a:hover,
.left-sidebar ul li a.active{
    color: #4276FA;
}
.left-sidebar ul li a img{
    opacity: 0.7;
    filter: grayscale(1);
    width: 24px;
}
.left-sidebar ul li a:hover img,
.left-sidebar ul li a.active img{
    opacity: 1;
    filter: grayscale(0);
}
.right-sidebar {
    background: #F5F5F5;
    border: 1px solid #CED4DA;
    border-radius: 10px;
    padding: 20px;
    height: 100%;
}
.welcome-block h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
}
.welcome-block p {
    max-width: 90%;
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}
footer.navbar {
    padding: 0;
}
footer.navbar .container{
    border-top: 1px solid #B3B3B3;
    padding: 20px 0;
}
.copyright p {
    font-size: 13px;
    line-height: 25px;
    color: #6B7A99;
    margin: 0;
}
footer .menu ul {
    gap: 6px;
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #6B7A99;
}
footer .menu ul li a {
    font-size: 13px;
    font-weight: 400;
    line-height: 25px;
    color: #6B7A99;
}

.progress-block .card {
    border: none;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    height: 100%;
}
.progress-block .card h4 {
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    margin: 0;
}
.progress-block .card .card-body {
    padding: 20px;
}
.progress-block .link {
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 0.8vw;
    flex-wrap: wrap;
}
.progress-block .link a {
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #A3A3A3;
}
.progress-block .link a.active,
.progress-block .link a:hover{
    color: #1E427E;
}
.progress-block .value {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #1C75BC;
}


.checklist-block h2 {
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #1C75BC;
}
.checklist-block ul li {
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.checklist-block ul li .left {
    display: flex;
    align-items: center;
    gap:15px;
}
.checklist-block ul li .left button.collapse-btn {
    border: none;
    background: none;
    padding: 0;
}
.checklist-block ul li .left h5 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #1C75BC;
    margin: 0;
    min-width: 8vw;
}
.checklist-block ul li .left span.date {
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    color: #6B7A99;
}
.checklist-block ul li .left a.join-btn {
    padding: 9px 20px;
    background: #1C75BC;
    border: 1px solid #F5F6F7;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
}
.checklist-block ul li .left a.delete-btn:hover,
.checklist-block ul li .left a.join-btn:hover {
    opacity: 0.5;
}
.checklist-block ul li .left a.delete-btn {
    padding: 9px 20px;
    background: #FFFFFF;
    border: 1px solid #F5F6F7;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #1C75BC;
}

.checklist-block a.create-btn {
    padding: 10px 20px;
    background: #1C75BC;
    border: 1px solid #F5F6F7;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    margin: 10px 0 0;
    display: inline-block;
}
.checklist-block a.create-btn:hover {
    background: #000;
}
.createby-block {
    width: 100%;
}
.createby {
    padding: 15px 0 15px 57px;
}
.createby p {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #231F20;
}
.createby p span {
    font-weight: 400;
    padding: 0 0 0 30px;
}
.createby ul {
    display: flex;
    align-items: center;
}

.createby ul li {
    width: 300px;
    padding: 0;
    margin: 0;
    justify-content: flex-start;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #C3CAD9;
}
.progress {
    background: #D9D9D9;
    width: 55%;
    color: #414142;
    font-weight: 400;
    font-size: 10px;
    display: flex;
    align-items: center;
}
.progress .progress-bar {
    width: 52px;
    height: 12px;
    background: #1A4684;
    border-radius: 10px;
    margin: 0 10px 0 0;
}

.checklist-block ul li .left button.collapse-btn:after {
    flex-shrink: 0;
    margin-left: auto;
    width: 42px;
    height: 42px;
    display: inline-block;
    content: "";
    background:url(../images/download-icon.svg) center center no-repeat;
    transition: transform .2s ease-in-out;
}
.checklist-block ul li .left button.collapse-btn:not(.collapsed)::after {
    background:url(../images/up-arrow-icon.svg) center center no-repeat;
}


.checklist-open{
    background: #FFFFFF;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0 0;
}
.checklist-open .accordion-item {
    border: none;
    margin: 5px 0;
}
.checklist-open .accordion-item .accordion-header .accordion-button {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #1E427E;
    gap: 6px;
    padding: 15px;
    background: rgba(28, 117, 188, 0.2);
    border-radius: 5px;
}
.checklist-open .accordion-item .accordion-header .accordion-button:focus{
    box-shadow: none;
}
.checklist-open .accordion-item .accordion-header .accordion-button i {
    font-size: 16px;
}
.checklist-open .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    background: rgba(28, 117, 188, 0.2);
    border-radius: 5px;
}
.checklist-open .accordion-item .accordion-body{
    padding: 0;
}
.checklist-open .audio-inner .accordion-item .accordion-header{
    margin: 5px 0;
}

.checklist-open .audio-inner .accordion-item .accordion-header .accordion-button{
    background: #F5F6F7;
    border-radius: 5px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #1C75BC;
    text-transform: inherit;
}
.checklist-open .audio-inner .accordion-item .accordion-header .accordion-button i {
    font-size: 22px;
    color: #4BB253;
}

.checklist-open .audio-inner .accordion-item.post .accordion-header .accordion-button i{
    color: #E02525;
}
.checklist-open .audio-inner .accordion-item.pre .accordion-header .accordion-button i{
    color: #F29822;
}
.checklist-open .audio-inner .accordion-item.during .accordion-header .accordion-button i{
    color: #B3B3B3;
}

.checklist-open .audio-inner .accordion-item .accordion-body {
    padding: 10px;
}

.form-check.custom-checkbox {
    display: flex;
    align-items: baseline;
    padding: 0 0 0 7px;
    min-height: inherit;
    gap: 10px;
    margin: 0 0 12px 0;
}
.form-check.custom-checkbox input {
    width: 9px;
    height: 9px;
    border-radius: 0;
    background: #fff;
    border: 1px solid #939598;
    display: inline-block;
    margin: 0;
    cursor: pointer;
}
.form-check.custom-checkbox input.green:checked {
    background: url(../images/green-cross.svg); 
    background-size: 100%;
}
.form-check.custom-checkbox input.red:checked {
    background: url(../images/red-cross.svg); 
    background-size: 100%;
}

.input-radio {
    font-size: 0;
    width: 9px;
    height: 9px;
    background-clip: border-box;
    appearance: none;
    transition: background-color 0.3s, box-shadow 0.3s;
}
.input-radio.green:checked {
    background: url(../images/green-cross.svg); 
    background-size: 100%;
}
.input-radio.red:checked {
    background: url(../images/red-cross.svg); 
    background-size: 100%;
}





.form-check.custom-checkbox input:focus {
    box-shadow: none;
}
.form-check.custom-checkbox label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}

.form-comment .form-group {
    margin: 20px 0;
}
.form-comment .form-group textarea {
    height: 97px;
    border: 1px solid #A3A3A3;
    border-radius: 5px;
    margin: 10px 0 0;
}
.form-comment .form-group label {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #000000;
}
.form-comment .form-group.lead label {
    max-width: 170px;
}
.form-comment .form-group.lead select {
    max-width: 203px;
    border: none;
    border-bottom: 1px solid #C6C7C9;
    border-radius: 0;
    height: auto;
    padding: 5px 10px;
    font-size: 14px;
    display: inline-block;
  background: transparent;
  background-image: url("../images/grey-arrow-down.svg");
    background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 13px;
}
.form-comment .form-group.lead select:focus {
    box-shadow: none;
}

.form-comment button.submit-btn {
    padding: 9px 20px;
    background: #1C75BC;
    border: 1px solid #F5F6F7;
    box-shadow: 0px 2px 5px rgba(38, 51, 77, 0.03);
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #FFFFFF;
    transition: all 0.5s;
}
.form-comment button.submit-btn:hover {
    opacity: 0.5;
}





.form-comment .form-group .flex-row {
    display: flex;
    align-items: center;
    gap: 20px;
}
.form-comment .form-group .wrapper {
    border-right: 0;
    width: 232px;
    height: 80px;
    border: 1px solid #A3A3A3;
    border-radius: 5px;
    overflow: hidden;
}
.form-comment .form-group canvas#signature-pad {
    background: #fff;
    width: 100%;
    height: 100%;
    cursor: crosshair;
}
.checklist-open .audio-inner .accordion-item .accordion-header .accordion-button::after{
    background-image: url(../images/grey-arrow-down.svg);
     width: 14px;
    height: 8px;
    background-size: auto;
    position: relative;
    right: 5px;
}
.checklist-open .accordion-item .accordion-header .accordion-button.audio::after{
    background-image: url(../images/arrow-down.svg);
    width: 14px;
    height: 8px;
    background-size: auto;
    position: relative;
    right: 5px;
}
.checklist-open .accordion-item.video {
    margin: 10px 0 0;
}

.tab-area ul {
    border: none;
    gap: 0.8vw;
    margin: 15px 0;
}
.tab-area button.nav-link {
    border: none;
    padding: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #A3A3A3;
}
.tab-area .tab-content .tab-pane {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #1C75BC;
}
.tab-area button.nav-link:hover,
.tab-area button.nav-link.active{
    color: #1E427E;
}
 