/*All*/
body {
    font-family: Roboto,sans-serif;
    font-weight: 300;
}
a {
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.inline-ul > li {
    display: inline;
}
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: none;
}
.error {
    color: red;
}
/*Soical Icon*/
.fb-ic {
    color: #3b5998 !important;
}
.fb-ic:focus, .fb-ic:hover {
    color: #3b5998;
}
.tw-ic {
    color: #55acee !important;
}
.tw-ic:focus, .tw-ic:hover {
    color: #55acee;
}
.gplus-ic {
    color: #dd4b39 !important;
}
.gplus-ic:focus, .gplus-ic:hover {
    color: #dd4b39;
}
.li-ic {
    color: #0082ca !important;
}
.li-ic:focus, .li-ic:hover {
    color: #0082ca;
}

/*input, textarea File*/
.md-form {
    position: relative;
    margin-bottom: 1.5rem;
}
.md-form .btn {
    margin-bottom: 1.5rem;
}
input[type="date"], input[type="datetime-local"], input[type="email"], input[type="number"], input[type="password"], input[type="search-md"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], textarea.md-textarea {
    height: 2.8rem;
}

/*Textarea*/
textarea.md-textarea {
    overflow-y: hidden;
    padding: 1.6rem 0;
    resize: none;
    min-height: 3rem;
}
textarea.md-textarea {
    background-color: transparent;
    border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
    border-bottom: 1px solid #bdbdbd;
    border-radius: 0;
    outline: 0;
    height: 2.1rem;
    width: 100%;
    font-size: 1rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
textarea {
    width: 100%;
    height: auto;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    padding: 10px;
}

/*Lable*/
.md-form label {
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    color: #757575;
    position: absolute;
    top: .8rem;
    left: 0;
    font-size: 1rem;
    cursor: text;
}
input[type="date"] + label::after, input[type="datetime-local"] + label::after, input[type="email"] + label::after, input[type="number"] + label::after, input[type="password"] + label::after, input[type="search-md"] + label::after, input[type="search"] + label::after, input[type="tel"] + label::after, input[type="text"] + label::after, input[type="time"] + label::after, input[type="url"] + label::after, textarea.md-textarea + label::after {
    display: block;
    content: "";
    position: absolute;
    top: 65px;
    opacity: 0;
    -webkit-transition: .2s opacity ease-out,.2s color ease-out;
    transition: .2s opacity ease-out,.2s color ease-out;
}

/*Select*/ 
.select-wrapper {
    position: relative;
}
.select-wrapper input.select-dropdown {
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #ccc;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #bdbdbd;
    outline: 0;
    height: 3rem;
    line-height: 3rem;
    width: 100%;
    font-size: 1rem;
    margin: 0 0 15px 0;
    padding: 10px;
    display: block;
    border-radius: 0.25rem;
}
select {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    display: none !important;
}
.select-wrapper span.caret {
    color: initial;
    position: absolute;
    right: 10px;
    top: 16px;
    font-size: 10px;
}
.dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none; 
    min-width: 100px;
    max-height: 650px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    z-index: 999;
    will-change: width,height;
    -webkit-box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
    box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
}
.select-wrapper ul {
    list-style-type: none;
    padding-left: 0;
}
.dropdown-content li {
    clear: both;
    color: #000;
    cursor: pointer;
    line-height: 1.3rem;
    width: 100%;
    text-align: left;
    text-transform: none;
}
.dropdown-content li.active, .dropdown-content li:hover {
    background-color: #eee;
}
.dropdown-content li > a, .dropdown-content li > span {
    font-size: .9rem;
    color: #4285f4;
    display: block;
    padding: .5rem;
}

/*Redio button*/
.form-inline .form-group {
    margin-right: 2rem;
}
[type="checkbox"], [type="radio"] {
    position: absolute;
    left: -9999px;
    visibility: hidden;
}
[type="checkbox"] + label, [type="radio"] + label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 25px;
    line-height: 25px;
    font-size: 1rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}
[type="checkbox"]:checked + label::before {
    top: -4px;
    left: -3px;
    width: 12px;
    height: 22px;
    border-style: solid;
    border-width: 2px;
    border-color: transparent #4285f4 #4285f4 transparent;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
}
[type="radio"] + label {
    -webkit-transition: .28s ease;
    transition: .28s ease;
}
[type="radio"] + label::after, [type="radio"] + label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    margin: 4px;
    width: 16px;
    height: 16px;
    z-index: 0;
    border-radius: 50%;
    border-style: solid;
    border-width: 2px;
    -webkit-transition: .28s ease;
    transition: .28s ease;
}
[type="radio"]:checked + label::before {
    border-color: transparent;
}
[type="radio"]:checked + label::after {
    border-color: #4285f4;
    background-color: #4285f4;
    z-index: 0;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}

/*Lable Active*/
.md-form label.active {
    -webkit-transform: translateY(-140%);
    -ms-transform: translateY(-140%);
    transform: translateY(-140%);
    font-size: .8rem;
}
input[type=date]:focus:not([readonly])+label,input[type=datetime-local]:focus:not([readonly])+label,input[type=email]:focus:not([readonly])+label,input[type=number]:focus:not([readonly])+label,input[type=password]:focus:not([readonly])+label,input[type=search-md]:focus:not([readonly])+label,input[type=search]:focus:not([readonly])+label,input[type=tel]:focus:not([readonly])+label,input[type=text]:focus:not([readonly])+label,input[type=time]:focus:not([readonly])+label,input[type=url]:focus:not([readonly])+label,textarea.md-textarea:focus:not([readonly])+label{
    color:#4285f4
}
input[type="text"].valid, input[type="text"]:focus.valid, input[type="email"].valid, input[type="email"]:focus.valid, input[type="password"].valid, input[type="password"]:focus.valid, textarea[type="text"].valid, textarea[type="text"]:focus.valid, input[type="url"].valid, input[type="url"]:focus.valid{
    border: 1px solid #01951e;
    /*    -webkit-box-shadow: 0 1px 0 0 #00c851;
        box-shadow: 0 1px 0 0 #00c851;*/
}

.form-control:focus, input[type="date"]:focus:not([readonly]), input[type="datetime-local"]:focus:not([readonly]), input[type="email"]:focus:not([readonly]), input[type="number"]:focus:not([readonly]), input[type="password"]:focus:not([readonly]), input[type="search-md"]:focus:not([readonly]), input[type="search"]:focus:not([readonly]), input[type="tel"]:focus:not([readonly]), input[type="text"]:focus:not([readonly]), input[type="time"]:focus:not([readonly]), input[type="url"]:focus:not([readonly]), textarea.md-textarea:focus:not([readonly]), .form-light input[type="email"]:focus:not([readonly]), .form-light input[type="password"]:focus:not([readonly]){
    /*border-bottom: transparent;*/
    -webkit-box-shadow: none;
    box-shadow: none;
}

/*Card*/
.card:not([class*="card-outline-"]) {
    border: 0;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
}
.card {
    font-weight: 400;
    border-radius: .3rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #0000001a;
    border-radius: 0.25rem;
}
.card .card-body h5 {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

/*Button*/
.btn {
    font-size: .8rem;
    padding: .85rem 2.13rem;
    margin: 6px;
    border-radius: 2px;
    border: 0;
    -webkit-transition: .2s ease-out;
    transition: .2s ease-out;
    text-transform: uppercase;
    white-space: normal !important;
    word-wrap: break-word;
    cursor: pointer;
    -webkit-box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
    box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
    color: #fff !important;
}
.btn:hover{
    -webkit-box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
    box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
}
.btn:active, .btn:focus{
    -webkit-box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
    box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
}
.btn-rounded {
    border-radius: 10em;
}
.btn:active, .btn:focus, .btn:hover {
    outline: 0;
}
.btn-info:hover {
    background-color: #4abde8 !important;
}
.btn .fa {
    font-size: 1rem;
    position: relative;
    vertical-align: middle;
    margin-top: -2px;
}
.btn {
    font-size: .8rem;
    text-transform: uppercase;
    white-space: normal !important;
    word-wrap: break-word;
    cursor: pointer;
}
.btn.btn-sm, .btn.wishlist {
    font-size: .6rem;
    padding: .5rem 1.6rem;
}
.btn-floating.btn-large, .btn-floating.btn-lg {
    width: 61.1px;
    height: 61.1px;
}
.btn-floating {
    position: relative;
    z-index: 1;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    width: 47px;
    height: 47px;
    padding: 0;
    border-radius: 50%;
    margin: 10px;
    background-color: #a6c;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
    box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
}
.btn-floating.btn-sm, .btn-floating.btn-small, .btn-floating.wishlist {
    width: 36.15385px;
    height: 36.15385px;
}
.btn-floating i {
    display: inline-block;
    width: inherit;
    color: #fff;
    font-size: 1.25rem;
    line-height: 47px;
    text-align: center;
}
.btn-floating.btn-large i, .btn-floating.btn-lg i {
    font-size: 1.625rem;
    line-height: 61.1px;
}
.btn-floating.btn-sm i, .btn-floating.btn-small i, .btn-floating.wishlist i {
    font-size: .96154rem;
    line-height: 36.15385px;
}
.btn[class*="btn-outline-"] {
    padding-top: .76rem;
    padding-bottom: .76rem;
}

/*Fonts*/
.font-bold {
    font-weight: 600;
}
.font-small {
    font-size: .8rem;
}
.font-up {
    text-transform: uppercase;
}

/*Bg (button) Color Code*/
.btn-default {
    background-color: #2bbbad;
}
.btn-primary {
    background-color: #4285f4;
}
.btn-info {
    background-color: #33b5e5;
}
.btn-amber {
    background-color: #ffa000;
}
.btn-blue-grey {
    background-color: #78909c;
}
.btn-blue-grey.active, .btn-blue-grey:active, .btn-blue-grey:focus {
    background-color: #546973 !important;
}
.btn-blue-grey:hover {
    background-color: #879ca7 !important;
}
.btn-kb-color {
    background-color: #59698d;
}
.btn-kb-color:hover {
    background-color: #63759d !important;
}

/*Outline btn*/
.btn-outline-info {
    border: 2px solid #33b5e5;
    color: #33b5e5 !important;
    background-color: transparent;
}
.btn-outline-info.active, .btn-outline-info:active, .btn-outline-info:active:focus, .btn-outline-info:focus, .btn-outline-info:hover {
    background-color: transparent;
    color: #33b5e5;
    border-color: #33b5e5;
}
.btn-outline-success {
    border: 2px solid #00c851;
    color: #00c851 !important;
    background-color: transparent;
}
.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}
.btn-outline-danger {
    border: 2px solid #ff6c6c;
    color: #ff6c6c !important;
    background-color: transparent;
}
.btn-outline-danger:hover {
    color: #fff;
    background-color: #ff6c6c;
    border-color: #ff6c6c;
}
.btn-outline-success.active, .btn-outline-success:active, .btn-outline-success:active:focus, .btn-outline-success:focus, .btn-outline-success:hover {
    background-color: transparent;
    color: #00c851;
    border-color: #00c851;
}
.btn-outline-danger.active, .btn-outline-danger:active, .btn-outline-danger:active:focus, .btn-outline-danger:focus, .btn-outline-danger:hover {
    background-color: transparent;
    color: #ff6c6c;
    border-color: #ff6c6c;
}

/*bg color*/
.toast-warning, .warning-color {
    background-color: #fb3 !important;
}
.success-color, .toast-success {
    background-color: #00c851 !important;
}

/*Background Color*/
.green {
    background-color: #4caf50 !important;
}
.grey.lighten-5 {
    background-color: #fafafa !important;
}
.grey.lighten-4 {
    background-color: #f5f5f5 !important;
}
.grey.lighten-3 {
    background-color: #eeeeee !important;
}
.grey.lighten-2 {
    background-color: #e0e0e0 !important;
}
.grey.lighten-1 {
    background-color: #bdbdbd !important;
}
.grey {
    background-color: #9e9e9e !important;
}
.blue-gradient {
    background: -webkit-linear-gradient(50deg,#45cafc,#303f9f);
    background: -webkit-linear-gradient(50deg,#45cafc,#4285f4);
    background: linear-gradient(40deg,#45cafc,#4285f4);
}
.btn.purple-gradient {
    background: linear-gradient(40deg,#ff6ec4,#7873f5) !important;
    -webkit-transition: .5s ease;
    transition: .5s ease;
}
.btn.purple-gradient:hover {
    background: -webkit-linear-gradient(50deg,#ff88ce,#8f8bf7);
    background: linear-gradient(40deg,#ff88ce,#8f8bf7);
}
.deep-orange {
    background-color: #ff5722 !important;
}

/*Text Color*/
.white-text{
    color: #fff !important;
}
.grey-text {
    color: #9e9e9e !important;
}
.dark-grey-text {
    color: #4f4f4f !important;
}

/*Waves Effect*/
a.waves-effect, a.waves-light {
    display: inline-block;
}
.waves-effect {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    z-index: 1;
}
.waves-effect {
    cursor: pointer;
}
.waves-input-wrapper {
    border-radius: .2em;
    vertical-align: middle;
    display: inline-block;
}

/*header*/
.navbar{
    -webkit-box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
    box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
}
.navbar {
    font-weight: 300;
}
.navbar .nav-flex-icons, .navbar.double-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}
.navbar .nav-item .nav-link {
    display: block;
}
.navbar .nav-item .nav-link .fa {
    padding-left: 3px;
    padding-right: 3px;
}

/*Footer*/
footer.page-footer {
    margin-top: 20px;
    padding-top: 20px;
    color: #fff;
}
footer.page-footer {
    color: #fff;
}
footer.page-footer .footer-copyright {
    overflow: hidden;
    height: 50px;
    line-height: 50px;
    color: #fff9;
    background-color: #0003;
    text-align: center;
    font-size: .9rem;
}
footer.page-footer .footer-copyright {
    line-height: 50px;
    color: #fff9;
    text-align: center;
    font-size: .9rem;
}
footer.page-footer ul {
    list-style-type: none;
    padding: 0;
}
footer.page-footer a {
    color: #fff;
}

/*Article Details [ Comments ]*/
.comments-list, .reply-form {
    margin-bottom: 3rem;
}
.section-heading {
    text-align: center;
}
.comments-list .badge{
    -webkit-box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
    box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
}
.comments-list .row, .reply-form .row {
    margin-bottom: 2rem;
}
.comments-list img, .reply-form img {
    max-width: 100px;
    border-radius: 50%;
}
.comments-list img, .img-fluid, .modal-dialog.cascading-modal.modal-avatar .modal-header, .reply-form img, .section-blog-fw .view img {
    max-width: 100%;
    height: auto;
}
.comments-list img{
    -webkit-box-shadow: 0 8px 17px 0 #0003,0 6px 20px 0 #0003;
    box-shadow: 0 8px 17px 0 #0003,0 6px 20px 0 #0003;
}
.comments-list .user-name, .reply-form .user-name {
    color: #000;
}
.comments-list ul, .reply-form ul {
    list-style-type: none;
}
.comments-list .comment-date, .reply-form .comment-date {
    color: #666;
}
.comments-list .comment-text, .reply-form .comment-text {
    color: #9e9e9e;
}
.badge {
    color: #fff;
    border-radius: 2px;
    -webkit-box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
    box-shadow: 0 2px 5px 0 #0003,0 2px 10px 0 #0000001a;
}
.badge-pill{
    border-radius: 10rem
}
.badge-blue {
    background-color: #1976d2;
}
.badge-info {
    background-color: #33b5e5;
}

/*Admin Panel (admin)*/
p span.badge{
    padding: 10px;
    white-space: normal
}
table.table thead th {
    border-top: none;
}
table.table td, table.table th {
    padding-top: 1.1rem;
    padding-bottom: 1rem;
}
table th {
    font-size: .9rem;
    font-weight: 400;
}
table td {
    font-size: .9rem;
    font-weight: 300;
}
.table td {
    font-weight: 400;
    color: #4f4f4f;
}
.table a {
    margin-left: 1rem;
}
table.table a {
    margin: 0;
    color: #212529;
}
.file-field {
    position: relative;
}
.file-field .btn {
    float: left;
}
.file-field span {
    cursor: pointer;
}
.file-field input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 1px;
    cursor: pointer;
    opacity: 0;
}
.file-field .file-path-wrapper {
    overflow: hidden;
    padding-left: 10px;
    padding-top: 7px;
}
.file-field input.file-path {
    width: 100%;
    height: 2.3rem;
}

/*Modal*/
.modal {
    padding-right: 0 !important;
    padding-left: 0 !important;
}   
.modal-dialog .modal-content {
    border-radius: 2px;
    border: 0;
}
.modal-dialog .modal-content{
    -webkit-box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
    box-shadow: 0 5px 11px 0 #0003,0 4px 15px 0 #0003;
}

/*Toast*/
.toast-message {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.toast-message a,
.toast-message label {
    color: #FFFFFF;
}
.toast-message a:hover {
    color: #CCCCCC;
    text-decoration: none;
}
.toast-top-right {
    top: 12px;
    right: 12px;
}
#toast-container {
    position: fixed;
    z-index: 999999;
    pointer-events: none;
    /*overrides*/
}
#toast-container * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
#toast-container > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    -moz-box-shadow: 0 0 12px #999999;
    -webkit-box-shadow: 0 0 12px #999999;
    box-shadow: 0 0 12px #999999;
    color: #FFFFFF;
    opacity: 0.8;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    filter: alpha(opacity=80);
}
#toast-container > div.rtl {
    direction: rtl;
    padding: 15px 50px 15px 15px;
    background-position: right 15px center;
}
#toast-container > div:hover {
    -moz-box-shadow: 0 0 12px #000000;
    -webkit-box-shadow: 0 0 12px #000000;
    box-shadow: 0 0 12px #000000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    cursor: pointer;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
}
.toast {
    background-color: #030303;
}
#toast-container > .toast-error {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
.toast-error {
    background-color: #FF3F50;
}
/*Responsive Design*/
@media all and (max-width: 767px) {
    .file-field .file-path-wrapper {
        padding-left: 0px;
    }
}
@media all and (max-width: 240px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }
    #toast-container > div.rtl {
        padding: 8px 50px 8px 8px;
    }
    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
    #toast-container .rtl .toast-close-button {
        left: -0.2em;
        right: 0.2em;
    }
}
@media all and (min-width: 241px) and (max-width: 480px) {
    #toast-container > div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }
    #toast-container > div.rtl {
        padding: 8px 50px 8px 8px;
    }
    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
    #toast-container .rtl .toast-close-button {
        left: -0.2em;
        right: 0.2em;
    }
}
@media all and (min-width: 481px) and (max-width: 768px) {
    #toast-container > div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
    #toast-container > div.rtl {
        padding: 15px 50px 15px 15px;
    }
}

[type="checkbox"] + label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    z-index: 0;
    border: 1.5px solid #8a8a8a;
    border-radius: 1px;
    margin-top: 2px;
    -webkit-transition: .2s;
    transition: .2s;
}

/*input[type="text"]:focus:not([readonly]), .form-light input[type="email"]:focus:not([readonly]),
.form-light input[type="password"]:focus:not([readonly]){
    border-bottom: 1px solid #01951e;
    -webkit-box-shadow: 0 1px 0 0 #01951e;
    box-shadow: 0 1px 0 0 #01951e;
}*/
.form-control:focus{
    border-color: #01951e;
}
.modal-header .close span {
    font-size: 32px;
}

