#signals_meta_box .inside {
    background-color: #dee1e3;
    margin-top: 0;
}

#signals_meta_box .signal-wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 10px;
}

#signals_meta_box .signals-email, #signals_meta_box .signals-phone {
    width: 100%;
}

#signals_meta_box .comment-header {
    padding-bottom: 15px;
    border-bottom: 1px solid #acb4c2;
}

/*#signals_meta_box .comment-user-info {*/
/*    display: flex;*/
/*    justify-content: space-evenly;*/
/*    align-items: center;*/
/*}*/

#signals_meta_box .comment-user-info {
    display: block;
}

#signals_meta_box .comment-user-info span {
    display: block;
}
#signals_meta_box .comment-urls {
    position: absolute;
    top: 2px;
    right: 20px;
}

#signals_meta_box .comment-urls {
    text-align: center;
    margin-top: 10px;
}

#signals_meta_box .comment-box{
    background-color: #fcfcfc;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .15);
    min-height: 60px;
    position: relative;
    padding: 15px;
    margin: 10px 0;
}

#signals_meta_box .comment-box:before{
    border-color: transparent rgba(0, 0, 0, .05);
    top: 22px;
}

#signals_meta_box .comment-text{
    color: #555f77;
    font-size: 15px;
    margin-bottom: 25px;
    margin-top: 15px;
}

#signals_meta_box .comment-footer{
    color: #acb4c2;
    font-size: 13px;
}

#signals_meta_box .comment-footer:after{
    content: "";
    display: table;
    clear: both;
}

#signals_meta_box .comment-footer a{
    color: #acb4c2;
    text-decoration: none;

    -webkit-transition: 350ms color;
    -moz-transition: 350ms color;
    -ms-transition: 350ms color;
    -o-transition: 350ms color;
    transition: 350ms color;
}

#signals_meta_box .comment-footer a:hover{
    color: #555f77;
    text-decoration: underline;
}

#signals_meta_box .comment-info{
    float: left;
    width: 85%;
}

#signals_meta_box .comment-author{ }
#signals_meta_box .comment-date{ }

#signals_meta_box .comment-date:before{
    content: "|";
    margin: 0 10px;
}

.comment-actions{
    float: left;
    text-align: right;
    width: 15%;
}

#signals_meta_box .mobile-hr {
    display: none;
}

#signals_meta_box .button-primary {
    background: #d63638;
    border-color: #d63638;
}

#signals_meta_box .button-primary:hover {
    background: #ab2b2d;
    border-color: #ab2b2d;
}

#signals_meta_box #report-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    z-index: 9999;
    border-radius: 4px;
    width: 100%;
    max-width: 450px;
}

#signals_meta_box #popup-header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-left: 4px solid #dba617;
    background-color: #fcf9e8;
    border-bottom: 1px solid #ccc;
    margin: -20px -20px 10px -20px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

#signals_meta_box #popup-header h2 {
    margin: 0;
}

#signals_meta_box #report-popup label,
#signals_meta_box #report-popup input,
#signals_meta_box #report-popup textarea {
    display: block;
    margin-bottom: 5px;
}

#signals_meta_box #report-popup button {
    margin-top: 10px;
}

#signals_meta_box #close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

#signals_meta_box #report-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
}

#signals_meta_box #close-popup i {
    color: #999;
}

#signals_meta_box #close-popup i:hover {
    color: #333;
}

#signals_meta_box .inwc-row {
    display: flex;
    column-gap: 15px;
}

#signals_meta_box .inwc-row .field-wrapper {
    width: 100%;
}

#signals_meta_box .inwc-row .field-wrapper input {
    width: 100%;
}

#signals_meta_box .signal-err-field {
    border-color: #d63638;
    box-shadow: 0 0 0 1px #d63638;
}

/*Switch button Checkbox */

.can-toggle {
    position: relative;
}
.can-toggle *, .can-toggle *:before, .can-toggle *:after {
    box-sizing: border-box;
}
.can-toggle input[type=checkbox] {
    opacity: 0;
    position: absolute ;
    top: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.can-toggle input[type=checkbox][disabled] ~ label {
    pointer-events: none;
}
.can-toggle input[type=checkbox][disabled] ~ label .can-toggle__switch {
    opacity: 0.4;
}
.can-toggle input[type=checkbox] ~ label .can-toggle__switch:before {
    color: rgba(34, 34, 34, 0.3);
    font-weight: bold;
}
.can-toggle input[type=checkbox]:checked ~ label .can-toggle__switch:before {
    /*content: attr(data-unchecked);*/
    content: attr(data-checked) !important;
    left: 0 !important;
    color: rgba(255, 255, 255, 1) !important;
    font-weight: bold !important;
}

.can-toggle input[type=checkbox] + label {
    float: none !important;
    display: flex !important;
    left: 0 !important;
}

.can-toggle input[type="checkbox"] + label:before, .can-toggle input[type="checkbox"]:checked + label:after {
    display: none !important;
}


.can-toggle input[type=checkbox]:checked ~ label .can-toggle__switch:after {
    /*content: attr(data-checked);*/
    content: attr(data-unchecked);
}
.can-toggle label {
    user-select: none;
    position: relative;
    display: flex;
    align-items: center;
}
.can-toggle label .can-toggle__label-text {
    flex: 1;
    padding-left: 32px;
}
.can-toggle label .can-toggle__switch {
    position: relative;
}
.can-toggle label .can-toggle__switch:before {
    /*content: attr(data-checked);*/
    content: attr(data-unchecked);
    position: absolute;
    top: 0;
    text-transform: uppercase;
    text-align: center;
}
.can-toggle label .can-toggle__switch:after {
    /*content: attr(data-unchecked);*/
    content: attr(data-checked);
    position: absolute;
    z-index: 5;
    text-transform: uppercase;
    text-align: center;
    background: white;
    transform: translate3d(0, 0, 0);
}
.can-toggle input[type=checkbox][disabled] ~ label {
    color: rgba(255, 255, 255, 1);
}
.can-toggle input[type=checkbox]:focus ~ label .can-toggle__switch, .can-toggle input[type=checkbox]:hover ~ label .can-toggle__switch {
    background-color: #e3e3e3;
}
.can-toggle input[type=checkbox]:focus ~ label .can-toggle__switch:after, .can-toggle input[type=checkbox]:hover ~ label .can-toggle__switch:after {
    color: rgba(255, 255, 255, 1);
}
.can-toggle input[type=checkbox]:hover ~ label {
    color: rgba(255, 255, 255, 1);
}
.can-toggle input[type=checkbox]:checked ~ label:hover {
    /*color: #222;*/
    /*color: rgba(255, 255, 255, 1);*/
}
.can-toggle input[type=checkbox]:checked ~ label .can-toggle__switch {
    background-color: #00a32a;
}
.can-toggle input[type=checkbox]:checked ~ label .can-toggle__switch:after {
    color: rgba(255, 255, 255, 1);
}
.can-toggle input[type=checkbox]:checked:focus ~ label .can-toggle__switch, .can-toggle input[type=checkbox]:checked:hover ~ label .can-toggle__switch {
    background-color: #00a32a;
}
.can-toggle input[type=checkbox]:checked:focus ~ label .can-toggle__switch:after, .can-toggle input[type=checkbox]:checked:hover ~ label .can-toggle__switch:after {
    /*color: #222;*/
    color: rgba(255, 255, 255, 1);
}
.can-toggle label .can-toggle__label-text {
    flex: 1;
}
.can-toggle label .can-toggle__switch {
    transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
    background-color: #e3e3e3;
}
/*.can-toggle label .can-toggle__switch:before {*/
/*    color: rgba(255, 255, 255, 1);*/
/*}*/
/*.can-toggle label .can-toggle__switch:before {*/
/*    color: rgba(255, 255, 255, 1);*/
/*}*/
.can-toggle label .can-toggle__switch:after {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 1, 0.5, 1);
    transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
    /*color: #ea0030;*/
}
.can-toggle input[type=checkbox]:focus ~ label .can-toggle__switch:after, .can-toggle input[type=checkbox]:hover ~ label .can-toggle__switch:after {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}
.can-toggle input[type=checkbox]:checked ~ label .can-toggle__switch:after {
    transform: translate3d(45px, 0, 0);
}
.can-toggle input[type=checkbox]:checked:focus ~ label .can-toggle__switch:after, .can-toggle input[type=checkbox]:checked:hover ~ label .can-toggle__switch:after {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}
.can-toggle label {
    font-size: 14px;
    padding-left: 0 !important;
}
.can-toggle label .can-toggle__switch {
    height: 22px;
    flex: 0 0 70px;
    cursor: pointer;
    border-radius: 50px;
}
.can-toggle label .can-toggle__switch:before {
    left: 15px;
    font-size: 12px;
    line-height: 21px;
    width: 50px;
    padding: 0 12px;
    text-transform: none;
}
.can-toggle label .can-toggle__switch:after {
    top: 2px;
    left: 2px;
    width: 20px;
    line-height: 18px;
    font-size: 0px;
    border-radius: 50%;
}
.can-toggle label .can-toggle__switch:hover:after {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}
.can-toggle.can-toggle--size-small input[type=checkbox]:focus ~ label .can-toggle__switch:after, .can-toggle.can-toggle--size-small input[type=checkbox]:hover ~ label .can-toggle__switch:after {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}
.can-toggle.can-toggle--size-small input[type=checkbox]:checked ~ label .can-toggle__switch:after {
    transform: translate3d(44px, 0, 0);
}
.can-toggle.can-toggle--size-small input[type=checkbox]:checked:focus ~ label .can-toggle__switch:after, .can-toggle.can-toggle--size-small input[type=checkbox]:checked:hover ~ label .can-toggle__switch:after {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}
.can-toggle.can-toggle--size-small label {
    font-size: 13px;
}
.can-toggle.can-toggle--size-small label .can-toggle__switch {
    height: 28px;
    flex: 0 0 90px;
    border-radius: 2px;
}
.can-toggle.can-toggle--size-small label .can-toggle__switch:before {
    left: 45px;
    font-size: 10px;
    line-height: 28px;
    width: 45px;
    padding: 0 12px;
}
.can-toggle.can-toggle--size-small label .can-toggle__switch:after {
    top: 1px;
    left: 1px;
    border-radius: 1px;
    width: 44px;
    line-height: 26px;
    font-size: 10px;
}
.can-toggle.can-toggle--size-small label .can-toggle__switch:hover:after {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.4);
}

/*END Switch button Checkbox */

.inwc-dialog-class {
    background: #00a32a !important;
    border: none !important;
}

#inwc_clipboard-alert {
    color: #fff;
}

@media only screen and (max-width: 1200px){
    #signals_meta_box .signal-wrapper {
        display: block;
    }
    #signals_meta_box .mobile-hr {
        display: block;
        border-bottom: 1px solid #2222;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 480px){

    #signals_meta_box #report-popup {
        width: 85%;
        max-width: none;
    }

    #signals_meta_box .inwc-row {
        display: block;
    }

    #signals_meta_box .iti.iti--allow-dropdown {
        width: 100%;
    }

}
