:root {
    --blue: #133950;
    --white: #ffffff;
}
*{
    margin: 0px;
    padding: 0px;
    font-family: arial;
}
.dashboard-wrapper {
    max-width: 1130px;
    margin:auto;
    padding: 0 20px;
    margin-top: 80px;
}
.dashboard-wrapper .button-group.filters-button-group{
    display: flex;
}
.dashboard-wrapper .button-group.filters-button-group .button{
    border: none;
    background: none;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}
.dashboard-wrapper .button-group.filters-button-group .button:focus{
    outline: none;
    color: var(--blue);
    box-shadow: none;
}
.dashboard-wrapper .button-group.filters-button-group .button.is-checked{
    border: none;
    border-bottom: 2px solid var(--blue);
    background: none;
    border-radius: 0px;
}
.dashboard-wrapper .pie-forms-logo{
    text-align: center;
    padding: 0 0px 25px;
    border-radius: 5px 5px 0px 0px;
}
.dashboard-wrapper .element-grid{
    width: 100%;
    border-radius: 0px 0px 5px 5px;
}
.dashboard-wrapper .element-grid .element-item {
    width: 227px;
    height: auto;
    margin: 20px 55px;
    overflow: hidden;
}
.dashboard-wrapper .element-grid .element-item .element-image{
    width: 100%;
    float: left;
    margin-bottom: 15px;
}
.dashboard-wrapper .pf-content-area{
    padding:50px;
    width: 100%;
    background-color: var(--white);
    border-radius: 5px;
    margin-top: 20px;
}
.dashboard-wrapper .element-grid .element-item .getting-start {
    text-align: center;
    left: 0;
    border-radius: 5px;
    opacity:0;
    height: 264px;
    background: #234052e0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    position: absolute;
    top:-300px;
    width: 100%;
    z-index: 99;
}
.dashboard-wrapper .element-grid .element-item:hover .getting-start {
    visibility: visible;
    opacity: 1;
    top:0;
    transition: 0.5s all ease;
}
.dashboard-wrapper .element-grid .element-item .getting-start > a {
    color: var(--blue);
    background: var(--white);
    font-size: 14px;
    padding: 13px;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
}
.dashboard-wrapper .element-grid .element-item .getting-start > a:hover {
    text-decoration: none;
}
.dashboard-wrapper .element-grid .element-item .name h3{
    color: var(--blue);
    font-weight: bold;
    font-size: 16px;
    padding-top: 18px;
    position: relative;
    top: 0;
}
.dashboard-wrapper .element-grid .element-item .description > p {
    color: #2b2b2b;
    font-size: 12px;
}
.pie-form-addnew .form-control{
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 10px 10px;
}
.jconfirm-box{
    width: 564px;
}
.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red{
    background-color: #de2c2b;
}
span.jconfirm-icon-c i.dashicons.dashicons-lock{
    width: 65px;
    height: 65px;
    font-size: 65px;
}
span.jconfirm-title {
    line-height: 1.25;
}
.btn-confirm:hover{
    background-color: #bdc3c7;
    color: #000;
  }