@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wbea-settings-saved {
    margin-right: 10px;
    font-family: 'Mulish', sans-serif;
    font-weight: 600;
    font-size: 15px;
}
#wbea-spinner {
    width: 14px;
    display: inline-block;
    float: left;
    margin: 3px 5px 0 0;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1.2s;
    -webkit-animation-name: rotate;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-transition-property: -moz-transform;
    -moz-animation-name: rotate;
    -moz-animation-duration: 1.2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    transition-property: transform;
    animation-name: rotate;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}
@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.wbea-dashboard-header-right .wbea-btn {
    background: #E6EAF5;
    border-radius: 10px;
    padding: 15px 25px;
    border: none;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    text-transform: uppercase;
    transition: all .3s ease;
}
.wbea-btn.wbea-save-now {
    background: #1BA4B6;
    border: 2px solid #1BA4B6;
    color: #ffffff;
}
.wbea-btn.wbea-save-now:hover{
    background-color: transparent;
    color: #1BA4B6;
}
button.wbea-btn:focus {
    outline: 0;
}
.wbea-dashboard-tab {
    display: none;
}
.wbea-dashboard-tab.active {
    display: block;
}
.wbea-dashboard-tabs {
    margin: 0;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}
.wbea-dashboard-tabs li {
    display: inline-block;
}
.wbea-dashboard-tabs li a {
    padding: 15px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    font-family: 'Mulish', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    color: #000;
}
.wbea-dashboard-tabs li a img {
    margin-right: 10px;
}
.wbea-dashboard-tabs li a.active {
    color: #fff;
}
.wbea-dashboard-tabs li a:focus {
    outline: 0;
    box-shadow: none;
}
.wbea-dashboard-tabs li.wbea-tab-btn a img.wbea-tab-image-active {
    display: none;
}
.wbea-dashboard-tabs li.wbea-tab-btn a.active img.wbea-tab-image-normal {
    display: none;
}
.wbea-dashboard-tabs li.wbea-tab-btn a.active img.wbea-tab-image-active {
    display: flex;
}
.wbea-dashboard-checkbox {
    padding: 40px 20px;
    display: flex;
    align-items: center;
    border: 1px solid #007585;
    border-radius: 12px;
    background: #F3FEFF;
    justify-content: space-between;
    /* margin: 10px; */
    position: relative;
    transition: .3s ease;
    overflow: hidden;
}
.wbea-dashboard-checkbox.selected {
    background: #EAFDFF;
    border: 1px solid #1BA4B6;
    color: #1BA4B6;
}
.wbea-dashboard-checkbox-text {
    display: flex;
    align-items: center;
}
.wbea-elements-demo-link {
    margin-left: 10px;
}
.wbea-dashboard-checkbox input[type="checkbox"] {
    visibility: hidden;
    display: none;
}
.wbea-dashboard-checkbox label {
    width: 20px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: block;
}
.wbea-dashboard-checkbox label:before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #333;
}
.wbea-dashboard-checkbox label:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 4px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: none;
}
.wbea-dashboard-checkbox input[type=checkbox]:checked+label:before {
    background: #1BA4B6;
    border: 1px solid #1BA4B6;
}
.wbea-dashboard-checkbox input[type=checkbox]:checked+label:after {
    display: block;
}
.wbea-elements-enable {
    display: block;
    padding: 12px 27px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    color: #1BA4B6;
    font-weight: 500;
    margin-right: 20px;
    border: 1px solid #1BA4B6;
    transition: all .3s ease;
}
.wbea-elements-enable:hover {
    background: #1BA4B6;
    border: 1px solid #1BA4B6;
    color: #ffffff;
}
.wbea-elements-disable {
    display: block;
    padding: 12px 27px;
    border: 1px solid #F05D55;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    color: #F05D55;
    font-weight: 500;
    transition: all .3s ease;
}
.wbea-elements-disable:hover {
    border: 1px solid #F05D55;
    background: #F05D55;
    color: #ffffff;
}
.wbea-elements-enable:focus {
    outline: 0;
    box-shadow: none;
}
.wbea-elements-disable:focus {
    outline: 0;
    box-shadow: none;
}
.wbea-elements-filter-text {
    display: flex;
}
.wbea-elements-filter-search {
    height: 40px;
    width: 220px;
    max-width: 220px;
    position: relative;
}
.wbea-elements-filter-search input {
    height: 100%;
    width: 100%;
    border: 1px solid #1BA4B6;
    border-radius: 10px;
    color: #3c434a;
    font-size: 14px;
    padding: 11px 18px;
}
.wbea-elements-filter-search input:focus {
    border: 1px solid #1BA4B6;
    outline: 0;
    box-shadow: none;
}
.wbea-elements-filter-search input::placeholder {
    color: #3c434a;
}
.wbea-elements-filter-search input:-ms-input-placeholder {
    color: #1BA4B6;
}
.wbea-elements-filter-search input::-ms-input-placeholder {
    color: #1BA4B6;
}
.wbea-elements-filter-search-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    line-height: 1;
}
.wbea-dashboard-header-left h4 svg {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}
.wbea-dashboard-header-left h4 {
    display: flex;
    align-items: center;
    font-size: 26px;
    margin: 0;
}
.wbea-dashboard-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}
.wbea-dashboard-header-right {
    margin-right: 30px;
}

.wbea-dashboard-tabs li a svg {
    width: 22px;
    height: 22px;
    margin-right: 5px;
}
.wbea-dashboard-tabs li a.active {
    background-color: #1BA4B6;
}
.wbea-dashboard-tabs li a.active svg {
    fill: #fff;
}
.wbea-dashboard-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    flex-basis: 49%;
    gap: 30px;
}
.wbea-dashboard-box svg {
	width: 35px;
	height: 35px;
}
.wbea-dashboard-home-tab {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: start;
}
.wbea-dashboard-home-tab-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wbea-dashboard-box h4 {
    font-size: 22px;
    margin: 10px 0 20px;
}
.wbea-dashboard-box a {
    text-decoration: none;
    border: 2px solid #1BA4B6;
    color: #333;
    display: inline-block;
    padding: 10px 30px;
    color: #1BA4B6;
    font-size: 18px;
    font-weight: 500;
    border-radius: 10px;
    margin-top: 20px;
    transition: .3s;
    font-weight: 600;
}
.wbea-dashboard-box a:hover{
    background-color: #1BA4B6;
    color: #fff;
}
.wbea-element-filter {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 45px;
}
.wbea-element-filter-btn ul {
    display: flex;
}
.wbea-dashboard-checkbox-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-right: 30px;
}
.wbea-dashboard-checkbox {
    flex-basis: 18%;
    padding: 20px;
}
.wbea-dashboard-checkbox-text p{
    font-weight: 600;
    font-size: 17px;
    margin: 0;
    color: #007585;
}
#wbea-element-filter-search-input {
	border: 1px solid #1BA4B6;
	padding: 7px 20px 12px;
	font-size: 16px;
	line-height: 20px;
}
.wbea-dashboard-tab svg {
	max-width: 60%;
	margin: auto;
	display: block;
	height: auto;
	border: 1px solid #ddd;
	padding: 30px;
	margin-top: 30px;
}
.wbea-dashboard-box svg {
    width: 60px;
    display: inherit;
    height: auto;
    margin: 0;
    padding: 10px;
    border-radius: 15px;
    margin-bottom: 20px;
}
.wbea-dashboard-tabs li a.active svg path {
	fill: #fff;
}
.wbea-dashboard-checkbox-wrapper {
    flex-basis: 18%;
    cursor: pointer;
}
.wbea-dashboard-checkbox:hover{
    background-color: #fff;
}
#support {
    text-align: center;
}
#support h4 {
    font-size: 30px;
    border: 1px solid #ddd;
    display: inline-block;
    padding: 30px;
}
.wbea-dashboard-tab img {
    max-width: 800px;
    display: block;
    margin: 50px auto 0;
    border: 1px solid #ddd;
}