@import url(https://fonts.googleapis.com/css?family=Teko|Poppins|Roboto);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
*{
    padding: 0;
    margin: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--bodybg) !important;
    margin: 0;
    padding: 0;
    font-family: Inter, sans-serif;
    color: #343434;
    letter-spacing: .05rem;
    font-size: 15px;
    width: 100%;
    line-height: 1.5rem;
}

.thin-logo {
    width: 100px;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: var(--link);
}

a:hover {
    cursor: pointer;
    text-decoration: none;
    color: var(--link-hover);
}

select,
input[type=text],
[type=email],
[type=tel],
[type=url],
[type=password],
[type=number]
{
    height: 45px;
    border: 1px solid var(--grey-350);
    border-radius: 5px;
    padding: 10px;
    width:100%;
    margin-top: 8px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: 1px solid #999;
}

[type=checkbox]
{
    border-radius: 5px;
}

input[type="date"],
input[type="time"]{
    display: unset !important;
    flex-direction: unset !important;
    align-items: unset !important;
    padding: 10px;
    border-radius: 5px;
    /* border: 1px solid var(--grey-350); */
}
input::-moz-placeholder {
    letter-spacing: 0.25px;
}
input::placeholder {
    letter-spacing: 0.25px;
}

textarea{
    width: 100%;
    height: 200px;
    /* border: 1px solid var(--grey-350); */
    border-radius: 5px;
    padding: 15px;
    box-sizing: border-box;
    line-height: 25px;
    font-family: inherit;
    margin-top:8px;
}


.btn {
    border-radius: 5px;
    cursor: pointer;
    text-transform: capitalize;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 10px 25px;
    border: 0;
    height: 45px;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 0.04rem;
    white-space: nowrap;
    display: flex;
    background-image: linear-gradient(#25c283, #13b271);
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px;
}
/* set color to avoid a:hover property applied to buttons */
.btn:hover {
    color: #fff;
}

.btn-grey {
    background: #919394;
}

.btn-red {
    background: var(--canceled);
}

.btn-status{
    background: var(--button-status);
    color: var(--grey-800);
    height: 30px;
    cursor: default;
    padding: 3px 20px;
    font-size: 14px;
    justify-content: center;
    box-shadow: none;
}

.initials {
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border: 1px solid #C8CBCC;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    border-radius: 50%;
    font-weight: bold;
}

.initials-wrap{
    display: flex;
    width: -moz-max-content;
    width: max-content;
}

/** Modal **/
/* Change Plan Modal Styling */
.modal-container {
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 30px;
    gap: 20px;
    position: relative;
    max-width: 50%;
}

.modal-container .heading-section{
    font-size: 22px;
}

.modal-container h3 {
    font-size: 22px;
}

.modal-container p {
    line-height: 30px;
}

small {
    font-size: 12px;
}

medium {
    font-size: 14px;
}



#footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    background-color: #fafafa;
    color: #797979;
    box-shadow: 0 -5px 10px #e5e4e4;
    width: 100%;
}

#footer-wrap .footer-links {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    text-transform: capitalize;
    gap: 15px;
}

#footer-wrap .footer-content {
    width: 1100px;
    padding:20px 10px;
    display: flex;
    flex-direction: column;
    gap:20px;
}

#footer-wrap .footer-copyright {
    background-color: #f1f1f1;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 2px -2px #dadada;
}

.switch {
    display: inline-block;
    height: 20px;
    position: relative;
    width: 40px;
    margin-top:4px;
}

.switch input {
    display:none;
}

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

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 12px;
    width: 12px;
    left: 4px;
    position: absolute;
    transition: .4s;

}

input:checked + .slider {
    background-color: #66bb6a;
}

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

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

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

.title {
    letter-spacing: .1rem;
    font-weight: 700;
}

.s1 {
    font-size: 30px;
}

.s2 {
    font-size: 26px;
}

.s3 {
    font-size: 22px;
}

.s4 {
    font-size: 18px;
}

.container-wrap {
    display: block;
    border-radius: 7px;
    padding:25px 25px;
    background: var(--white);
    margin-bottom:20px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    float:left;
    width: 100%;
}

.container-wrap .header {
    border-bottom: 1px solid var(--grey-250);
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: capitalize;

}

.container-wrap .title{
    text-transform: capitalize;
    font-weight: 700;
    white-space: nowrap;
}

.container-wrap .subtitle{
    text-transform: capitalize;
    font-weight: normal;
    font-size: 16px;

}

@media (min-width: 320px) and (max-width: 480px) {
    body {
        font-size: 14px !important;
    }

    .btn {
        border-radius: 5px;
        cursor: pointer;
        text-transform: capitalize;
        color: var(--white);
        justify-content: center;
        justify-items: center;
        text-align: center;
        padding: 10px 15px;
        border: 0;
        height: 45px;
        font-size: 13px;
        font-weight: bold;
        letter-spacing: 0.02rem;
        display: flex;
    }
}


/****** layout styles *******/

/* Animations */

@keyframes anim-slide-down {
    from {
        margin-top: -450px;
    }
    to {
        margin-top: 0;
    }
}
@keyframes anim-slide-up {
    from {
        margin-bottom: -450px;
    }
    to {
        margin-bottom: 0;
    }
}
@keyframes anim-slide-left {
    from {
        margin-right: -450px;
    }
    to {
        margin-right: 0;
    }
}
@keyframes anim-slide-right {
    from {
        margin-left: -450px;
    }
    to {
        margin-left: 0;
    }
}
/* / Animations */


/* Main content area */
body .main-container {
    width: 100%;
    position: relative;
}

.container {
    display: block;
    border-radius: 7px;
    padding:25px 25px;
    background: var(--white);
    margin-bottom:20px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    float:left;
    width: 100%;
}

.container .header {
    border-bottom: 1px solid var(--grey-250);
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 17px;
}

.container .title{
    text-transform: capitalize;
    font-weight: 700;
    white-space: nowrap;
}

.container .subtitle{
    font-weight: normal;
    font-size: 14px;
}

.signature-box {
    padding: 10px;
    border-radius: 5px;
    border:1px solid var(--grey-250);
}

/****************
TP CSS Seperation
*****************/

a.toggle-context {
    display: flex;
    min-width: 24px;
    justify-content: center;
}

body .main-container {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    position: relative;
    display: flex;
    min-height: 100%;
}

body .main-container > main {
    box-sizing: border-box;
    width: 100%;
    padding: 0 0 15px 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    max-height: 100vh;
    overflow-y: auto;
}

body .main-container > main .main-section {
    padding: 30px 30px;
    flex: 1;
    width: 100%;
    max-width: 1260px;
}

body .main-container > main .main-section.no-padding {
    padding: 0;
}

/* Sidebar Menu */
aside#DashboardSidebar {
    height: 100vh;
    min-height: 100%;
    background-color: var(--white);
    /*width: 100%;*/
    z-index: 999; /*Make sure menu is place on top other elements within the page*/
    padding: 10px 0 62px 0;
    border-right: 1px solid var(--grey-250);
    box-shadow: 8px 0 10px -3px #e7ebec;
}

aside#DashboardSidebar > header {
    padding-left: 25px;
    padding-right: 20px;
    height: 30px;
    margin-bottom: 33px;
}

aside#DashboardSidebar > header .logo {
    padding:0;
    margin:0;
}
aside#DashboardSidebar > header .logo a {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
/* Clip out the ThinPaper from Logo when menu is collapsed*/
aside#DashboardSidebar.collapsed > header .logo img {
    clip-path: inset(0px 52px 0px 0px);
}

aside#DashboardSidebar > header .menu-toggle {
    display: flex;
    justify-content: end;
}

aside#DashboardSidebar .sidebar-link {
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 10px;
    color: var(--grey-1000);
    margin-left:20px;
    width: 100%;
    gap: 10px;
    white-space: nowrap;
    margin-right:20px;
}

aside#DashboardSidebar .sidebar-link:hover{
    color: var(--grey-600);
}
aside#DashboardSidebar .sidebar-link.active {
    background-color: #daefed;
    font-weight: bold;
    border-radius: 5px;
}

aside#DashboardSidebar.collapsed .sidebar-link {
    margin-right:3px;
}
    /* Do not expand sidebar dropdown if sidebar is collapsed*/
aside#DashboardSidebar.collapsed > .nav-container > nav > details > div {
    display: none;
}

aside#DashboardSidebar > footer {
    margin: 0 15px 0 15px;
    padding: 0;
    position: relative;
}

aside#DashboardSidebar > footer {
    margin-left: 20px;
    position: relative;
    gap: 25px;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

aside#DashboardSidebar .nav-container::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

aside#DashboardSidebar .nav-container::-webkit-scrollbar-thumb {
    border-radius: 20px; /* roundness of the scroll thumb */
}

aside#DashboardSidebar.collapsed .DashboardSidebarExpandSidebar,
aside#DashboardSidebar:not(.collapsed) #DashboardSidebarCollapseSidebar,
    /*aside#DashboardSidebar:hover #DashboardSidebarCollapseSidebar,*/
aside#DashboardSidebar.collapsed .hide-on-collapse {
    display: none !important;
}

aside#DashboardSidebar.collapsed .logo {
    width:20px;
}

/* \Sidebar Menu */

/* Main Header */
.dashboard-search-wrap {
    background: #F8FAFC;
    border: 1px solid #D4D8D9;
    box-sizing: border-box;
    border-radius: 5px;
    color: #000;
    padding: 8px 12px;
    gap: 10px;
    min-width: 400px;
    align-content: end;
}

.dashboard-search-wrap > input {
    background: #F8FAFC;
    border: none;
    outline: none;
    font-size: 16px;
    line-height: 25px;
    width: 100%;
    letter-spacing: 0.5px;
}

.notification-profile {
    align-items: center;
    gap: 50px;
}

header { /* Safari */
    position: sticky;
    top: 0;
    z-index:999;
}

.header-container {
    position: relative;
    width: 100%;
    height: 75px;
    margin: 0;
    align-items: center;
    background: var(--white);
    justify-content: space-between;
    padding: 15px 15px 15px 15px;
    box-shadow: 0 0 10px 0 #d4d8d9;
    z-index: 999999;
    display: flex;
}

.header-content-merge {
    width: 100%;
}

@media screen and (max-width: 768px){
    .header-container h2,
    .header-container .dashboard-search-wrap{
        display: none;
    }
    .header-container .flex.notification-profile{
        justify-content: right;
        width: 100%;
    }
    .dashlink-wrap{
        flex-direction: column;
        align-items: center;
    }
}
.header-first-banner {
    margin-left: -15px;
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--light-green);
    position: relative;
}

.header-first-banner p {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
}

.header-first-banner p a {

    text-decoration: none;
}

.header-first-banner-cls{
    position: absolute;
    right: 20px;
    font-size: 25px;
    cursor: pointer;
    color: #024532;
}

a.header-first-banner-btn.header-first-banner-btn{
    color: white;
    text-transform: uppercase;
}

.header-first-banner p::first-letter {
    text-transform: capitalize;
}

.header-container-child {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.header-container-child span {
    position: relative;
    margin-right: 5px;
    color: var(--grey-500);
    font-weight: bold;
}

.header-img-container {

    border-radius: 50px;
    font-size: 14px;
    overflow: hidden;
    display: inline-block;
}

.header-img-container img {
    width: 100%;
    height: 100%;
    font-size: 14px;
    -o-object-fit: cover;
       object-fit: cover;
}
header #MainHeaderProfileDropdownToggle{
    position: relative;

}

/********************************/
/* Main Header Profile Dropdown */
/********************************/
#MainHeaderProfileDropdown {
    position: absolute;
    width: 250px;
    right: 5%;
    top:100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 18px;
    letter-spacing: 0.25px;
    box-sizing: border-box;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 9999999999;
    flex-direction: column;
    padding: 28px 20px;
    height: -moz-fit-content;
    height: fit-content;
    gap: 10px;
}

header #MainHeaderProfileDropdownToggle:hover #MainHeaderProfileDropdown.visible {
    display: flex !important;
}

#MainHeaderProfileDropdown > div:first-child {
    display: flex !important;
    gap: 10px;
    margin-bottom: 26px;
    max-width: 100%;
    word-wrap: anywhere;
}

#MainHeaderProfileDropdown > div:first-child > img {
    width: 45px;
    height: 45px;
    border-radius: 40.2039px;
}

.header-container-child #MainHeaderProfileDropdown.header-dropdowm-list span,
#MainHeaderProfileDropdown.header-dropdowm-list a:last-child,
#MainHeaderProfileDropdown.header-dropdowm-list span{
    margin: 0;
}

#MainHeaderProfileDropdown > div:first-child .name {
    font-size: 14px;
    line-height: 21px;
}

#MainHeaderProfileDropdown > div:first-child .email {
    font-size: 12px;
    text-transform: lowercase;
    overflow-wrap: anywhere;
}

#MainHeaderProfileDropdown a {
    display: flex;
    gap: 20px;
    font-size: 14px;
    line-height: 21px;

}

#MainHeaderProfileDropdown a:hover {
    color: #FFF;
}

.header-dropdowm-list a:last-child {
    margin-top: 10px
}

.header-dropdowm-list span {
    margin-left: 10px;
}

/* Main Header */

/**************************/


header h2 {
    color: var(--black);
    font-weight: normal;
    font-size: 20px;
    text-transform: capitalize;
}

aside .dropdown-container {
    background: var(--white);
    width: 90%;
    margin: 20px auto;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

aside .dropdown-container-child {
    position: relative;
}

aside .dropdown-container img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}

aside .dropdown-container .img-capt {
    position: relative;
    top: -10px;
    margin-left: 10px;
    font-size: 14px;
    font-weight: bold;
    color: var(--grey-500);
}

aside .dropdown-container .down-arrow {
    position: absolute;
    right: 0;
    color: var(--grey-500);
    top: 10px;
}

.aside-dropdowm-list {
    position: absolute;
    border-radius: 20px;
    top: 200px;
    width: 90%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 12px;
    box-sizing: border-box;
    background: var(--v2-green);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.aside-dropdowm-list.visible,
.header-dropdowm-list.visible {
    display: block;
}

.aside-dropdowm-list a {
    display: block;
    padding: 20px;
    color: var(--grey-500);
    text-decoration: none;
    transition: color 0.7s;
    text-transform: capitalize;
}

.aside-dropdowm-list a:hover {
    color: var(--green-200);
}

.aside-dropdowm-list img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}

.aside-dropdowm-list span {
    position: relative;
    top: -8px;
    margin-left: 10px;
}

aside .nav-container {
    overflow: auto;
    height: calc(100vh - 240px);
}

aside nav {
    box-sizing: border-box;
    width: 80%;
}

aside nav details {
    display: block;
    text-decoration: none;
    color: var(--grey-500);
    text-transform: capitalize;
    transition: color 0.7s;
}

aside nav details div {
    margin: 20px 0 20px 25px;
    border-left: 1px solid rgba(111, 121, 121, 0.29);
}

details summary {
    list-style: none;
    padding: 15px;
    cursor: pointer;
    transition: color 0.7s;
}

aside nav a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: var(--grey-500);
    text-transform: capitalize;
    transition: color 0.7s;
}

aside nav details div a {
    padding: 15px;
}

.usefulsign-step-wrap {
    margin: 0 auto;
    display: flex;
    justify-content: start;
    gap: 15px;
    flex-direction: column;
}
@media screen and (min-width: 600px){
    .usefulsign-step-wrap {
        flex-direction: row;
    }
}
.usefulsign-step {
    display: flex;
    gap: 10px;
}

/********** animations *********/
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes asideNavSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.v2-dashboard-content-area > .greetings {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-top: 32px;
    margin-bottom: 10px;
}

/* V2 Folder Styling*/
#FoldersListingPageHeader {
    margin-top: 22px;
    margin-bottom: 80px;
    align-items: center;
}

#FoldersListingPageHeader h4 {
    font-size: 24px;
    line-height: 30px;
}

#FoldersListingPageHeader button {
    justify-content: center;
    align-items: center;
    padding: 13.39px;
    background: var(--button);
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: capitalize;
    color: #F8FAFC;
    border: none;
    cursor: pointer;
}

.folder-grid-item-view {
    display: flex;
    flex-direction: column;
    max-width: 180px
}

.folder-grid-item-view .dash-folder-icon-wrap {
    color: #1A444C;
}

.folder-grid-item-view:hover .dash-folder-icon-wrap {
    color: #215861;
}

#FoldersListingPage {
    gap: 80px;flex-wrap: wrap;
}

.folder-grid-item-view {
    align-items: center;
    text-align: center;
    padding-top:15px;
}

.folder-grid-item-view .dash-folder-name {
    font-size: 14px;
    text-align: center;
}

/* Create a Folder Modal styling */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

section.folder-page{
    display: flex;
    flex-direction: column;
    gap: 30px;

}
section.folder-page a.flex:not(.documents-list-name){
    align-items: center;
    gap: 17px;
}
section.folder-page a.flex span{
    line-height: 30px;
    color: #525454;
}
section.folder-page > .flex > h5{
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

/* Modal Content */
.modal-content {
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    gap: 34px;
    width: 621px;
    max-width: 100%;
}

.modal-content  .header {
    border-bottom: 1px solid var(--grey-350);
    padding-bottom: 10px;
    font-weight: 600;
}

.modal-content > .flex.justify-between {
    align-items: center;
}

.modal-content .title {
    font-size: 18px;
}

/* The Close Button */
.modal-content span.close {
    color: var(--grey-500);
    width:12px;
    height:12px;
}

.modal-content span.close:hover,
.modal-content span.close:focus {
    color: #000;
    cursor: pointer;
}

.modal-content input::-moz-placeholder {
    color: #525454;
}

.modal-content input::placeholder {
    color: #525454;
}

.modal-content small#NewFolderNameError {
    color: red;
    font-size: 10px;
}

.modal-content .btn-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* UsefulMedia Pagination*/
.um-pagination{
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-bottom: 50px;
}

.um-pagination nav,
.um-pagination{
    display: flex;
    width: 100%;
}
.um-pagination nav{
    justify-content: center;
}
.um-pagination nav ul{
    list-style-type: none;
}
.um-pagination nav ul li{
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #215861;
    background-color: transparent;
    cursor: pointer;
}
.um-pagination nav ul li > a,
.um-pagination nav ul li > *{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.um-pagination nav ul li,
.um-pagination nav ul li > *{
    color: #215861;
}
.um-pagination nav ul li.active,
.um-pagination nav ul li.active > *{
    background-color: #215861;
    color: #fff;
}
.um-pagination nav ul li.disabled,
.um-pagination nav ul li.disabled > *{
    color: #169E96;
    border-color: #169E96;
}
.um-pagination nav ul li:first-of-type{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.um-pagination nav ul li:last-of-type{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
/* /UsefulMedia Pagination*/

/* UsefulMedia Dropdown*/
.um-dropdown {
    position: relative;
}

.um-dropdown .dropdown-content {
    display: none;
    position: absolute;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    min-width: 150px;
}

.um-dropdown .dropdown-content.show {display: block!important;}
/* /UsefulMedia Dropdown*/

@media screen and (min-width: 600px) {
    #FooterLinksWrap{
        flex-direction: row;
    }
}


/* Get Started Modal Content */
#getStartedModal .modal-content {
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 70px 40px;
    gap: 34px;
    width: 621px;
    max-width: 100%;
    align-items: center;
    justify-content: center;
}

#getStartedModal.modal-content > .flex.justify-between {
    align-items: center;
}
#getStartedModal .modal-content .title {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
}
#getStartedModal .modal-content .getstartedinfo-wrap p {
    font-weight: 400;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #6E7070;
}
#getStartedModal .modal-content .getstartedlinks-wrap{
    display: flex;
    gap: 25px;
}
#getStartedModal .modal-content .getstartedlinks-wrap .getstartedlinks{
    display: flex;
    gap: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border: 1px solid #EBEDED;
    border-radius: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.15px;
}
/* Get Started Modal Styling*/

/* Inline Upgrade Toast */
#inlineUpgradeToast{
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 500;
    background: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3), 0 12px 24px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    width: 380px;
    animation-name: anim-slide-left;
    animation-fill-mode: forwards;
    /*animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    animation-duration: 500ms;
}
#inlineUpgradeToast .upgrade-toast-icon-wrap{
    width: 44px;
    min-width: 44px;
    background: #E0FBF9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
}
#inlineUpgradeToast .upgrade-toast-content-wrap{
    padding: 16px 10px;
}
#inlineUpgradeToast .upgrade-toast-content-wrap .close{
    cursor:pointer;
}
#inlineUpgradeToast .upgrade-toast-content-wrap h4{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.15px;
}
#inlineUpgradeToast .upgrade-toast-content-wrap p{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.25px;
    color: #525454;
}
#inlineUpgradeToast .upgrade-toast-content-wrap p a{
    color: #169E96;
}
/* /Inline Upgrade Toast */

/* Restricted Template Upgrade Modal */
#restrictedTemplateUpgradeModal .modal-content{
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 15px 50px 40px;
    width: 550px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    animation-name: anim-slide-down;
    animation-fill-mode: forwards;
    /*animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    animation-duration: 500ms;
}
#restrictedTemplateUpgradeModal .modal-content .upgrade-notice-wrap{
    display: flex;
    flex-direction: column;
    width: 550px;
    max-width: 100%;
    text-align: center;
    align-items: center;
}
#restrictedTemplateUpgradeModal .modal-content .upgrade-notice-wrap img{
    max-width: 320px;
}
#restrictedTemplateUpgradeModal .modal-content h3{
    font-weight: 700;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #1A444C;
    margin-bottom: 20px;
}
#restrictedTemplateUpgradeModal .modal-content p{
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}
#restrictedTemplateUpgradeModal .modal-content .btn.btn-primary{
    min-width: 200px;
    max-height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.3866px;
    gap: 8.19px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
}
/* /Restricted Template Upgrade Modal */


/* Small Restriction Upgrade Modal */
.modal.small-restriction-upgrade-modal .modal-content{
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 40px;
    width: 463px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    animation-name: anim-slide-down;
    animation-fill-mode: forwards;
    /*animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);*/
    animation-duration: 500ms;
    position: relative;
}
.modal.small-restriction-upgrade-modal.no-usefulsign-trial .modal-content{
    width: 760px;
}
.modal.small-restriction-upgrade-modal .modal-content .upgrade-notice-wrap{
    display: flex;
    flex-direction: column;
    max-width: 100%;
    text-align: center;
    align-items: center;
}
.modal.small-restriction-upgrade-modal .modal-content .upgrade-notice-wrap .close{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.modal.small-restriction-upgrade-modal .modal-content h3{
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #1A444C;
    margin-bottom: 20px;
}
.modal.small-restriction-upgrade-modal .modal-content p{
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
}
.modal.small-restriction-upgrade-modal .modal-content .btn.btn-primary{
    width: 100%;
    max-height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16.3866px;
    gap: 8.19px;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
}
/* /Small Restriction Upgrade Modal  */

/* Limits Reached Upgrade Modal */

.modal.small-restriction-upgrade-modal.limits-reached .modal-content{
    padding: 32px
}
.modal.small-restriction-upgrade-modal.limits-reached .modal-content h3{
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.1px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.modal.small-restriction-upgrade-modal.limits-reached .modal-content p{
    line-height: 24px;
    display: flex;
    align-items: center;
    text-align: center;
    letter-spacing: 0.25px;
    color: #6E7070;
    margin-bottom: 20px;
}

.modal.small-restriction-upgrade-modal.limits-reached .modal-content .btn.btn-primary{
    max-width: 250px;
}
/* /Limits Reached Upgrade Modal */



.click-to-copy{
    cursor: copy!important;
}
.copied{
    cursor: pointer!important;
    background-color: #eee!important;
}

.mobile-menu {
    display: none;
}


@media (min-width: 320px) and (max-width: 480px) {
    .container {
        display: flex;
        flex-direction: column;
        padding:15px;
        margin-bottom: 10px;
    }

    .container .header {
        font-size: 16px;
    }

    .container .header .title {
        font-size: 16px;
    }

    .container .header .subtitle {
        display: none;
    }

    aside#DashboardSidebar{
        visibility: hidden;
        width:0px;
    }


    .mobile-menu {
        display: block;
    }

    body .main-container > main .main-section {
        padding:10px;
    }

    .usefulsign-step-wrap {
        display: none
    }
}
.header-container .logo.mobile-only{
display: none;
}
@media screen and (max-width: 600px) {
    aside#DashboardSidebar:not(.mobile-collapsed){
        visibility: visible;
        width:182px;
        position: fixed;
    }
    aside#DashboardSidebar:not(.mobile-collapsed) .nav-container nav .menu-toggle,
    aside#DashboardSidebar:not(.mobile-collapsed) .nav-container nav .pt-8{
        display: none!important;
    }
    .header-container .logo.mobile-only{
        display: block;
    }
    .modal .modal-content {
        border-radius: 8px 8px 0 0!important;
        width: 100%!important;
        max-width: 100%!important;
        position: fixed!important;
        bottom: 0!important;
        max-height: -moz-max-content;
        max-height: max-content;
    }
}

:root{
    /* ThinPaper CSS variables */
    --green: #2dae7a;
    --blue: #6898B9;
    --dark-blue: #416d96;
    --yellow: #FFC107;
    --orange: #f58123;
    --light-blue: #d2ebf3;
    --light-green: #e5f8d4;
    --grey-1000: #555555;
    --bodybg: #f5f5f5;
    --white: #fff;
    --button: #2dae7a;  /* Other option: #5FC495 */
    --button-status: #D4ECEB;
    --red: #C75757;
    --grey-1: #efefef;
    --subtitle: #696868;

    --link: #4088a4;
    --link-hover: #558bbe;

    /* UsefulPDF CSS variables */
    --grey-800: #696868;
    --grey-600: #919394;
    --grey-500: #7b7c81;
    --grey-400: #adb3b8;
    --grey-350: #C8CBCC;
    --grey-300: #c4c4c4;
    --grey-250: #E3E7E8;
    --grey-200: #c2efdd;
    --grey-100: #f5f5f5;
    --grey-150: #e8f6f5;
    --grey-50: #F8FAFC;
    --brand-light: #eaf3f6;
    --green-200: #15523a;

    --ruby-red: #C75757;
    --green-sidebar-v2: #011A0B;
    --blue-primary-v2: #169E96;
    --light-blue-200: rgba(171, 218, 255, 0.7);;
    --light-blue-100: rgba(179, 221, 255, 0.05);
    --v2-green: #011A0B;
    --v2-green-100: #2dae7a;
    --blue-100: #6fbfce;
    --blue-dianne: #1A444C;
    --yellow-200: #F3E42FFF;
    --yellow-100: #bdb76b;
    --brand-dot-green: #46a278;
    --brand-dot-orange: #f1965a;
    --black: #25282b;
    --shadow: rgba(0, 0, 0, 0.2);
    --completed: #169E96;
    --canceled: #d55252;
    --me-waiting: #A6AD23;
    --others-waiting: #4CB0C2;

    /* Widescreen */
    --screen-wide: 1281px;

    /* Laptop / Desktop */
    --screen-wide-max: 1280px;
    --screen-wide-min: 1025px;

    /* Ipad / Tablets */
    --screen-mid-max: 1024px;
    --screen-mid-min: 768px;

    /* Mobile Landscape / Smaller tablets */
    --screen-low-max: 767px;
    --screen-low-min: 461px;

    /* Most Mobile */
    --screen-mobile-max: 480px;

    --screen-landscape: landscape;
    --screen-portrait: portrait;
}



/* Utilities Styling*/

.box-radius {
    border-radius: 20px
}

.text-left{
    text-align: left!important;
}
.text-right{
    text-align: right!important;
}
.text-disabled {
    color: #bfbfbf
}

.text-primary {
    color: #15523a
}

.text-v2-green {
    color: var(--v2-green)!important;
}

.text-v2-green-100 {
    color: var(--green)!important;
}
.text-red {
    color: var(--ruby-red) !important;
}

.text-center {
    text-align: center
}

.cursor-pointer{
    cursor: pointer;
}

.hidden{
    display: none!important;
}

.section-vertical-scroll{
    overflow-y: auto;
}

.capitalize {
    text-transform: capitalize
}

.uppercase {
    text-transform: uppercase
}

.relative {
    position: relative
}
.absolute {
    position: absolute
}

.block {
    display: block;
}

.flex {
    display: flex
}

.flex-col {
    flex-direction: column
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}
.justify-start {
    justify-content: flex-start;
}
.justify-end {
    justify-content: flex-end;
}

.items-center {
    align-items: center
}
.items-start {
    align-items: flex-start;
}
.items-end {
    align-items: flex-end;
}

.flex-1 {
    flex: 1 1 0%
}

.flex-auto {
    flex: 1 1 auto
}

.flex-initial {
    flex: 0 1 auto
}

.flex-shrink-0 {
    flex-shrink: 0
}

.mt-12px{
    margin-top: 12px;
}

.mt-5{
    margin-top: 1rem
}

.mb-5{
    margin-bottom: 1rem
}

.mb-10{
    margin-bottom: 2rem
}

.mb-15{
    margin-bottom: 3rem
}

.mb-20{
    margin-bottom: 4rem
}

.mb-36 {
    margin-bottom: 9rem
}

.pt-4 {
    padding-top: 1rem
}

.pt-8 {
    padding-top: 2rem
}

.pt-16{
    padding-top: 4rem
}

.pb-16 {
    padding-bottom: 4rem
}

.pb-100px {
    padding-bottom: 100px
}

.um-btn-primary{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 4px;
    gap: 8px;
    height: 50px;
    background: #169E96;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    color: #F8FAFC;
}

.gap-8px {
    gap: 8px
}
.gap-10px {
    gap: 10px
}

.gap-16px {
    gap: 16px
}
.gap-20px {
    gap: 20px
}

.gap-100px {
    gap: 100px
}

.gap-1 {
    gap: .25rem
}

.gap-2 {
    gap: .5rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-5 {
    gap: 1.25rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-8 {
    gap: 2rem
}

.gap-10 {
    gap: 2.5rem
}

.gap-16 {
    gap: 4rem
}

.gap-20 {
    gap: 5rem
}

.p-0 {
    padding: 0
}

.p-1 {
    padding: .25rem
}

.p-2 {
    padding: .5rem
}

.p-3 {
    padding: .75rem
}

.p-4 {
    padding: 1rem
}

.p-5 {
    padding: 1.25rem
}

.p-6 {
    padding: 1.5rem
}

.p-7 {
    padding: 1.75rem
}

.p-8 {
    padding: 2rem
}

.p-10 {
    padding: 2.5rem
}

.p-16 {
    padding: 4rem
}

.p-20 {
    padding: 5rem
}

.p-16px {
    padding: 16px
}
.border {
    border: 1px solid;
}
.border-grey {
    border-color: #E3E7E8;
}

.w-full {
    width: 100%
}

.w-33 {
    width: 33%
}

.h-full {
    height: 100%
}

/* \Utilities Styling*/

.rotate {
    animation: rotation 2s;
}

.linear {
    animation-timing-function: linear;
}

.cubic-bezier {
    animation-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

.infinite {
    animation-iteration-count: infinite;
}

.no-max-w{
    max-width: unset!important;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

.empty h5{
    font-size: 20px;
    line-height: 30px;
    text-align: center;
    color: #252626;
}

.empty p{
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    color: #525454;
}

/* Alerts */
.alert {
    --bs-alert-bg: transparent;
    --bs-alert-padding-x: 0.6rem;
    --bs-alert-padding-y: 0.6rem;
    --bs-alert-margin-bottom: 1rem;
    --bs-alert-color: inherit;
    --bs-alert-border-color: transparent;
    --bs-alert-border: 1px solid var(--bs-alert-border-color);
    --bs-alert-border-radius: 0.375rem;
    position: relative;
    padding: 0.5rem;
    margin-bottom: var(--bs-alert-margin-bottom);
    color: var(--bs-alert-color);
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
    border-radius: var(--bs-alert-border-radius);
}

.alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
}

.alert-success {
    --bs-alert-color: #0f5132;
    --bs-alert-bg: #d1e7dd;
    --bs-alert-border-color: #badbcc;
}
.alert-success .alert-link {
    color: #0c4128;
}

.alert-info {
    --bs-alert-color: #055160;
    --bs-alert-bg: #cff4fc;
    --bs-alert-border-color: #b6effb;
}
.alert-info .alert-link {
    color: #04414d;
}

.alert-warning {
    --bs-alert-color: #664d03;
    --bs-alert-bg: #fff3cd;
    --bs-alert-border-color: #ffecb5;
}
.alert-warning .alert-link {
    color: #523e02;
}

.alert-danger {
    --bs-alert-color: #842029;
    --bs-alert-bg: #fdebee;
    --bs-alert-border-color: #f5c2c7;
}
.alert-danger .alert-link {
    color: #6a1a21;
}

.float-right {
    justify-content: right;
}

/* Default Resizer removal*/

.canvas-field-float.ui-resizable .ui-icon-gripsmall-diagonal-se {
    background-image: unset!important;
    border-color: transparent!important;
    color: transparent;
}
/* /Default Resizer removal*/

/** Radio Button Wrapper **/
.radio-button-group-wrap {
    background: #F8FAFC;
    border-radius: 15px;
    padding: 20px 20px;
}

.radio-button-group-wrap > .radio-button-wrapper {
    list-style: none;
    display: flex;
    gap: 15px;
}

.radio-button-group-wrap > .radio-button-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    gap: 10px;
    max-width: 169px;
    min-height: 49px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 18px;
    color: var(--white);
}

.radio-button-group-wrap > .radio-button-wrapper a .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.radio-button-group-wrap > .radio-button-wrapper a.all:not(.active) .dot {
    border: .2px solid var(--green);
}
.radio-button-group-wrap > .radio-button-wrapper a:not(.active) {
    background: #FFFFFF;
    color: var(--grey-1000);
    border: 1px solid #E3E7E8;
}
.radio-button-group-wrap > .radio-button-wrapper a.active {
    color: #F8FAFC;
}
.radio-button-group-wrap > .radio-button-wrapper a.active .dot {
    background: #FFFFFF;
}
.radio-button-group-wrap > a{
    max-width: 173px;
}



.buttons-wrapper{
    position: relative;
}

.buttons-group{
    padding-top: 15px;
    justify-items: end;
    display: flex;
    grid-template-columns: auto auto;
    width: 100%;
    gap: 8px;
}

.buttons-group-item{
    border-radius: 5px;
    background: var(--white);
    padding: 6px;
    font-size:14px;
    text-align: center;
    color: var(--grey-800);
    border: 1px solid var(--blue-primary-v2);
    margin-right: 10px;
    cursor: pointer;
    transition: background 0.4s, color 0.4s;
}

.buttons-group-item-dot{
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: var(--button);
    margin-right: 5px;
    transition: background 0.4s;
}

.buttons-group-item-dot.dot-yellow{
    background: var(--yellow-200);
}

.buttons-group-item:hover,
.buttons-group-item.active{
    background: var(--button);
    color: var(--white);
}

.buttons-group-item:hover .buttons-group-item-dot,
.buttons-group-item.active .buttons-group-item-dot{
    background: var(--white);
}

.buttons-wrapper button{
    position: absolute;
    right: 20px;
    top: 50%;
    border: 0;
    transform: translateY(-50%);
}

/** Modal **/
/* Change Plan Modal Styling */
.modal-content {
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    margin: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px 30px;
    gap: 20px;
    max-width: 50%;
    position: relative;
    font-size: 14px;
}

.justify-content-space-between {
    justify-content: space-between;
}

.modal-content h3 {
    font-size: 22px;
}

.modal-content p {
    line-height: 30px;
}

.modal-content .flex {
    width: 100%;
}
.modal-content > .flex.flex-col {
    gap: 27px;
}

.pointer-hand {
    cursor: grab;
}

.column {
    float: left;
    width: 25%;
    padding:5px 0;
}

/* Clear floats after the columns */
.row:after {
    display: table;
    clear: both;
}

.grid-list-view {
    margin:0 20px 5px 0;
    display: grid;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    border-bottom: 1px solid var(--grey-250);
}

.grid-list-view .grid-item{
    font-size: 14px;
    padding:5px 0;
    margin-bottom: 5px;
}

.grid-list-view .grid-header{
    font-size: 14px;
    font-weight: bold;
    padding:0 0 10px 0;
}
.thin-tooltip {
    position: relative;
    display: inline-block;
}

.thin-tooltip .thin-tooltiptext {
    visibility: hidden;
    min-width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.thin-tooltip .thin-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.thin-tooltip:hover .thin-tooltiptext {
    visibility: visible;
    opacity: 1;
}


@media (min-width: 320px) and (max-width: 480px) {
    .grid-list-view {
        margin:0;
        grid-auto-rows: minmax(0, 1fr);
        grid-auto-flow: column;
    }

    .grid-list-view .grid-header{
        padding:2px 0;

    }

    .flex-wrapper {
        display: flex;
        flex-direction: column;
        gap:15px;
    }
}

/* Dropdown Button */
.drop-split-btn{
    display: flex;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.drop-split-btn .show-new-signer-form{
    padding-left: 10px;
    padding-right: 10px;
    border-right: 1px solid #ddd;
}
.drop-split-btn  .dropbtn {
    color: white;
    padding: 15px;
    font-size: 14px;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown .dropdown-content a {
    color: black;
    padding: 12px 15px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown .dropdown-content a:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdown.show .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #eee;}


.canvas-input-field > input {
    margin: 0 !important;
}

/* Notification */

.notification-container {
    position: fixed;
    font-size: 1.1em;
    box-sizing: border-box;
    z-index: 999999;
    overflow: hidden;
    transition: all 0.5s linear;
  }

  .notification-container.center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .notification-container.top-left {
    left: 10px;
    top: 10px;
  }

  .notification-container.bottom-left {
    left: 10px;
    bottom: 10px;
  }

  .notification-container.top-right {
    right: 10px;
    top: 10px;
  }

  .notification-container.bottom-right {
    right: 10px;
    bottom: 10px;
  }

  .notification-container.top-right .notification,
  .notification-container.bottom-right .notification {
    margin-left: auto;
  }

  .notification {
    position: relative;
    overflow: hidden;
    max-height: 500px;
    transition-property: all;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
    margin: 0 0 6px;
    opacity: 0.9;
    border-radius: 4px;
    box-shadow: 0 0 30px 0 rgba(36, 30, 30, 0.2);
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    z-index: 100;
  }

.notification-body:hover {
    box-shadow: 0 0 30px #000000;
    opacity: 1;
    cursor: pointer;
    border-radius: 10px;
}

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    display: none;
  }
  .notification-body {
    align-items: center;
    display: flex;
    min-height: 56px;
    width: 300px;
    padding: 0;
    letter-spacing: 1px;
    word-break: break-word !important;
      border-radius: 10px;
      /*border: 1px solid #D4D8D9;*/
  }

  .notification-icon {
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    padding: 0;
    margin: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 61px;
      min-width: 61px;
      flex: 1;
      min-height: 56px;
      border-radius: 10px 0 0 10px;
  }
  .notification-icon > svg{
    display: none;
  }
.notification .notification-body{

    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #D4D8D9;
}
  .notification-default .notification-icon  svg.default,
  .notification-warning .notification-icon  svg.warning,
  .notification-error .notification-icon  svg.error,
  .notification-info .notification-icon  svg.info,
  .notification-success .notification-icon svg.success {
    display: block;
  }
.notification-success .notification-body,
.notification-success .notification-icon{
    background: var(--green);
}
.notification-info .notification-body,
.notification-info .notification-icon{
    background: #60d0ff;
}
.notification-warning .notification-body,
.notification-warning .notification-icon{
    background: #F7FABE;
}
.notification-error .notification-body,
.notification-error .notification-icon{
    background: #FABEBE;
}
.notification-body .notification-icon{
    max-width: 60px;
    flex: 0;
}

  .notification-body > div {
    padding: 4px;
    height: 100%;
  }

  .notification-body > .notification-content {
      background: #FFFFFF;
      border: 1px solid #D4D8D9;
      border-radius: 0 10px 10px 0;
      padding: 25px 15px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      flex: 1;
      position: relative;
  }

.notification-body > .notification-content > .notification-close {
    position: absolute;
    right: 5px;
    top: 5px;
    display: inline-flex;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    padding: 3px;
    background: #FABEBE;
    color: #570A0A;
    justify-content: center;
    align-items: center;
}

.notification-body > .notification-content > .notification-close > svg {
    width: 80%
}

.notification .notification-title {
    line-height: 24px;
    letter-spacing: 0.15px;
    color: #252626;
}

  .notification .notification-desc {
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 0.25px;
  }

  .bottom-right .notification.animation-slide-in,
  .top-right .notification.animation-slide-in {
    animation: right-slide-in 0.5s forwards, bounceIn 0.7s forwards;
    transform: translateX(100%);
  }

  .bottom-right .notification.animation-slide-out,
  .top-right .notification.animation-slide-out {
    animation: right-slide-out 0.5s forwards;
  }

  .top-left .notification.animation-slide-in,
  .bottom-left .notification.animation-slide-in {
    animation: left-slide-in 0.5s forwards, bounceIn 0.7s forwards;
    transform: translateX(-100%);
  }

  .top-left .notification.animation-slide-out,
  .bottom-left .notification.animation-slide-out {
    animation: left-slide-out 0.5s forwards;
  }

  .notification.animation-fade-in {
    animation: fade-in 0.5s forwards, bounceIn 0.7s forwards;
    opacity: 0;
  }

  .notification.animation-fade-out {
    animation: fade-out 0.5s forwards;
  }

  .notification-buttons {
    display: flex;
    justify-content: center;
  }

  .notification-default .notification-buttons {
    border-top: 1px solid rgb(230, 226, 226);
  }

  .notification-button {
    background: rgba(255, 255, 255, 0.99);
    align-items: center;
    color: #000;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    min-height: 40px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
  }

  .notification-button:hover {
    background: #fff;
    /*color: #000;*/
    text-decoration: none;
  }

  .notification-cancel:before {
    content: '\2717';
  }

  .notification-cancel {
    color: darkred;
    border-right: 1px solid rgb(230, 226, 226);
  }

  .notification-cancel:hover {
    color: red;
  }

  .notification-action:before {
    content: '\2714';
  }

  .notification-action {
    color: green;
  }

  .notification-action:hover {
    color: rgb(4, 173, 4);
  }

  @keyframes left-slide-in {
    to {
      transform: translateX(0);
    }
  }

  @keyframes left-slide-out {
    to {
      transform: translateX(-100%);
      margin-top: 0;
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      max-height: 0;
      opacity: 0;
    }
  }

  @keyframes right-slide-in {
    to {
      transform: translateX(0);
    }
  }

  @keyframes right-slide-out {
    to {
      transform: translateX(100%);
      margin-top: 0;
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      max-height: 0;
      opacity: 0;
    }
  }

  @keyframes bounceIn {
    50% {
      transform: scale(0.9);
      opacity: 0.5;
    }
    75% {
      transform: scale(1.1);
      opacity: 0.9;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes fade-in {
    to {
      opacity: 1;
    }
  }

  @keyframes fade-out {
    to {
      margin-top: 0;
      margin-bottom: 0;
      padding-top: 0;
      padding-bottom: 0;
      max-height: 0;
      opacity: 0;
    }
  }

.dashboard-wrapper {
    display: grid;
    grid-template-columns: 66% 31%;
}

.dashboard-header-wrapper{
    display: flex;
    flex-direction: column;
}

.document-action-icons {
    max-width: 100%;
    max-height: 6vh;
    margin: auto;
}

.dashboard-header-wrapper-buttons{
    display: flex;
    flex-direction: row;
}

.doc-creation-box {
    border-radius: 5px;
    border: 1px solid var(--grey-250);
    width: 100%;
    min-height:50px;
    padding:15px;
}

.rounded-btn {
    border-radius: 50px !important;
    height: 60px;
    font-size: 18px;
    font-weight: bold;
    overflow: hidden;
    cursor: pointer;
}

.chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-wrapper {
    display: flex;
    flex-direction: row;
    gap:15px;
}

.banner {
    background: #DAEFED;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    box-shadow: none;
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top:75px;
}

.banner img {
    opacity: 0.7;
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
    padding:0;
    position: relative;
    margin-top: -100px;
}

.subtitle {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
}

.subtitle ~ p {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
}

.flex.gap-16.justify-center{
    margin-top: 15px;
    margin-bottom: 10px;
}

.dashboard-icon-img{
    width: 40px;
    height: 40px;
}

.dashlink{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 33%;
    height: 150px;
    background: #F8FAFC;
    border: 1px solid #E3E7E8;
    box-sizing: border-box;
    border-radius: 15px;
    max-width: 100%;
    text-align: center;
}

.dashlink > p{
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #525454;
}

.slim-bar {
    background-color: var(--grey-250);
    width:3px;
    height:50px;

}

.stats-box {
    width: 100%;
}

.stats-box .stats {
    padding-left:8px;
}

@media (min-width: 320px) and (max-width: 480px) {
    .dashboard-wrapper {
        display: flex;
        flex-direction: column;
    }

    .dashboard-header-wrapper-buttons{
        display: flex;
        flex-direction: column;
    }

    .banner {
        display: none;
    }

    .stats-box .stats {
        width: 100%;
    }

    .stats-box p {
        text-align: left;
    }
}

/* Dashboard Document Grid View*/
.dashboard-grid-view-documents{
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.dashboard-grid-view-documents header{
    flex: 1;
}
.dashboard-grid-view-documents header h5{
    font-size: 20px;
    line-height: 30px;
}
.dashboard-grid-view-documents header a{
    line-height: 30px;
}
.dashboard-grid-view-documents main{
    display: flex;
    padding: 0;
    gap: 20px;
    flex: 1;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 600px) {
    .dashboard-grid-view-documents main{
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

/* /Dashboard Document Grid View*/

/* Dashboard Document Grid Item*/
.dashboard-grid-document{
    display: flex;
    flex: 1;
    flex-direction: column;
    border: 1px solid #dcdcdc;
    border-radius: 15px;
    transition: 5ms ease-in-out all;
    max-width: 200px;
    min-width: 200px;
}

.dashboard-grid-document > .dash-doc-icon-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--button-status);
    padding-top: 20px;
    padding-bottom: 20px;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}
.dashboard-grid-document > .dash-doc-icon-wrap svg{
    transition: transform .2s;
}
.dashboard-grid-document > .dash-doc-icon-wrap:hover svg{
    transform: scale(1.2);
}
.dashboard-grid-document > .dash-doc-details-wrap{
    display: flex;
    flex-direction: column;
    background: #FBFDFE;
    padding: 17px 22px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
.dashboard-grid-document > .dash-doc-details-wrap .document-title{
    font-size: 14px;
    line-height: 30px;
    overflow-wrap: anywhere;
}
.dashboard-grid-document > .dash-doc-details-wrap .document-edited{
    font-size: 12px;
    line-height: 21px;
    color: #307E8D;
}
/* /Dashboard Document Grid Item*/

#UsefulDocsDashboard > .flex:first-child {
    margin-bottom: 20px;
}
#UsefulDocsDashboard > .flex:first-child > .greetings {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #252626;
}

#UsefulDocsDashboard .analytics {
    gap: 40px;
    margin-bottom: 20px;
}

#UsefulDocsDashboard .analytics > h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
}

#UsefulDocsDashboard .analytics > .flex {
    gap: 107px;
}

#UsefulDocsDashboard .analytics > .flex > .flex {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#UsefulDocsDashboard .analytics > .flex > .flex .tag {
    font-weight: 500;
    font-size: 14px;
    line-height: 10px;
    letter-spacing: 0.1px;
    color: #919394;
}

#UsefulDocsDashboard .analytics > .flex > .flex h2 {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #1A444C;
}

#UsefulDocsDashboard .doc-dashboard-chart {
    width: 500px;
    height: 250px;
}
.dashboard-grid-list-view-documents {
    gap: 15px;
}

.dashboard-grid-list-view-documents .dglvd-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
}

.dashboard-grid-list-view-documents header .filter-sort {
    gap: 50px;
}

.dashboard-grid-list-view-documents header .filter-sort > .flex {
    gap: 8px;
}

.dashboard-grid-list-view-documents header .filter-sort label {
    line-height: 30px;
    color: #6E7070;
}

.dashboard-grid-list-view-documents header .filter-sort select {
    line-height: 30px;
    background: transparent !important;
    border: none !important;
    outline: none;
}

.dashboard-grid-list-view-documents header .flex {
    align-items: center;
}

.dashboard-grid-list-view-documents header > .flex:not(.filter-sort) {
    gap: 70px;
}

.dashboard-grid-list-view-documents header .view-folder-group {
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.15px;
    gap: 17px;
}

.dashboard-grid-list-view-documents header .view-toggle {
    gap: 18px;
}

.dashboard-grid-list-view-documents header .view-toggle svg {
    color: #6E7070;
    cursor: pointer;
}

.dashboard-grid-list-view-documents header .view-toggle svg:hover,
.dashboard-grid-list-view-documents header .view-toggle svg.active {
    color: var(--blue);
}

.dashboard-grid-list-view-documents main {
    display: flex;
    padding: 0;
    gap: 20px;
    flex: 1;
    flex-wrap: wrap;
}
.dashboard-grid-list-view-documents .dglvd-docs-view.hidden {
    display: none!important;
}

/********* documents list view styles *********/
.dashboard-list-view-documents  .table-item-selected{
    display: flex;
    gap: 24px;
}
.dashboard-list-view-documents  .table-item-selected select,
.dashboard-list-view-documents  .table-item-selected input[type="number"]{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    width: 51px;
    height: 39px;
    border: 1px solid #169E96;
    border-radius: 8px;
}
.dashboard-list-view-documents  .table-item-selected .selected-active-item{
    display: flex;
    gap: 13px;
    justify-items: center;
    align-items: center;
}
.dashboard-list-view-documents  .table-item-selected > .selected-active-item:not(.show-always){
    display: none;
}
.dashboard-list-view-documents  .table-item-selected.visible > .selected-active-item:not(.show-always){
    display: flex;
}
.dashboard-list-view-documents  .tab1-header{
    width: 90%;
    margin: 30px auto 0;
    position: relative;
}

.dashboard-list-view-documents .tab1-header h3{
    color: var(--black);
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-header-select{
    border: 1px solid var(--grey-300);
    margin: 30px 0;
    border-radius: 8px;
    width: 180px;
    height: 40px;
    overflow: hidden;
    position: relative;
    background: transparent;
}

.dashboard-list-view-documents .tab1-header-select::after{
    content: "\25be";
    top: 8px;
    right: 15px;
    position: absolute;
    color: var(--grey-500);
    z-index: 0;
}

.dashboard-list-view-documents .tab1-header-select select{
    border: 0;
    width: 180px;
    height: 40px;
    padding: 0 10px;
    color: var(--grey-500);
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    z-index: 2;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-header-select select:focus{
    outline: 0;
}

.dashboard-list-view-documents .tab1-btn-group{
    display: grid;
    grid-template-columns: repeat(3, auto);
    -moz-column-gap: 10px;
         column-gap: 10px;
    width: 30%;
    margin: 20px 0;
}

.dashboard-list-view-documents .tab1-btn-group a{
    text-decoration: none;
    color: var(--grey-500);
    border: 1px solid var(--grey-500);
    background: none;
    text-transform: capitalize;
    text-align: center;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.dashboard-list-view-documents .tab1-btn-group a.active{
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.dashboard-list-view-documents .tab1-btn-group a.active .btn-dot{
    background: var(--white);
}

.dashboard-list-view-documents .tab1-btn-group .btn-dot{
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 8px;
}

.dashboard-list-view-documents .tab1-form-group span{
    color: var(--grey-500);
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-form-group input{
    color: var(--grey-500);
    border-radius: 8px;
    width: 30px;
    padding: 0 5px;
    border: 1px solid var(--green);
}

.dashboard-list-view-documents .tab1-form-group input:focus,
.dashboard-list-view-documents .tab1-header-side-group-form input:focus{
    outline: 0;
}

.dashboard-list-view-documents .tab1-header-side-group{
    position: absolute;
    right: 0;
    top: 0;
    text-align: right;
    height: 100%;
}

.dashboard-list-view-documents .tab1-header-side-group button{
    right: 0;
    top: 20px;
    border: 0;
    border-radius: 50px;
    background: var(--blue-100);
    overflow: hidden;
    margin-bottom: 30px;
}

.dashboard-list-view-documents .tab1-header-side-group button a{
    color: var(--white);
    text-decoration: none;
    background: var(--blue-100);
    text-transform: uppercase;
    display: block;
    padding: 15px 20px;
}

.dashboard-list-view-documents .tab1-header-side-group-form{
    border: 2px solid var(--green);
    border-radius: 50px;
    overflow: hidden;
    height: 40px;
    margin-bottom: 20px;
    position: relative;
}

.dashboard-grid-list-view-documents .tab1-header-side-group-form form{
    height: 100%;
}

.dashboard-list-view-documents .tab1-header-side-group-form input[type=text]{
    width: 85%;
    height: 100%;
    border: 0;
    padding: 0 10px;
    box-sizing: border-box;
    display: block;
    color: var(--grey-400);
}

.dashboard-list-view-documents .tab1-header-side-group-form span{
    position: absolute;
    right: 15px;
    top: 7px;
    color: var(--grey-400);
    cursor: pointer;
}

.dashboard-list-view-documents .tab1-main{
    margin: 10px auto 10px;

    box-sizing: border-box;
}

.dashboard-list-view-documents .tab1-main-grid{
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    padding: 0 5px;
}
.dashboard-list-view-documents .tab1-main-grid:nth-child(odd):not(:first-of-type){
    background: #F8FAFC;
    padding: 0 5px;
}

.dashboard-list-view-documents .tab1-main-grid.secondary{
    grid-template-columns: 9fr 1fr;
}

.dashboard-list-view-documents .tab1-main-grid:last-child{
    border-bottom: 0;
}

.dashboard-list-view-documents .tab1-main-grid input{
    accent-color: #169E96;
    border: 1px solid #169E96;
    border-radius: 4px;
    width: 15px;
    height: 20px;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading{
    padding: 15px 5px;
    border-bottom: 1px solid #EBEDED;
    border-top: 1px solid #EBEDED;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F9F9F9;
}
.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *{
    display: flex;
    gap: 15px;
    flex: 1;
    text-transform: uppercase;
}
.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *:first-child{
    flex: 2;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *:last-child{
    justify-content: end;
    flex: none;
    min-width: 130px;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span{
    line-height: 21px;
    align-items: center;
    letter-spacing: 0.1px;
    text-transform: capitalize;
    display: inline-block;
    font-weight: bold;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span:last-child{
    position: relative;
}

.dashboard-list-view-documents .tab1-table-heading-dropdown{
    position: absolute;
    bottom: -55px;
    font-size: 14px;
    z-index: 2;
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 30px var(--shadow);
    display: none;
    animation-name: optionsSlideIn;
    animation-duration: 0.5s;
}

.dashboard-list-view-documents .tab1-table-heading-dropdown.visible{
    display: block;
}

.dashboard-list-view-documents .tab1-table-heading-dropdown a{
    text-decoration: none;
    color: var(--red)
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span.tab1-table-heading-btn{
    padding: 2px 8px;
    display: none;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-left: 15px;
}

.dashboard-list-view-documents .tab1-main-grid.tab1-table-heading span.tab1-table-heading-btn.visible{
    display: inline-block;
}

.dashboard-list-view-documents .tab1-main-grid-item{
    padding: 15px 0;
    display: flex;
    gap: 15px;
    align-items: start;
    flex: 1;
    border-bottom: 1px solid #efefef;
}
.dashboard-list-view-documents .tab1-main-grid-item:first-child{
    flex: 2;
}
.dashboard-list-view-documents .tab1-main-grid-item:last-child{
    flex: none;
    width: 130px;
}
.dashboard-list-view-documents.templates .tab1-main-grid-item:last-child{
    width: 160px;
}

.dashboard-list-view-documents .tab1-main-grid-item > .direct-click-links{
    line-height: 30px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}
.dashboard-list-view-documents .tab1-main-grid-item.incomplete{
    flex-direction: column;
}

.dashboard-list-view-documents .tab1-main-grid-item span{
    text-transform: capitalize;
    margin-right: 5px;
}

.dashboard-list-view-documents .tab1-main-grid-item .badge{
    text-transform: uppercase;
    font-size: x-small;
    display: inline-flex;
    justify-self: center;
    align-items: center;
    border-radius: 20px;
    background: #f5d19a;
    padding: 2px 4px;
    position: relative;
    bottom: -15px;
    right: -36px;
}

.dashboard-list-view-documents .tab1-item2 span:first-child{
    padding: 10px;
    background: var(--light-blue);
    border-radius: 5px;
    display: inline-block;
    font-size: 13px;
    line-height: 14px;
    color: var(--grey-800);
}

.dashboard-list-view-documents .tab1-item2-guage{
    background: var(--grey-300);
    height: 5px;
    width: 40%;
    margin-bottom: 5px;
    border-radius: 8px;
}

.dashboard-list-view-documents .tab1-item2-guage div{
    background: #A6AD23;
    height: 100%;
    width: 0;
    color: #A6AD23;
    border-radius: 8px;
}
.dashboard-list-view-documents .tab1-item2 small{
    text-transform: capitalize;
    color: #A6AD23;
}
.dashboard-list-view-documents .canceled .tab1-item2-guage div{
    background: #F00;
    color: #F00;
}
.dashboard-list-view-documents .tab1-item2.canceled small{
    color: #F00;
}

.dashboard-list-view-documents .tab1-item3{
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
}

.dashboard-list-view-documents .tab1-item3 p{
    line-height: 30px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.dashboard-list-view-documents .tab1-item3 small{
    line-height: 21px;
    opacity: 0.8;
    display: block;
}

.dashboard-list-view-documents .tab1-item4{
    position: relative;
    justify-content: end;
}

.dashboard-list-view-documents .tab1-item4 span:first-child{
    font-size: 14px;
    color: var(--green-200);
}

.dashboard-list-view-documents .tab1-item4-action a{
    text-decoration: none;
}

.dashboard-list-view-documents .tab1-item4-dropdown{
    background: var(--blue);
    width: 24px;
    height: 24px;
    color: var(--white);
    display: flex;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
}

.dashboard-list-view-documents .tab1-item4-dropdown .fa,
.dashboard-list-view-documents .tab1-table-heading-btn .fa{
    color: var(--white);
    transition: transform 0.5s;
}
.dashboard-list-view-documents .tab1-dropdown{
    border-radius: 8px;
    white-space: nowrap;
    position: absolute;
    right: 0;
    top: 50px;
    background: var(--white);
    box-shadow: 0 0 30px var(--shadow);
    padding: 10px;
    display: none;
    z-index: 2;
    animation-delay: 3s;
    animation-name: optionsSlideIn;
    animation-duration: 0.5s;
}

.dashboard-list-view-documents .tab1-dropdown a{
    display: block;
    text-decoration: none;
    color: var(--black);
    text-transform: capitalize;
    font-size: 14px;
    padding: 5px;
}

.dashboard-list-view-documents .tab1-dropdown a:last-child{
    color: var(--red);
}

.dashboard-list-view-documents .tab1-pagination{
    width: 90%;
    margin: 0 auto;
    text-align: right;
}

.dashboard-list-view-documents .tab1-pagination ul{
    list-style: none;
    display: inline;
    font-size: 12px;
}

.dashboard-list-view-documents .tab1-pagination ul li{
    display: inline-block;
    padding: 4px 8px;
    background: var(--grey-300);
}

.dashboard-list-view-documents .tab1-pagination ul li a{
    text-decoration: none;
}

.dashboard-list-view-documents .tab1-pagination ul li.active{
    background: none;
}

.dashboard-list-view-documents .tab1-footer{
    padding: 20px 40px;
    margin-top: 50px;
    box-sizing: border-box;
    border-top: 1px solid var(--grey-100);
}

.dashboard-list-view-documents .tab1-footer a{
    text-decoration: none;
    color: var(--grey-400);
    transition: color 0.7s;
    font-size: 12px;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-footer a:not(:last-child){
    margin-right: 10px;
}

.dashboard-list-view-documents .tab1-footer a:hover{
    color: var(--black);
}

/************ create documents styles *************/
.dashboard-list-view-documents .h3-secondary{
    font-size: 25px;
}

.dashboard-list-view-documents .tab1-list-group{
    width: 90%;
    margin: 50px auto;
    position: relative;
    transition: all 500ms ease-in-out;
}

.dashboard-list-view-documents .tab1-list-group div{
    padding: 30px 0;
}

.dashboard-list-view-documents .tab1-list-group h4{
    font-weight: bold;
    text-transform: capitalize;
    color: var(--green-200);
    margin-bottom: 10px;
    font-size: 20px;
}

.dashboard-list-view-documents .tab1-list-group div:not(:last-child){
    border-bottom: 1px solid var(--grey-400);
}

.dashboard-list-view-documents .tab1-list-group ul{
    list-style-type: none;
    -moz-columns: 4;
         columns: 4;
}

.dashboard-list-view-documents .tab1-list-group ul li{
    margin: 5px 0;
}

.dashboard-list-view-documents .tab1-list-group ul li a{
    color: var(--black);
    text-decoration: none;
    text-transform: capitalize;
}

.dashboard-list-view-documents .tab1-list-group ul li a::first-letter{
    text-transform: uppercase;
}

.dashboard-list-view-documents .tab1-list-group > .loading-overlay{
    display: none;
    position: absolute;
    background-color: #245340c7;
    color: #fff;
    width: 101%;
    height: 100%;
    border-radius: 25px;
    margin-left: -1%;
    justify-content: center;
    align-items: center;
}

.dashboard-list-view-documents .tab1-list-group.searching > .loading-overlay{
    display: flex;
}

.chart-max {
    display: flex;
    justify-content: center;
    max-height: 75vh;
    margin: auto;
}

@keyframes optionsSlideIn {
    from{
        opacity: 0;
        transform: translateY(-20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}


@media (min-width: 320px) and (max-width: 480px) {
    #UsefulDocsDashboard .doc-dashboard-chart {
        width: 100%;
        height: 150px;
    }


    .dashboard-list-view-documents .tab1-main{
        margin: 10px auto 10px;
        box-sizing: border-box;
    }

    .dashboard-list-view-documents .tab1-main-grid.tab1-table-heading > *:last-child{
        justify-content: end;
        flex: none;
        width: 20px;
    }

    .dashboard-list-view-documents .tab1-main-grid-item:last-child{
        flex: none;
        width: 20px;
    }

    .dashboard-list-view-documents .tab1-item2 span:first-child{
        padding: 12px;
        background: var(--light-blue);
        border-radius: 8px;
        display: inline-block;
        line-height: 12px;
        color: var(--grey-800);
    }

}


.usefulsign-process .dashlink {
    padding: 10px 20px;
}

.usefulsign-process .dashlink p {
    text-align: center;
}

.usefulsign-add-signer > * {
    position: relative;
    min-width:60%;
}

.usefulsign-add-signer .dashlink {
    cursor: pointer;
}

.usefulsign-add-signer .dashlink:hover,
.usefulsign-add-signer .dashlink.active {
    border: 1px solid var(--green);
}

.usefulsign-add-signer .dashlink-wrap {
    margin: 34px auto 0;
    gap: 2rem;
    display: flex;
}

.usefulsign-add-signer .dashlink-wrap ~ .add-signer-heading > .subtitle ~ p {
    text-align: left;
}

.usefulsign-step-wrap .usefulsign-step {
    align-items: center;
}

.usefulsign-step-wrap .usefulsign-step span {
    font-size: 14px;
    color: #6E7070;
    line-height: 25px;
}

.usefulsign-step-wrap .usefulsign-step.current span {
    color: #252626;
}

.usefulsign #SignersHolder {
    margin-top: 10px;
    margin-bottom: 10px;
    gap:10px;
}

.usefulsign #SignersHolder > .signer-item {
    border: 1px solid #b6b6b6;
    display: flex;
    padding: 5px 15px;
    margin-top: 4px;
    border-radius: 8px;
    position: relative;
    --signer-color: var(--grey-150);
}

.usefulsign #SignersHolder > .signer-item .details-wrapper {

}

.usefulsign #SignersHolder > .signer-item::after {
    content: " ";
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    background: var(--signer-color);
    border-radius: 10px 0 0 10px;
}

.usefulsign #SignersHolder > .signer-item.over {
    border: 2px dotted #666;
}

.usefulsign #SignersHolder > .signer-item .signer-item-context {
    position: relative;
    display: flex;
    align-items: center;
}

.usefulsign #SignersHolder > .signer-item.edit .signer-edit-submit {
    display: flex;
    width: 20px;
    height: 20px;
    color: var(--green);
    cursor: pointer;
}
.usefulsign #SignersHolder > .signer-item.edit .signer-edit-close {
    display: flex;
    width: 20px;
    height: 20px;
    color: red;
    cursor: pointer;
}
.usefulsign #SignersHolder > .signer-item:not(.edit) .signer-edit-close,
.usefulsign #SignersHolder > .signer-item:not(.edit) .signer-edit-actions,
.usefulsign #SignersHolder > .signer-item.edit .signer-item-context {
    display: none;
}
.usefulsign #SignersHolder > .signer-item .signer-item-context .context-dropdown {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 14px 17px;
    gap: 10px;
    position: absolute;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 105px;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    right: -36px;
    top: 20px;
    z-index: 2;
    transition: 2s linear display;
}

.usefulsign #SignersHolder > .signer-item .signer-item-context:hover .context-dropdown,
.usefulsign #SignersHolder > .signer-item .signer-item-context:hover .context-dropdown.show {
    display: flex;
}

.usefulsign #SignersHolder > .signer-item .signer-item-context .signer-dropdown a {
    font-size: 12px;
    display: flex;
    text-wrap: nowrap;
}

.usefulsign #SignersHolder > .signer-item .signer-item-context .signer-dropdown a:last-of-type {
    color: #EB5757;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap {
    display: flex;
    padding: 0;
    flex: 1;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap {
    padding-left: 0;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-drag-icon {
    filter: brightness(0);
    cursor: pointer;
}

.usefulsign #SignersHolder:not(.ordered-signing-enabled) > .signer-item .signer-details-wrap .signer-drag-icon {
    display: none!important;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap img:not(.signer-drag-icon) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 11px;
    width: 40px;
    height: 40px;
    border-radius: 48px;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-name-email {
    font-size: 15px;
    padding: 10px;
    gap:5px;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-name-email .icon{
    display: flex;
    align-items: center;
    padding-right:15px;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-name-email .value{
    width: 100%;
    align-items: center;

}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-name-email .signer-name {
    font-size: 15px;
    font-weight: bold;
    min-width: 300px;
}

.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-name-email .signer-email {
    font-size: 15px;
    min-width: 300px;
}
.usefulsign #SignersHolder > .signer-item .signer-details-wrap .signer-name-email > .flex{
    width: 100%;
}

.usefulsign #AddNewSignerForm {
    font-size: 15px;
    gap: 10px;
    width: 100%;
    border: 1px solid #b6b6b6;
    border-radius: 5px;
    padding: 15px;
    --next-signer-color: transparent;
}

.usefulsign form#AddNewSignerForm:after {
    content: "";
    position: absolute;
    width: 7px;
    background: var(--next-signer-color);
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 10px 0 0 10px;
}

.usefulsign #AddNewSignerForm.hidden {
    display: none;
}

.usefulsign #AddNewSignerForm .form-btns,
.usefulsign #AddNewSignerForm .form-group {
    max-width: 100%;
}

.usefulsign #AddNewSignerForm .form-group {
    gap: 8px;
    align-items: center;
    text-align: end;
}

.usefulsign #AddNewSignerForm .form-group label {
    line-height: 30px;
    width: 15%;
    white-space: nowrap;
}

.usefulsign #SignersHolder > .signer-item:not(.edit) select,
.usefulsign #SignersHolder > .signer-item:not(.edit) input {
    border: none!important;
    border-radius: 0;
    padding: 0;
    width: 100%;
    background: transparent!important;
    height: unset;
    margin: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    outline: none;
    pointer-events: none; /* Disable pointer events to make it non-interactive */
    touch-action: none; /* Disable touch events as well (optional) */
}
.usefulsign #SignersHolder > .signer-item:not(.edit) select::-ms-expand {
    display: none;
}
.usefulsign #SignersHolder > .signer-item:not(.edit) .signer-email {
    text-align: start;
}
.usefulsign #SignersHolder > .signer-item.edit select,
.usefulsign #SignersHolder > .signer-item.edit input {
    height: 45px;
    border: 1px solid var(--grey-350);
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    margin-top: 8px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
}

.usefulsign #AddNewSignerForm .form-btns {
    justify-content: flex-end;
    gap: 8px;
}

.usefulsign #AddNewSignerForm .form-btns button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 168px;
    border: none !important;
    line-height: 20px;
    cursor: pointer;
}

.usefulsign #AddNewSignerForm .form-btns button[type="submit"] {
    background: #169E96;
    color: #FFF;
}

.usefulsign #AddSignerOrContactLinkWrap {
    gap: 10px;
    margin-top: 15px;
}

.usefulsign #AddSignerOrContactLinkWrap > *:not(span) {
    cursor: pointer;
}

.usefulsign #AddSignerOrContactLinkWrap span,
.usefulsign #AddSignerOrContactLinkWrap .show-choose-from-contact,
.usefulsign #AddSignerOrContactLinkWrap .show-new-signer-form {
    line-height: 30px;
    letter-spacing: 0.5px;
    gap: 10px;
    align-items: center;
}

.usefulsign #AddSignerOrContactLinkWrap .show-choose-from-contact {
    font-size: 12px;
}

.usefulsign #AddSetOrderingWrap {
    padding: 30px 0;
    gap: 20px;
}

.usefulsign #AddSetOrderingWrap.hidden {
    display: none;
}

.usefulesign .document-name {

}

/* Choose Signer from Contact List  Modal styling */
/* Modal Content */
#chooseFromContactModal .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 35px;
    gap: 18px;
    width: 425px;
    max-width: 100%;
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
}

#chooseFromContactModal .modal-content h5 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
}

#chooseFromContactModal .modal-content .search-input-wrap {
    display: flex;
    flex-direction: row;
    padding: 13px 10px;
    gap: 10px;
    width: 355px;
    background: #F8FAFC;
    border: 1px solid #E3E7E8;
    border-radius: 15px;
    align-items: center;
}

#chooseFromContactModal .modal-content .search-input-wrap > svg {
    width: 15px;
    height: 15px;
}

#chooseFromContactModal .modal-content .search-input-wrap > input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background-color: transparent;
    line-height: 21px;
    color: #6E7070;
}

#chooseFromContactModal .modal-content button.close {
    color: #6E7070;
    background: #E3E7E8;
}

#chooseFromContactModal .modal-content button#DeleteSelectedDocumentBtn {
    color: #F8FAFC;
    background: #FA1E1E;
}

/* /Choose Signer from Contact List Modal  Styling*/

/* Choose Signer from Contact List */
#ChooseFromContactList {
    width: 100%;
}

#ChooseFromContactList .contact-list-item-view {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 10px;
    gap: 11px;
    cursor: pointer;
    border-bottom: 1px solid var(--grey-350);
}

#ChooseFromContactList .contact-list-item-view:hover {
    background: var(--grey-50);
}

#ChooseFromContactList .contact-list-item-view img {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 40.2039px;
}

#ChooseFromContactList .contact-list-item-view .dash-contact-name {
    line-height: 30px;
    letter-spacing: 0.5px;
    color: #252626;
}

/* /Choose Signer from Contact List */

.usefulsign .usefulsign-cc-info-hint {
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.usefulsign #AddRecipientLinkWrap .usefulsign-cc-info-hint > span.hint {
    display: none;
    position: absolute;
    bottom: 28px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    flex-direction: row;
    align-items: center;
    padding: 16px 15px;
    gap: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #7B7C81;
    width: 250px;
    transition-property: display;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

.usefulsign #AddRecipientLinkWrap .usefulsign-cc-info-hint:hover > span.hint {
    display: flex;
}

.usefulsign:not(.review) #RecipientsHolder,
    /*.esign:not(.review).i #SignersHolder,*/
.usefulsign:not(.review) #AddNewRecipientForm,
.usefulsign:not(.review) #AddNewRecipientForm.hidden,
.usefulsign:not(.review).i #AddNewSignerForm,
.usefulsign:not(.review) #AddRecipientLinkWrap,
.usefulsign:not(.review).i #AddSignerOrContactLinkWrap {
    display: none !important;
}

.usefulsign.i #RecipientsHolder,
.usefulsign.i #AddNewRecipientForm:not(.hidden),
.usefulsign.i #AddRecipientLinkWrap {
    display: flex !important;
}

.usefulsign #ProgressButtonsWrap {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}
.usefulsign #ProgressButtonsWrap .btn-width{
    width:20%;
}

.usefulsign.usefulsign-process.review {
    gap: 10px;
}

.usefulsign.usefulsign-process.review.tab-content-wrap {
    min-height: 80%;
}

#IntegrationsSectionWrap {
    border: 1.35776px solid #D4D8D9;
    border-radius: 13.5776px;
    max-height: 300px;
    padding: 30px;
    margin-top: 32px;
}

.usefulsign.usefulsign-process.review .no-integrations-wrap {
    padding-top: 30px;
    padding-bottom: 30px;
}

.usefulsign.usefulsign-process.review .no-integrations-wrap h5 {
    margin-top: 25px;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #525454;
}

@media screen and (min-width: 600px) {
    .usefulsign.usefulsign-process.review {

    }
}

.usefulsign.usefulsign-process.review .review-details > h5.subtitle {
    font-size: 20px;
    line-height: 30px;
}

.usefulsign.usefulsign-process.review label {
    line-height: 24px;

    margin-top: 20px;
}

.usefulsign.usefulsign-process.review small {
    font-size: x-small;
    color: #252626;
}

.usefulsign.usefulsign-process.review .custom-input-group,
.usefulsign.usefulsign-process.review textarea,
.usefulsign.usefulsign-process.review input:not([type="checkbox"]) {

}

.usefulsign.usefulsign-process.review textarea {
    height: unset;
}

.usefulsign.usefulsign-process.review .custom-input-group input:not([type="checkbox"]),
.usefulsign.usefulsign-process.review .custom-input-group select {

}

.usefulsign.usefulsign-process.review .custom-input-group input:not([type="checkbox"]),
.usefulsign.usefulsign-process.review .custom-input-group select {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    border: none !important;
    outline: none;
}

.usefulsign.usefulsign-process.review .custom-input-group select {
    gap: 10px;
    background: transparent;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.usefulsign.usefulsign-process.review .custom-input-group #remind_after {
    border-right: 1px solid #000 !important;
    border-radius: 0;
}

.usefulsign.usefulsign-process.review > .review-details h5.subtitle {
    font-size: 20px;
    text-align: left;
}

.usefulsign.usefulsign-process.review > .review-details .email-personalization {

}

.usefulsign.usefulsign-process.review > .review-details #SetReminderMessageSection {
    transition-property: display;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}

.usefulsign.usefulsign-process.review > .review-details #SetReminderMessageSection.hidden {
    display: none;
}

.usefulsign.usefulsign-process.review > .review-details .toggle-section-wrap {
    align-items: center;
}

.usefulsign.usefulsign-process.review > .review-details .toggle-section-wrap > label,
.usefulsign.usefulsign-process.review > .review-details .toggle-section-wrap > .flex > span:first-of-type {
    line-height: 30px;
    margin: 0 !important;
}

.usefulsign.usefulsign-process.review > .review-details .toggle-section-wrap > .flex > span:last-child {
    font-size: 12px;
    line-height: 18px;
}

.usefulsign.usefulsign-process.review > .review-details > .signers p {
    text-align: left;
}

.usefulsign.usefulsign-process.review .reminder-configs .reminder_recurrency span.hint {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 15px;
}

.usefulsign.usefulsign-process.review .reminder-configs .form-group.flex {
    gap: 17px;

}

.usefulsign.usefulsign-process.review .reminder-configs .form-group.flex span.subtitle {
    font-weight: bold;
    margin-bottom: 10px;
}

.usefulsign.usefulsign-process.review > #ProgressButtonsWrap {
    width: 100%;
}

.usefulsign.usefulsign-process.review > #ProgressButtonsWrap a.continue-btn {
    width: 213px;
    height: 44px;
}

#UsefulSignDocumentSetView,
#SendingForReviewLoadingView {
    position: relative;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
}


#UsefulSignDocumentSetView .content.flex,
#UsefulSignDocumentSetView .content > .flex,
#SendingForReviewLoadingView .loading-content.flex {
    gap: 34px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#SendingForReviewLoadingView .loading-content > img {
    width: 58px;
}

#UsefulSignDocumentSetView .content > .flex h5,
#SendingForReviewLoadingView .loading-content > .flex h4 {
    font-size: 18px;
    line-height: 28px;
    color: #1A444C;
}

#SendingForReviewLoadingView .loading-content > .flex h5 {
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.15px;
    color: #525454;
}

#SendingForReviewLoadingView.loading {
    display: flex;
}

.validate {
    color: red !important;
    font-size: small;
    display: block;
}

#UsefulSignDocumentSetView {
    display: flex;
    overflow-y: auto;
}

#UsefulSignDocumentSetView .content.flex {
    gap: unset;
}

#UsefulSignDocumentSetView .content > .flex {
    gap: unset;
}

#UsefulSignDocumentSetView .content > .flex h4 {
    color: #1A444C;
    margin-bottom: 18px;
}

#UsefulSignDocumentSetView .content > .flex p {
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #525454;
    margin-bottom: 50px;
}

#UsefulSignDocumentSetView .content > .flex p > a {
    color: var(--green);
}

#UsefulSignDocumentSetView .content > .flex > a {

}

.usefulsign.usefulsign-process .integrations-grid {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    overflow: auto;
}

.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 21px 20px;
    border: 1.30932px solid #E3E7E8;
    border-radius: 13.0932px;
}

.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap .item-logo-wrap {
    max-width: 45px;
    flex: 0;
}

.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap .item-content-wrap,
.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap .item-content-wrap > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap .item-content-wrap > div h6 {
    line-height: 20px;
    letter-spacing: 0.15px;
    color: #252626;
    display: flex;
    align-items: center;
    gap: 10px;
}

.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap .item-content-wrap > div h6 .badge {
    display: inline-block;
    padding: 6px 10px;
    background: rgba(22, 158, 150, 0.2);
    border-radius: 5px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.15px;
    color: var(--green);
}

.usefulsign.usefulsign-process .integrations-grid .integration-item-wrap .item-content-wrap > div p {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.25px;
    color: #525454;
    max-width: 282px;
}

@media screen and (min-width: 600px) {

    .usefulsign.usefulsign-process .integrations-grid {
        grid-template-columns: auto auto auto;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    .usefulsign-process .dashlink {
        padding: 0;
    }

    .usefulsign-add-signer .dashlink-wrap {
        margin: 34px auto 0;
        gap: 1rem;
        display: flex;
        flex-direction: row;
    }

    .dashlink {
        height: 200px;
        width: 33%;

    }

}

/* the file contains styles for document upload page and field mapping page */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body::-webkit-scrollbar,
.aside-left-field-wrapper::-webkit-scrollbar,
.doc-thumbnails-wrap::-webkit-scrollbar,
.aside-right::-webkit-scrollbar,
.aside-center::-webkit-scrollbar{
    width: 0.5rem;
}

body::-webkit-scrollbar-track,
.aside-left-field-wrapper::-webkit-scrollbar-track,
.doc-thumbnails-wrap::-webkit-scrollbar-track,
.aside-right::-webkit-scrollbar,
.aside-center::-webkit-scrollbar-track{
    background: whitesmoke;
}

body::-webkit-scrollbar-thumb,
.aside-left-field-wrapper::-webkit-scrollbar-thumb,
.doc-thumbnails-wrap::-webkit-scrollbar-thumb,
.aside-center::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background: lightgray;
}

body::-webkit-scrollbar-thumb:hover,
.aside-left-field-wrapper::-webkit-scrollbar-thumb:hover,
.doc-thumbnails-wrap::-webkit-scrollbar-thumb:hover,
.aside-center::-webkit-scrollbar-thumb:hover{
    background: darkgray;
}

.horizontal-line {
    width: 53px;
    height: 0;
    border: 1px solid #C4C4C4;
    margin: 3px;
    display:inline-block;
}

.section-wrapper{
    width: 80%;
    margin: 0 auto;
}

.dotted-box{
    border: 1px dotted var(--blue-primary-v2);
    margin: 10px auto 1rem auto;
}

.dotted-box.highlight{
    border: 1px dotted var(--light-blue-200);
}

.dotted-box-grid{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.dotted-box-grid-item-fig,
.dotted-box-grid-item-button {
    height: 100%;
}
@media screen and (min-width: 600px) {
    .dotted-box{
        padding: 20px 0;
    }

    .dotted-box-grid{
        grid-template-columns: repeat(3, 1fr);
        padding-left: 20px;
        padding-right: 20px;
    }

    .dotted-box-grid-item:not(:last-child){
        border-right: 1px solid var(--light-blue-200);
    }
}

figure{
    display: block;
}

figure img{
    display: block;
    margin: 0 auto;
}

figure figcaption{
    display: block;
    margin: 10px;
}

figure figcaption::first-letter{
    text-transform: uppercase;
}

.dotted-box-grid-item-button button{

}

.text-container p{
    color: var(--grey-400);
}

.text-container a{
    color: var(--blue-primary-v2);
}

.bar-container{
    margin: 30px 0 10px 0;
}

.bar{
    background: var(--alabaster);
    border-radius: 10px;
    padding: 10px 20px;
}

.bar.bar-progress{
    background: unset;
}

.bar-item{
    position: relative;
}

.bar-text{
    position: absolute;
    display: block;
    left: 70px;
    top: 50%;
    font-size: 14px;
    transform: translateY(-50%);
}

.bar-text.untabbed-area-bar-text{
    left: 50px;
    width: 75%;
    overflow: hidden;
    white-space: no-wrap;
    font-size: 14px;
    text-overflow: ellipsis;
}

.bar-right-content{
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 14px;
    transform: translateY(-50%);
    cursor: pointer;
}

.upload-btn-container {
    display: flex;

    padding-top:10px;
}

.bar .bar-item .bar-right-content.js-bar-cross{
    font-size: 26px;
    color: red;
}

.bar.bar-progress .bar-right-content{
    right: 0;
}

.bar-right-content-child-2{
    color: var(--grey-500);
    text-align: right;
}


.doc-thumbnails-wrap{
    width: 100%;
    /*height: 100vh;*/
    /*overflow-y: auto;*/
}

.progress{
    background: var(--alabaster);
    border-radius: 5px;
    height: 7px;
    margin-top: 10px;
    overflow: hidden;
}

.progress div{
    background: var(--green);
    height: 100%;
    width: 50%;
    border-radius: 5px;
    transition: width 0.5s;
}

.btn-wrapper button{
    border: 0;
    background: var(--green);
    cursor: pointer;
}

.dialog-btn{
    color: var(--blue-primary-v2);
    cursor: pointer;
    display: none;
}

body .main-container > main .main-section {
    max-width: unset;
}
/**** field mapping styles ****/
.section-map-fields{
    position: relative;
}

.map-fields-grid{
    display: grid;
    /*grid-template-columns: 2fr auto 2fr;*/
    grid-template-columns: 256px auto;
    background: #fff;
}

.map-fields-grid canvas{
    display: block;
    /* margin-bottom: 10px; */
}

.map-fields-grid-item:nth-child(2){
    background: var(--grey-250);
    border: 1px solid  var(--grey-250);
    border-top: 0;
}
.map-fields-grid-item.aside-right{
    font-size: 14px;
    background: #fff;
}
.aside-left-field-wrapper{
    background: #f8f8f8;
    overflow-y: auto;
    padding: 0 20px;
}

.aside-left-fonts-wrapper{
    padding: 0 20px;
    font-size:14px;
    background: #fff;
}

.aside-left p{
    font-size: 14px;
    line-height: 24px;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid var(--grey-350);
}
.aside-left label.field-label{
    line-height: 24px;
    color: #252626;
    margin-top: 20px;
}
.aside-left label.field-label.section-spacing{
    margin-top: 10px ;
}

.aside-left-inputs-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
}

.aside-left input,
.aside-left select{
    height: 40px;
    display: block;
    padding: 0 10px;
    margin-bottom: 10px;
    width: 100%;
    margin-top: 8px;
    background: #F7F7F7;
    border: 1px solid #D4D8D9;
    border-radius: 10px;
    cursor: pointer;
}

.aside-left input:disabled,
.aside-left select:disabled{
    cursor: not-allowed;
}

.aside-left select:first-child{
    grid-column: span 2;
}

.aside-left-color-picker{
    background: #F7F7F7;
    border: 1px solid #D4D8D9;
    border-radius: 10px;
    height: 40px;
    position: relative;
}

.aside-left input[type=color]{
    border-radius: 50%;
    width: 40px;
    height: 20px;
    border: none;
    outline: none;
    display: inline-block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.aside-left-color-picker span{
    color: var(--grey-800);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 40px;
    font-size: 12px;
    text-transform: uppercase;
}

.aside-left input[type=color]::-webkit-color-swatch-wrapper{
    padding: 0;
}

.aside-left input[type=color]::-webkit-color-swatch{
    border: none;
    border-radius: 50%;
}

.aside-left input:focus{
   outline: 0;
}

.aside-left ul{
    list-style-type: none;
    display: grid;
    grid-template-columns: 50% 50%;
    gap:8px;
}

.aside-left ul li{
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.aside-left ul li:not(:last-child){
    white-space: nowrap;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.aside-left ul li span:first-child{
    margin-right: 0;
}

.aside-left ul li span:last-child{
    color: var(--grey-800);
}

.aside-center{
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
}

.aside-center-footer{
    padding: 10px;
    font-size: 12px;
    display: none;
}

.aside-center-footer button{
    background: var(--white);
    border: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 0 10px;
}

.aside-center-footer span{
   color: var(--grey-800);
}

.aside-center-footer input{
   width: 40px;
   border: 0;
   padding: 0 5px;
   transition: width 0.5s;
}

.aside-center-footer input:focus{
    outline: 0;
    width: 80px;
 }

/**** field mapping tabbed area ****/
.tabbed-area{
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}

.tab-links{
    display: flex;
    justify-content: left;
    margin: 30px 0;
    font-size: 14px;
}

.tab-links a,
.tab-links a:hover{
    text-decoration: none;
}

.tab-links a.active{
    color: var(--green);
    border-bottom: 1px solid var(--green);
    padding-bottom: 5px;
    font-weight: bold;
}

.box-wrapper > div{
    /* border: 1px solid black; */
    display: none;
}

.aside-content{
    display: none;
}

.tab-content-form-field{
    margin-bottom: 15px;
    border-bottom: 1px solid var(--grey-250);
}

.tab-content-form-field:first-child div{
    margin: 15px 0;
    color: var(--grey-800);
}

.tab-content-form-field:first-child div span:first-child{
    position: relative;
    bottom: -2px;
    margin-right: 5px;
}

.tab-content-form-field label{
    display: block;
    text-transform: capitalize;
    color: var(--grey-600);
}

.tab-content-form-field input{
    width: 100%;
    border-radius: 5px;
    height: 40px;
}

.tab-content-form-field input:focus{
    outline: 0;
}

.tab-content-form-footer{
    text-align: center;
    margin: 20px 0;
}

.tab-content-form-footer button{
    width: 100%;
    color: var(--white);
    outline: 0;
    height: 40px;
    font-size: 12px;
    font-weight: bold;
}

.tab-content-form-footer a{
    color: var(--grey-800);
}

.tab-content4-list{
    margin-bottom: 40px;
}

.tab-content4-list-item{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--grey-250);
    position: relative;
}

.tab-content4-list-item input{
    accent-color: var(--blue-primary-v2);
    margin-right: 5px;
}

.tab-content4-list-item span{
    color: var(--blue-primary-v2);
    text-transform: capitalize;
}

.tab-content4-dropdown-btn{
    position: absolute;
    right: 0;
    top: 8px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--blue-primary-v2);
}

.tab-content4-dropdown a:hover{
    color: var(--grey-800);
    text-decoration: none;
}

.tab-content4-dropdown{
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--white);
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
    display: none;
}

.tab-content4-dropdown a{
    display: block;
    font-size: 12px;
    color: var(--grey-800);
}

.toggle-switch-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-switch-text{
    color: var(--grey-800);
    text-transform: capitalize;
}

.toggle-switch-text small{
    color: var(--grey-400);
}

.toggle-switch-bg{
    height: 20px;
    width: 40px;
    border-radius: 20px;
    background: var(--grey-800);
    cursor: pointer;
    position: relative;
    transition: background 0.2s;
}

.switch-slider{
    height: 20px;
    width: 20px;
    border-radius: 100%;
    background: var(--white);
    border: 1px solid var(--grey-800);
    position: absolute;
    left: 0;
    transition: left 0.2s linear;
    color: var(--grey-800);
    display: flex;
    justify-content: center;
    align-items: center;
}

.switch-slider span{
    font-size: 10px;
}

#required:checked + .switch-slider{
    left: 20px;
}

#reorder:checked + .switch-slider{
    left: 20px;
}

@media screen and (min-width: 600px){
    .canvas-wrapper.js-canvas-wrapper{
        min-width: 690px;
    }


}
.canvas-wrapper{
    position: relative;
    /* height: 100vh; */
}

.canvas-field-float {
    position: absolute;
    display: none;
}

#EditorFieldsContainer.canvas-wrapper .canvas-field-float {
    position: absolute !important;
}

.canvas-field{
    height: -moz-fit-content;
    height: fit-content;
    flex: 1;
}
.js-signature-field .canvas-field,
.js-canvas-field-img .canvas-field{
    height: 40px;
    flex: 1;
}

.canvas-field-float .canvas-field .js-hold-area {
    position: absolute;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    cursor: grabbing;
    display: none;

}

.canvas-field-float:not(.focused-field) .canvas-field .js-hold-area {
    display: inline-block;
}

.canvas-input-field{
    resize: both;
    overflow: visible;
    position: relative;
    background-color: #fffbce;
    font-weight: bold;
}
.canvas-field-float .canvas-field .resizer-node{
    position: absolute;
    /*display: none;*/
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #FFFFFF;
    border: 1.16667px solid #169E96;
    left: -2px;
    top: -2px;
}
/*.canvas-field-float.focused-field .canvas-field .resizer-node{*/
/*    display: inline-block;*/
/*}*/
.canvas-field-float .canvas-field .resizer-node.top,
.canvas-field-float .canvas-field .resizer-node.bottom{
    left: calc(50% - 3.5px);
}
.canvas-field-float .canvas-field .resizer-node.top-right,
.canvas-field-float .canvas-field .resizer-node.right,
.canvas-field-float .canvas-field .resizer-node.bottom-right{
    left: unset;
    right: -2px
}
.canvas-field-float .canvas-field .resizer-node.left,
.canvas-field-float .canvas-field .resizer-node.right{
    top: calc(50% - 3.5px);
}
.canvas-field-float .canvas-field .resizer-node.bottom-left,
.canvas-field-float .canvas-field .resizer-node.bottom,
.canvas-field-float .canvas-field .resizer-node.bottom-right{
    top: unset;
    bottom: -2px
}

/* .canvas-input-field::-webkit-resizer{
    background: black;
} */


.canvas-field-float .js-canvas-field-img,
.canvas-field-float .canvas-field input,
.canvas-field-float .canvas-field textarea {
    height: 100%;
    width: 100%;
    background: none;
    border: 1px dotted #000;
    padding: 0 5px; /* this should be accounted for when saving coordinates */
    max-width: 100% !important;
    max-height: 100% !important;
}
.canvas-field-float.focused-field .js-canvas-field-img,
.canvas-field-float.focused-field .canvas-field input,
.canvas-field-float.focused-field .canvas-field textarea{
    box-shadow: 0px 0px 10px #999, 0px 0px 10px #999, 0px 0px 10px #999, 0px 0px 10px #999;
}

.canvas-field-float .canvas-field-icons{
    display: none;
    padding: 0;
    background: #fff;
    border:1px solid #ccc;
    margin-bottom: 8px;
    border-radius: 8px;
    max-height: 160px;
    font-size:13px;
    position: absolute;
    left: 0;
    overflow: hidden;
    overflow-y: auto;
    bottom: 100%;
    animation-name: appear;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    min-width: 200px;
    justify-content: space-between;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.canvas-field-float .canvas-field-icons .signer-field{
    padding: 10px;
}

.canvas-field-float .canvas-field-icons .options-field {
    display: flex;
    align-items: start;
    padding:4px 10px;
    border-top:1px solid #ccc;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 3px;
    background: #F8F8F8;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.canvas-field-float .canvas-field-icons .options-field .checkbox-field {
    width: 100%;
    gap: 5px;
}

.canvas-field-float .canvas-field-icons .options-field .delete-field {
    display: flex;
    align-items: start;
    color: var(--ruby-red);
}

.canvas-field-float .canvas-field-icons .options-field .delete-field-img {
    width:20px;
}
.canvas-field-float.focused-field .canvas-field-icons{
    display: flex!important;
}
.canvas-field-float .canvas-field-icons p{
    line-height: 21px;
    max-width: calc(100% - 40px);
    padding-right: 4px;
    white-space: nowrap;
    cursor: pointer;
    margin: 0!important;
    display:flex;
    gap:4px;
}
.canvas-field-float .canvas-field-icons p > span:first-child{
    max-width: calc(100% - 20px);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.canvas-field-icons span{
    cursor: pointer;
    position: relative;
    display: inline-block;
    top: 3px;
}

.canvas-field-icons span:not(:last-child){
    margin-right: 5px;
}

.canvas-field input[type=checkbox]{
    accent-color: var(--grey-800);
}

.canvas-field textarea.textarea-centralized{
    text-align: center;
}

.canvas-field input:focus,
.canvas-field textarea:focus{
    outline: 0;
}

/* .canvas-field canvas{
    border: 1px dotted var(--grey-800);
    cursor: pointer;
    margin-bottom: 10px;
} */
#embed .vue-pdf-embed > div:not(:last-child) {
    margin-bottom: 8px;
}

#thumbnailsView .vue-pdf-embed{
    list-style-type: none;
    counter-reset: css-counter 0;
}

#thumbnailsView .vue-pdf-embed > div{
    position: relative;
    border: 3px solid #919394;
    overflow: hidden;
    border-radius: 15px;
    counter-increment: css-counter 1;
    cursor: pointer;
}

#thumbnailsView .vue-pdf-embed > div:not(:last-child) {
    margin-bottom: 20px;
}

#thumbnailsView .vue-pdf-embed > div:after{
    position: absolute;
    top: 9px;
    right: 9px;
    letter-spacing: 0.15px;
    background: #919394;
    content: counter(css-counter);
    color: var(--white);
    text-align: center;
    vertical-align: center;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
}

.canvas-field-img{ /* check later replace this with image with js*/
    height: 40px; /* check later */
    width: 150px; /* check later */
    /* position: relative; */

    /*text-align: center;*/
    text-align: left;
    border: 1px dotted black;
    border-radius: 5px;
    cursor: pointer;
    resize: both;
    overflow: hidden;
}

.canvas-field-img .canvas-field-img-text{
    position: relative;
    top: 8px;
    text-transform: capitalize;
    font-size: 14px;
}

.canvas-field-img img{
    width: auto!important;
    height: 100%;
    display: block;
    margin: 0;
    /*margin: 0 auto;*/
    /* object-fit: contain; */
}

.untabbed-area{
    padding: 20px 20px;
}

/* tool tip modal */
.modal-dark-bg{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 99;
}

.modal-dark-bg.checkbox-list-modal{
    display: none;
    justify-content: center;
    align-items: center;
}

.checkbox-list-modal-content{
    min-width: 20%;
    position: absolute;
    border-radius: 8px;
    background: var(--white);
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border:1px solid #ccc;
}

.checkbox-list-head{
    position: relative;
    border-bottom: 1px solid var(--grey-350);
    padding: 5px;
}

.checkbox-list-head p{
    text-transform: capitalize;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 0;
}

.checkbox-list-head div{
    text-transform: capitalize;
    font-weight: bold;
    padding: 10px;
}

.checkbox-list-head span{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
}

.checkbox-list-modal-content ul{
    list-style-type: none;
    /* margin-top: 10px; */
    padding: 10px 10px 0 10px;
    font-size: 14px;
}

.checkbox-list-modal-content ul li{
    padding: 5px 10px;
}

.checkbox-list-modal-content ul li:not(:last-child){
    padding-bottom: 0;
}

.checkbox-list-modal-content input{
    margin-right: 10px;
    accent-color: var(--grey-800);
}

.checkbox-list-modal-content checkbox-list-modal-content-btn-wrapper {
    padding: 30px;
}

.checkbox-list-modal-content ul li span{
    text-transform: capitalize;
    position: relative;
    top: -2px;
}

.checkbox-list-modal-content-btn-wrapper{
    padding: 0 20px 20px 20px;
}

.checkbox-list-modal-content-btn-wrapper .btn{
    color: var(--white);
    padding: 10px;
    width: 100%;
}

.tooltip1-modal,
.tooltip2-modal,
.tooltip3-modal{
    display: none;
}

.tooltip-modal-content{
    width: 25%;
    position: absolute;
    border-radius: 20px;
    background: var(--white);
    text-align: center;
    padding: 40px;
    top: 5%;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}

.tooltip1-modal-content{
    left: 10%;
}

.tooltip2-modal-content{
    right: 5%;
}

.tooltip3-modal-content{
    right: 5%;
}

.tooltip-modal-content p{
    color: var(--grey-800);
    line-height: 21px;
}

.tooltip-modal-content button{
    color: var(--white);
    border-radius: 50px;
    background: var(--blue-primary-v2);
    cursor: pointer;
    width: 100%;
}

.tooltip-modal-content button:hover{
    color: var(--white);
}

/* signature list modal */
.modal-dark-bg--signature-modal{
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.2);
    display: none;
    /* overflow: auto; */
}

.modal-dark-bg--signature-modal.show{
    display: block;
}

.signature-modal-wrapper{
    background: var(--white);
    width: 50%;
    overflow: auto;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    margin: 4% auto;
    padding: 50px;
    animation-name: fadeIn;
    animation-duration: 0.2s;
    animation-timing-function: linear;
}

.close-signature-list-btn{
    text-align: right;
    width: 40px;
    margin: auto 5% -50px auto;
    color: var(--white);
    cursor: pointer;
    font-size: 30px;
}

.close-signature-list-btn:hover{
    color: var(--red);
}

.sig-tool__sig-wrapper__item{
    cursor: pointer;
}

@media only screen and (max-width: 960px){
    .close-signature-list-btn{
        margin-bottom: 30px;
    }
}

/* end of signature list modal */

.aside-left-field-wrapper  .aside-draggable-field{
    z-index: 2;
}

.aside-left-field-wrapper span{
    font-size: 13px;
}


/*loader*/
.loader-background{
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner{
    border: 8px solid #D4D8D9;
    border-top-color: #525454;
    width: 48px;
    height: 48px;
    border-radius: 50px;
    margin: 10px auto;
    animation-name: loader;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.loader-text{
    font-size: 16px;
    line-height: 24px;
    color: #525454;
}

@keyframes loader {
    from{transform: rotateZ(0deg);}
    to{transform: rotateZ(360deg);}
}

@keyframes fadeIn {
    from{
        opacity: 0;
        transform: translateY(50px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes appear {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

#Leave-A-Review{
    padding-top: 105px;
    justify-content: center;
    align-items: center;
}
#Leave-A-Review .upgrade-notice-wrap{
    max-width: 548px;
    justify-content: center;
    align-items: center;
}
#Leave-A-Review .upgrade-notice-wrap img{
    max-width: 360px;
    height: auto;
    margin-bottom: -22px;
}
#Leave-A-Review .upgrade-notice-wrap .flex.flex-col{
    text-align: center;
    gap: 18px;
    margin-bottom: 48px;
}
#Leave-A-Review .upgrade-notice-wrap .flex.flex-col h3{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 34px;
    line-height: 40px;
    text-align: center;
    letter-spacing: 0.25px;
    color: #1A444C;
}
#Leave-A-Review .upgrade-notice-wrap .flex.flex-col p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    letter-spacing: 0.5px;
    color: #252626;
}
#Leave-A-Review .upgrade-notice-wrap .upgrade-link{
    background: #169E96;
    border-radius: 39px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    color: #F8FAFC;
    padding: 16.3866px;
    max-width: 279px;
}

#Leave-A-Review{
    padding-top: 34px;
    padding-bottom: 50px;
    padding-left: 0;
    justify-content: center;
    align-items: flex-start;
    gap:110px;
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.5px;
    color: #525454;
}
@media screen and (min-width: 600px) {
    #Leave-A-Review{
        padding-left: 61px;
    }

}
#Leave-A-Review > .flex.flex-col:first-child{
    gap:17px;
}
#Leave-A-Review h4,
#Leave-A-Review h5{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: #252626;
}
#Leave-A-Review h5{
    font-size: 16px;
}
#Leave-A-Review li{
    margin-left: 12px;
    line-height: 35px;
    word-wrap: anywhere;
}
#Leave-A-Review li.flex-col{
    gap:17px;
}

#Leave-A-Review li.flex-col img{
    width: 626px;
    max-width: 100%;
    flex: none;
}


/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Dropbox Uploading Modal */
#dropboxUploadingModal .modal-content{
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 53px 32px;
    gap: 10px;
    width: 419px;
    max-width: 100%;
    justify-content: center;
    align-items: center;
    animation-name: anim-slide-down;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.17, 0.04, 0.03, 0.94);
    animation-duration: 500ms;
}
#dropboxUploadingModal .modal-content .uploading{
    display: flex;
    flex-direction: column;
    width: 550px;
    max-width: 100%;
    text-align: center;
    align-items: center;
    gap: 30px;
}
#dropboxUploadingModal .modal-content .uploading .logo-wrap{
    width: 51px;
    height: 51px;
}
#dropboxUploadingModal .modal-content .uploading .logo-wrap img{
    max-width: 100%;
}
#dropboxUploadingModal .modal-content h3{
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.15px;
    color: #252626;
    overflow-wrap: anywhere;
}
/* /Dropbox Uploading Modal */


/* Add Document to folder Modal styling */
/* Modal Content */
#addToFolderModal .modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 35px;
    gap: 28px;
    width: 425px;
    max-width: 100%;
    background: #FFFFFF;
    border-radius: 15px;
    margin: auto;
}

#addToFolderModal .modal-content button[data-for="createFolderModal"] {
    width:100%;
}

#addToFolderModal .modal-content .search-input-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 13px 10px;
    gap: 15px;
    width: 355px;
    background: #F8FAFC;
    border: 1px solid #E3E7E8;
    border-radius: 8px;
    align-items: center;
}

#addToFolderModal .modal-content .search-input-wrap > svg{
    width: 15px;
    height: 15px;
}

#addToFolderModal .modal-content .search-input-wrap > input{
    flex: 1;
    border: none!important;
    outline: none!important;
    background-color: transparent;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0.25px;
    color: #6E7070;
}

#addToFolderModal .modal-content button.close {
    color: #6E7070;
    background: #E3E7E8;
}

#addToFolderModal .modal-content button#DeleteSelectedDocumentBtn {
    color: #F8FAFC;
    background: #FA1E1E;
}

/* /Add Document to folder Confirmation  Styling*/

/* Add Selected Document to Folder*/
#AddToFolderListingFolder{
    width: 100%;
    gap: 15px;
    overflow-y: auto;
    max-height: 200px;
}

#AddToFolderListingFolder .folder-list-item-view{
    display: flex;
    flex: 1;
    cursor: pointer;
    gap: 15px;
}
#AddToFolderListingFolder .folder-list-item-view{
    display: flex;
    align-items: center;
}
#AddToFolderListingFolder .folder-list-item-view .dash-folder-name{
    flex: 1;
}
/* /Add Selected Document to Folder*/



/**
Custom Checkbox switch styling Start
======================================
@see https://blog.stackfindover.com/css-toggle-switch/
 */

.switch-toggle {
    display: flex;
    height: 100%;
    align-items: center;
}
.switch-toggle .switch-btn, .switch-toggle .layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.switch-toggle .switch-check {
    position: relative;
    width: 51px;
    height: 31px;
    overflow: hidden;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.switch-toggle .checkbox {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}
.switch-toggle .switch-btn {
    z-index: 2;
}
.switch-toggle .layer {
    width: 100%;
    background-color: #6E7070;
    transition: 0.3s ease all;
    z-index: 1;
}
.switch-toggle .switch-check .switch-btn:before, .switch-toggle .switch-check .switch-btn:after {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 23px;
    height: 23px;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    background-color: #FFFFFF;
    border-radius: 50%;
    transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
    display: flex;
    align-items: center;
    justify-content: center;
}
.switch-toggle .switch-check .switch-btn:after {
    content: 'ON';
    color: #169E96;
}
.switch-toggle .switch-check .switch-btn:before {
    content: 'OFF';
    color: #6E7070;
}
.switch-toggle .switch-check .switch-btn:after {
    right: -50px;
    left: auto;
}
.switch-toggle .switch-check .checkbox:checked + .switch-btn:before {
    left: -50px;
}
.switch-toggle .switch-check .checkbox:checked + .switch-btn:after {
    right: 4px;
}
.switch-toggle .switch-check .checkbox:checked ~ .layer {
    background-color: #169E96;
}

/**
Custom Checkbox switch styling End
 */

.warning1-modal{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.warning-modal-content{
    width: 80%;
    border-radius: 20px;
    background: #ffffff;
    text-align: center;
    padding: 40px;
}

.warning-modal-content p{
    color: #525454;
    line-height: 21px;
    font-size: 14px;
}

.warning-modal-content button{
    color: #ffffff;
    border-radius: 50px;
    background: #169E96;
    cursor: pointer;
    width: 100%;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1.25px;
    text-transform: uppercase;
    padding: 10px 20px;
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    border: none;
    outline: none;
    text-decoration: none;
}

.warning-modal-content button:hover{
    color: #ffffff;
}
/**
Custom Radio styling Start
======================================
 */
/* The custom-radio-input-wrap */
.custom-radio-input-wrap {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    line-height: 25px;
    letter-spacing: 0.5px;
    color: #525454;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.custom-radio-input-wrap input[type="checkbox"],
.custom-radio-input-wrap input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */
.custom-radio-input-wrap .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #F8FAFC;
    border: 1px solid #169E96;
    border-radius: 23px;
}

.custom-radio-input-wrap input[type="checkbox"] ~ .checkmark {
    border-radius: 4px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.custom-radio-input-wrap .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.custom-radio-input-wrap input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.custom-radio-input-wrap .checkmark:after {
    width: 10px;
    height: 10px;
    background: #169E96;
    border-radius: 23px;
}
.custom-radio-input-wrap input[type="checkbox"]:checked ~ .checkmark {
    background: #169E96;
}
.custom-radio-input-wrap input[type="checkbox"]:checked ~ .checkmark:after {
    content: "\2713";
    color: #fff;
    border-radius: 0;
    font-size: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
}
/**
Custom Radio styling End
 */

/**
Custom Radio styling Start
======================================
 */
/* The custom-select-dropdown-wrap */
.custom-select-dropdown-wrap {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    font-family: 'Poppins';
    font-style: normal;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
}
@media (min-width: 768px) {
    .custom-select-dropdown-wrap {
        width: 70%;
    }
}
@media (min-width: 992px) {
    .custom-select-dropdown-wrap {
        width: 50%;
    }
}
@media (min-width: 1200px) {
    .custom-select-dropdown-wrap {
        width: 30%;
    }
}
.custom-select-dropdown__current {
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline: none;
}
.custom-select-dropdown__current:focus + .custom-select-dropdown__list {
    opacity: 1;
    animation-name: none;
}
.custom-select-dropdown__current:focus + .custom-select-dropdown__list .custom-select-dropdown__option {
    cursor: pointer;
}
.custom-select-dropdown__current:focus .custom-select-dropdown__icon {
    transform: translateY(-50%) rotate(180deg);
}
.custom-select-dropdown__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    opacity: 0.3;
    transition: 0.2s ease;
}
.custom-select-dropdown__value {
    display: flex;
}
.custom-select-dropdown__input {
    display: none!important;
}
.custom-select-dropdown__input:checked + .custom-select-dropdown__input-text {
    display: block;
}
.custom-select-dropdown__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 15px;
    background-color: #fff;
}
.custom-select-dropdown__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    animation-name: HideList;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
}
.custom-select-dropdown__option {
    display: block;
    padding: 15px;
    background-color: #fff;
}
.custom-select-dropdown__option:hover, .custom-select-dropdown__option:focus {
    color: #fff;
    background-color: #546c84;
}
@keyframes HideList {
    from {
        transform: scaleY(1);
    }
    to {
        transform: scaleY(0);
    }
}
/**
Custom Radio styling End
 */

.usefulpdf-info-hint{
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.usefulpdf-info-hint > span.hint{
    display: none;
    position: absolute;
    bottom: 28px;
    left: 0;
    background: #FFFFFF;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.11);
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 15px;
    gap: 3px;
    font-style: normal;
    font-weight: 400;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.5px;
    color: #7B7C81;
    width: 250px;
    transition-property: display;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.usefulpdf-info-hint:hover > span.hint{
    display: flex;
}

#CustomContentLoadingView {
    position: fixed;
    width: 100vw;
    height: 100vh;
    min-width: 100vw;
    min-height: 100vh;
    top: 0;
    left: 0;
    z-index: 999;
    /*background: #FFFFFF;*/
    background: #000;
    display: none;
    justify-content: center;
    align-items: center;
}

#CustomContentLoadingView .loading-content.flex {
    gap: 34px;
    justify-content: center;
    align-items: center;
    text-align:center;
}

@keyframes loadingAnimation {
    0% {
        opacity: 0;
        transform: rotate(0deg) scale(1);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg) scale(1.5);
    }
    100% {
        opacity: 0;
        transform: rotate(360deg) scale(1);
    }
}

#CustomContentLoadingView .loading-content > .loading-square-wrap {
    width: 300px;
    height: 150px;
    position: relative;
}

#CustomContentLoadingView .loading-content > .loading-square-wrap > .loading-square {
    width: 30.5px;
    height: 30.5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: loadingAnimation 4s infinite;
}

#CustomContentLoadingView .loading-content > .loading-square-wrap > .loading-square:nth-child(1) {
    animation-delay: 0s;
}

#CustomContentLoadingView .loading-content > .loading-square-wrap > .loading-square:nth-child(2) {
    animation-delay: 1s;
}

#CustomContentLoadingView .loading-content > .loading-square-wrap > .loading-square:nth-child(3) {
    animation-delay: 2s;
}

#CustomContentLoadingView .loading-content > .loading-square-wrap > .loading-square:nth-child(4) {
    animation-delay: 3s;
}

#CustomContentLoadingView .loading-content > .loading-square-wrap > .loading-square {
    background-color: var(--blue-primary-v2);
}

#CustomContentLoadingView .loading-content > .flex h4 {
    font-size: 18px;
    line-height: 28px;
    color: #1A444C;
}


#CustomContentLoadingView .loading-content > .flex h5 {
    font-weight: 400;
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.15px;
    color: #525454;
}

#CustomContentLoadingView.loading{
    display: flex;
}




